/* AuroraXHQ.xyz - Aurora/Nature Gaming Theme CSS */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Exo:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties - Aurora/Nature Color Scheme */
:root {
    --primary-color: #7C3AED;        /* Deep Purple */
    --secondary-color: #06B6D4;     /* Cyan */
    --accent-color: #10B981;         /* Emerald Green */
    --accent-secondary: #F59E0B;     /* Amber */
    --dark-bg: #0F0F23;             /* Dark Navy */
    --dark-secondary: #1E1B4B;       /* Deep Purple */
    --text-light: #F8FAFC;
    --text-secondary: #CBD5E1;
    --card-bg: #1E293B;
    --border-color: #334155;
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
    --gradient-secondary: linear-gradient(135deg, #10B981 0%, #F59E0B 100%);
    --gradient-dark: linear-gradient(135deg, #0F0F23 0%, #1E1B4B 100%);
    --aurora-glow: 0 0 30px rgba(124, 58, 237, 0.4);
    --cyan-glow: 0 0 25px rgba(6, 182, 212, 0.4);
    --emerald-glow: 0 0 25px rgba(16, 185, 129, 0.4);
}

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

body {
    font-family: 'Nunito', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Aurora Navigation Styles */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Exo', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: var(--aurora-glow);
}

.logo-icon {
    font-size: 2rem;
    animation: auroraPulse 3s infinite alternate;
}

@keyframes auroraPulse {
    0% { text-shadow: 0 0 10px var(--primary-color); }
    100% { text-shadow: 0 0 25px var(--primary-color), 0 0 35px var(--secondary-color); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
    text-shadow: var(--cyan-glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 1.3rem;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    box-shadow: var(--cyan-glow);
}

/* Aurora Hero Section */
.hero {
    background: var(--gradient-dark);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.08) 0%, transparent 50%), url(../img/hero.jpg);
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Exo', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Aurora Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.cta-button.secondary {
    background: var(--gradient-secondary);
}

.cta-button.secondary:hover {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Gaming Cards */
.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.game-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover::before {
    opacity: 0.08;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: var(--cyan-glow);
}

.game-card * {
    position: relative;
    z-index: 2;
}

.game-card h3 {
    font-family: 'Exo', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.game-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.game-card:hover .game-iframe {
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--dark-secondary);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.08;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--emerald-glow);
}

.feature-card * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.about-section {
    background: var(--gradient-dark);
}

.reviews-section {
    background: var(--dark-secondary);
}

.section-title {
    text-align: center;
    font-family: 'Exo', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--aurora-glow);
}

.review-stars {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'Exo', sans-serif;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 3px solid var(--primary-color);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.disclaimer-card {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--aurora-glow);
}

.disclaimer-card h3 {
    color: var(--text-light) !important;
    margin-bottom: 1rem;
}

.disclaimer-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Forms */
.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    margin-top: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'Exo', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: var(--cyan-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-verification-content {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--aurora-glow);
    position: relative;
}

.age-verification-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Exo', sans-serif;
    font-size: 2rem;
}

.age-verification-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-verify-btn {
    padding: 1rem 2rem;
    border: 2px solid;
    border-radius: 12px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
}

.age-verify-yes {
    background: var(--gradient-secondary);
    border-color: var(--accent-color);
    color: var(--text-light);
}

.age-verify-yes:hover {
    transform: translateY(-2px);
    box-shadow: var(--emerald-glow);
}

.age-verify-no {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.age-verify-no:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--aurora-glow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        z-index: 1100;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        /* max-height: calc(100% - 70px); */
        /* overflow-y: auto; */
        background: var(--dark-bg);
        flex-direction: column;
        padding: 1.5rem;
        transform: translateY(-20px) scaleY(0.95);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        border-top: 2px solid var(--primary-color);
        z-index: 1050;
        box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    }

    .nav-menu.active {
        transform: translateY(0) scaleY(1);
        opacity: 1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: 60vh;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .age-verification-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .games-grid {
        gap: 1.5rem;
    }
    
    .game-card {
        padding: 1.5rem;
    }
    
    .game-iframe {
        height: 300px;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

/* Aurora Animation Effects */
@keyframes auroraShimmer {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.4), 0 0 40px rgba(124, 58, 237, 0.3);
    }
}

.aurora-glow {
    animation: auroraShimmer 4s infinite ease-in-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Make iframes slightly wider on small screens so they feel less boxed-in on narrow viewports */
@media (max-width: 768px) {
    .game-iframe {
        max-width: none;
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .game-iframe {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        height: 320px; /* slightly taller for smaller phones */
    }
}