/* Landing Page Specific Styles */
.landing-header {
    justify-content: flex-end;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.6s ease;
}

.landing-header.loaded {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.05s;
}

.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 120px);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.landing-content h1,
.landing-content h2,
.landing-content p,
.landing-content .landing-buttons {
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.6s ease;
}

.landing-content.loaded h1 {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.landing-content.loaded h2 {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.25s;
}

.landing-content.loaded p {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.landing-content.loaded .landing-buttons {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.55s;
}

.landing-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1;
}

.landing-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #666;
}

.landing-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #333;
}

.landing-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.landing-btn {
    flex: 0 1 auto;
    min-width: 140px;
    text-align: center;
    font-size: 20px;
    background: #fff;
    color: #000;
    border: 4px solid #000;
    box-shadow: 6px 6px 0 #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 #000;
}

.landing-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #000;
}

.landing-btn:first-child {
    background: #000;
    color: #fff;
    box-shadow: 6px 6px 0 #FFD700;
}

.landing-btn:first-child:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 #FFD700;
}

.landing-btn:first-child:active {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 #FFD700;
}

/* Scroll Hint */
.scroll-hint {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    opacity: 0;
    cursor: pointer;
    animation: bounceIn 0.6s cubic-bezier(0.65, 0, 0.35, 1) 5s forwards, bounce 2s ease-in-out 5.6s infinite;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-hint-text {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-hint svg {
    display: block;
}

@keyframes bounceIn {
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive styles for landing page */
@media (max-width: 768px) {
    .landing-content h1 {
        font-size: 36px;
    }

    .landing-content h2 {
        font-size: 20px;
    }

    .landing-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .landing-btn {
        font-size: 18px;
        padding: 14px 28px;
        width: 100%;
        min-width: unset;
    }

    .scroll-hint-text {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .landing-content h1 {
        font-size: 32px;
    }

    .landing-content h2 {
        font-size: 18px;
    }

    .landing-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .scroll-hint-text {
        font-size: 12px;
    }
}
