/* Frost Crew Styles - Arctic Frost Theme */

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

body {
    font-family: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(120deg, #f0f4ff 0%, #e1ecff 50%, #d4e4ff 100%);
    min-height: 100vh;
}

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

/* Navigation Styles */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 2px 20px rgba(0, 123, 255, 0.1);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0066cc;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-logo img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066cc;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(135, 206, 235, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background: #0066cc;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section Enhanced */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.8), rgba(225, 236, 255, 0.8));
    margin-top: 75px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

/* Hero Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 15s infinite linear;
    opacity: 0.6;
}

.shape-1 { top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { top: 60%; left: 85%; animation-delay: -3s; }
.shape-3 { top: 80%; left: 15%; animation-delay: -6s; }
.shape-4 { top: 30%; left: 80%; animation-delay: -9s; }
.shape-5 { top: 70%; left: 70%; animation-delay: -12s; }
.shape-6 { top: 15%; left: 60%; animation-delay: -15s; }

.geometric-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.1), rgba(135, 206, 235, 0.2));
    border-radius: 50%;
    animation: spin 20s infinite linear;
}

.geo-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.geo-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 10%;
    animation-delay: -7s;
}

.geo-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 5%;
    animation-delay: -14s;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(135, 206, 235, 0.8), transparent);
    animation: lightBeam 8s infinite ease-in-out;
}

.beam-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.beam-2 {
    top: 60%;
    right: 25%;
    animation-delay: -4s;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(135, 206, 235, 0.2));
    color: #0066cc;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 102, 204, 0.3);
    animation: pulse 3s infinite;
}

/* Enhanced Hero Container */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Enhanced Hero Content */
.hero-content h1 {
    font-size: 3.2rem;
    color: #0066cc;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #0066cc, #87ceeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: #4a90e2;
    font-weight: 600;
    background: linear-gradient(135deg, #4a90e2, #87ceeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0066cc;
    background: linear-gradient(135deg, #0066cc, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #34495e;
    font-weight: 500;
    margin-top: 5px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Enhanced CTA Button */
.cta-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: buttonShine 3s infinite;
}

/* Enhanced Hero Visual */
.hero-visual {
    position: relative;
}

.image-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.glow-effect {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

.pulse-ring {
    position: absolute;
    width: 140%;
    height: 140%;
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 50%;
    animation: pulseRing 6s infinite ease-in-out;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(135, 206, 235, 0.3);
    position: relative;
    z-index: 2;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.icon {
    position: absolute;
    font-size: 1.5rem;
    animation: floatIcon 6s infinite ease-in-out;
}

.icon-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: -2s;
}

.icon-3 {
    top: 60%;
    right: 25%;
    animation-delay: -4s;
}

/* Animations */
@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes lightBeam {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes buttonShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

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

/* Responsive Design for Enhanced Hero */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .floating-shape {
        font-size: 1.5rem;
    }
    
    .geometric-shape {
        transform: scale(0.7);
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .floating-shape {
        display: none;
    }
    
    .geometric-shape {
        display: none;
    }
}
.cta-button, .info-button {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #0066cc, #4da6ff);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #0052a3, #3d8bff);
}

.info-button {
    background: rgba(255, 255, 255, 0.9);
    color: #0066cc;
    border: 2px solid #0066cc;
}

.info-button:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Notice/Disclaimer Section */
.notice-section {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.notice-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid #ffc107;
    border-radius: 20px;
    padding: 45px;
    text-align: center;
    color: #2c3e50;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.1);
}

.notice-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.notice-card h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ff8c00;
    font-weight: 700;
}

.notice-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Game Section */
.game-area, .play-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.4);
}

.game-area h2, .play-section h1 {
    text-align: center;
    font-size: 2.8rem;
    color: #0066cc;
    margin-bottom: 50px;
    font-weight: 700;
}

.play-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.2);
    border: 2px solid rgba(135, 206, 235, 0.4);
    background: #fff;
}

.game-container iframe {
    width: 100%;
    height: 506px; /* 16:9 aspect ratio for 900px width */
    border: none;
    display: block;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(135, 206, 235, 0.05));
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(135, 206, 235, 0.3);
}

.about-content h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-content p {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.7);
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 50px;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-item p {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    color: #0066cc;
    font-weight: 600;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.8), rgba(225, 236, 255, 0.8));
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 50px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.5);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-card p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.8), rgba(225, 236, 255, 0.8));
    margin-top: 75px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #34495e;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.3);
}

.contact-form-section h2 {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-info-section {
    color: #34495e;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-info-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.1);
}

.info-box h3 {
    color: #0066cc;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Legal Pages */
.legal-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.8), rgba(225, 236, 255, 0.8));
    margin-top: 75px;
}

.last-updated {
    color: #0066cc;
    font-size: 1rem;
    font-weight: 500;
}

.legal-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.3);
    color: #2c3e50;
    line-height: 1.8;
}

.legal-content h2 {
    color: #0066cc;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.legal-content h3 {
    color: #4da6ff;
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.important-notice {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(135, 206, 235, 0.1));
    border: 2px solid #0066cc;
    border-radius: 15px;
    padding: 35px;
    margin: 30px 0;
    text-align: center;
}

.important-notice h2 {
    color: #0066cc;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 -5px 20px rgba(0, 102, 204, 0.1);
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0066cc;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}

.footer-column h3 {
    color: #0066cc;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #34495e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #0066cc;
}

.footer-column p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #34495e;
}

.footer-notice {
    font-style: italic;
    color: #ff8c00;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(135, 206, 235, 0.3);
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0066cc, #4da6ff);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.scroll-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 244, 255, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(15px);
}

.modal-box {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #0066cc;
    border-radius: 25px;
    padding: 45px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    color: #2c3e50;
    box-shadow: 0 30px 60px rgba(0, 102, 204, 0.2);
    backdrop-filter: blur(20px);
}

.modal-box h2 {
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.modal-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
}

.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 25px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .game-container iframe {
        height: 253px; /* Maintain 16:9 ratio for smaller screens */
    }

    .legal-content {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .modal-box {
        padding: 30px 20px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 15px;
    }

    .scroll-btn {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
    }

    .game-container {
        margin: 0 -15px; /* Full width on very small screens */
        border-radius: 0;
    }
}