/* 
   HunGuessr Landing Specific Styles
   Extends home.css - Do not duplicate global styles
*/

.landing-container {
    padding-bottom: 50px;
    margin-top: 20px;
}

/* Hero Card - Matches .game-modes style from home.css */
.landing-hero-card {
    background: rgba(15, 20, 35, 0);
    border-radius: 15px;
    padding: 60px 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: fadeIn 0.8s ease-out;
}

.hero-logo-wrapper img {
    width: 120px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 30px rgba(76, 201, 240, 0.6));
    animation: float 4s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 0 25px rgba(76, 201, 240, 0.4);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4cc9f0;
    margin-bottom: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Landing Nav Button - Matches changelog.html 'Vissza' button (Active state) */
.landing-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4cc9f0 0%, #4895ef 100%);
    border: none;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(76, 201, 240, 0.3);
    font-size: 0.9rem;
}

.landing-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 201, 240, 0.5);
}

/* Hero Buttons */
.play-btn.large-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
    box-shadow: 0 5px 20px rgba(76, 201, 240, 0.4);
    color: white;
}

.play-btn.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
}

.play-btn.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer - Glassmorphism style (Restored) */
.footer {
    background: rgba(15, 20, 35, 0);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

/* Landing Grid */
.landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

/* Animations */
.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(76, 201, 240, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 201, 240, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .landing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .play-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(30, 40, 60, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    background: rgba(76, 201, 240, 0.15);
    border-color: rgba(76, 201, 240, 0.3);
    color: white;
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, #4cc9f0 0%, #4895ef 100%);
    border-color: rgba(76, 201, 240, 0.5);
    color: white;
}

.nav-link i {
    font-size: 1.1rem;
}