   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fb923c;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    overflow-x: hidden;
}

.shared-title {
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    z-index: 100;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.shared-title.to-preorder {
    position: absolute;
    top: 20%;
    left: 50%;
    font-size: 2rem;
    transform: translate(-50%, -50%);
}

.typing-line {
    display: block;
    margin: 0.2em 0;
    min-height: 1.2em;
}

.cursor {
    display: inline-block;
    background-color: #fb923c;
    width: 2px;
    height: .8em;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.countdown-timer {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Courier New', monospace;
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #ea580c;
    text-align: center;
    z-index: 99;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.countdown-timer.visible {
    opacity: 1;
}

.countdown-timer.to-preorder {
    display: none;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.time-unit {
    text-align: center;
    border: 1px solid #ea580c;
    padding: 0.5rem;
    min-width: 3rem;
    background: rgba(234, 88, 12, 0.1);
}

.time-value {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    color: #fb923c;
}

.time-label {
    display: block;
    font-size: 0.7em;
    margin-top: 0.2rem;
    text-transform: uppercase;
}

.landing-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 2rem;
    position: relative;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.landing-page.hiding {
    opacity: 0;
    transform: translateY(-50px);
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.subtitle {
    font-size: 1rem;
    color: #ea580c;
    margin: 8rem 0 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.preorder-button {
    border: 2px solid #fb923c;
    background: transparent;
    color: #fb923c;
    padding: 1rem 2rem;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    margin-top: 1rem;
}

.preorder-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.preorder-button:hover {
    background: #fb923c;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
}

.face-container {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 80px;
    height: 80px;
    opacity: 0;
    z-index: 110;
    transform: rotate(-15deg);
}

.face-container.visible {
    opacity: 1;
    animation: stampEffect 0.2s ease-out forwards;
}

.face-container.tumbling {
    animation: tumbleOut 1s ease-in-out forwards;
}

@keyframes stampEffect {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0.50;
        transform-origin: 50% 50%;
        transform: rotate(-2deg) scale(5);
        transition: all .3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    }
    100% {
        opacity: 1;
        transform: rotate(-15deg) scale(1);
    }
}

@keyframes tumbleOut {
    0% {
        transform: rotate(-15deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(200px) rotate(180deg) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) scale(0.3);
        opacity: 0;
        display: none;
    }
}

.preorder-page {
    display: none;
    min-height: 100vh;
    padding: 2rem 2rem;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.preorder-page.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.form-container {
    max-width: 32rem;
    width: 100%;
    margin-top: 6rem;
    padding-bottom: 4rem;
}

.shirt-mockups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.shirt-mockups.visible {
    opacity: 1;
    transform: translateY(0);
}

.shirt-mockup {
    border: 1px solid #fb923c;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.shirt-mockup:hover {
    border-color: #ea580c;
    transform: translateY(-5px);
}

.shirt-mockup img {
    width: 100%;
    height: auto;
    max-width: 200px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.shirt-mockup:hover img {
    filter: brightness(1.1);
}

.mockup-label {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    color: #ea580c;
}

.price-display {
    text-align: center;
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: bold;
    color: #fb923c;
    padding: 1rem;
    background: transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.price-display.visible {
    opacity: .7;
    transform: translateY(0);
}   

.back-button {
    border: 1px solid #fb923c;
    background: transparent;
    color: #fb923c;
    padding: 0.5rem 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 200;
}

.back-button:hover {
    background: #fb923c;
    color: #000;
}

.form-header {
    font-size: 1rem;
    margin-top: 3rem;
    letter-spacing: 8px;
    background: transparent;
    color: #fb923c;
    padding: 1rem 2rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    width: fit-content;
    text-align: center;
    align-self: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    border: 1px solid #fb923c;
    padding: 0.5rem;
    background: #000;
}

.input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    color: #fb923c;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    outline: none;
}

.input:focus {
    background: #fb923c;
    color: #000;
}

.input::placeholder {
    color: #ea580c;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.size-button {
    border: 1px solid #fb923c;
    background: #000;
    color: #fb923c;
    padding: 0.75rem;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.size-button:hover,
.size-button.selected {
    background: #fb923c;
    color: #000;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    border: 1px solid #fb923c;
    background: #000;
    color: #fb923c;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-button:hover:not(:disabled) {
    background: #fb923c;
    color: #000;
    transform: translateY(-1px);
}

.submit-button:disabled {
    border-color: #666;
    color: #666;
    cursor: not-allowed;
}

.info {
    font-size: 0.75rem;
    color: #ea580c;
    margin-top: 1rem;
    white-space: pre-line;
}

.success-container {
    display: none;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.success-message {
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: pre;
}

a:hover { 
    text-decoration: underline; 
}

.site-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #333;
    padding: 1rem;
    z-index: 50;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.footer-links {
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
}

.footer-links a {
    color: #ea580c;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.footer-links a:hover {
    color: #fb923c;
    text-decoration: underline;
}

.footer-separator {
    color: #333;
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .shared-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        top: 20%;
    }
    
    .shared-title.to-preorder {
        font-size: clamp(1.5rem, 8vw, 1.5rem);
    }

    .countdown-timer {
        top: 40%;
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .timer-display {
        gap: 0.5rem;
    }

    .time-unit {
        padding: 0.3rem;
        min-width: 2.5rem;
    }
    
    .preorder-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .face-container {
        width: 60px;
        height: 60px;
        right: -20px;
        bottom: -15px;
    }

    .form-container {
        margin-top: 5rem;
    }
    .form-header {
        margin-top: 3rem;
    }
    .price-display {
        font-size: 1rem;
        padding: 0.5rem;
    }
    .subtitle {
        margin: 6rem 0 2rem 0;
    }
}