/* Add this at the top of your CSS */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* Global Styles */
:root {
    --primary-color: #dc143c;
    --secondary-color: #8b0000;
    --accent-color: #ff1744;
    --purple: #9d4edd;
    --blue: #1e3a8a;
    --dark-blue: #0f172a;
    --green: #06d6a0;
    --text-color: #ffffff;
    --light-gray: #1e293b;
    --white: #ffffff;
    --maroon: #800000;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, #000000 0%, #0f172a 25%, #1e3a8a 50%, #800000 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Game Objects Background - only in hero section */
.floating-objects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.game-object {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.game-object:nth-child(1) { left: 10%; top: 20%; }
.game-object:nth-child(2) { left: 80%; top: 30%; }
.game-object:nth-child(3) { left: 50%; top: 10%; }
.game-object:nth-child(4) { left: 20%; top: 60%; }
.game-object:nth-child(5) { left: 70%; top: 70%; }
.game-object:nth-child(6) { left: 40%; top: 80%; }
.game-object:nth-child(7) { left: 90%; top: 50%; }
.game-object:nth-child(8) { left: 15%; top: 40%; }
.game-object:nth-child(9) { left: 60%; top: 25%; }
.game-object:nth-child(10) { left: 30%; top: 90%; }
.game-object:nth-child(11) { left: 85%; top: 15%; }
.game-object:nth-child(12) { left: 25%; top: 35%; }
.game-object:nth-child(13) { left: 65%; top: 55%; }
.game-object:nth-child(14) { left: 45%; top: 45%; }
.game-object:nth-child(15) { left: 5%; top: 75%; }
.game-object:nth-child(16) { left: 75%; top: 85%; }
.game-object:nth-child(17) { left: 35%; top: 65%; }
.game-object:nth-child(18) { left: 55%; top: 95%; }
.game-object:nth-child(19) { left: 95%; top: 35%; }
.game-object:nth-child(20) { left: 12%; top: 55%; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

/* Racing Cars Animation - only in hero section */
.racing-cars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.racing-car {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: raceAcross 12s linear infinite;
    animation-delay: var(--car-delay);
}

.racing-car:nth-child(1) { top: 25%; }
.racing-car:nth-child(2) { top: 50%; }
.racing-car:nth-child(3) { top: 75%; }

@keyframes raceAcross {
    0% {
        left: 110%;
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
    100% {
        left: -10%;
        transform: translateY(0) rotate(0deg);
    }
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Layout */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Header & Navigation */
header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-3d {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.6));
}

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

.hero-text-combined {
    display: inline; /* keeps everything in one line */
    font-size: 2rem; /* adjust size if needed */
  }
  
  .hero-text-script {
    font-family: 'YourScriptFont', cursive; /* keep your script style */
    margin-right: 5px; /* optional spacing */
  }
  
  .hero-text-bold {
    font-weight: bold;
    font-family: 'YourBoldFont', sans-serif; /* keep bold style */
  }
.logo-text-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.logo-text-script {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    font-style: normal;
    text-shadow: 3px 3px 10px rgba(220, 20, 60, 0.8),
                 0 0 25px rgba(220, 20, 60, 0.6);
    letter-spacing: 3px;
}

.logo-text-bold {
    font-size: 1rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8),
                 0 0 15px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #dc143c, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links li {
    margin-left: 1rem;
}

.nav-links a {
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    position: relative;
    text-decoration: none;
}

/* Active navigation link with glow effect */
.nav-links a:hover,
.nav-links a[style*="linear-gradient"] {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    animation: navGlow 1.5s ease-in-out infinite alternate !important;
}

/* Glowing animation for active navigation */
@keyframes navGlow {
    0% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 1), 0 0 40px rgba(255, 107, 53, 0.6), 0 8px 25px rgba(0, 0, 0, 0.4);
    }
}

/* Navigation Social Media Links */
.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
}

.nav-social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

.nav-social-icon i {
    font-size: 1rem;
}

.nav-social-icon:hover {
    transform: translateY(-2px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.nav-social-icon.youtube {
    background: rgba(255, 0, 0, 0.15);
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.3);
}

.nav-social-icon.youtube:hover {
    background: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.nav-social-icon.facebook {
    background: rgba(24, 119, 242, 0.15);
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.3);
}

.nav-social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.3);
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.4);
}

.nav-social-icon.tiktok {
    background: rgba(0, 242, 234, 0.15);
    color: #00f2ea;
    border-color: rgba(0, 242, 234, 0.3);
}

.nav-social-icon.tiktok:hover {
    background: rgba(0, 242, 234, 0.3);
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.4);
}

.nav-social-icon.instagram {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.15), rgba(245, 133, 41, 0.15));
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.3);
}

.nav-social-icon.instagram:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.3), rgba(245, 133, 41, 0.3));
    box-shadow: 0 0 10px rgba(228, 64, 95, 0.4);
}

.nav-social-icon.twitter {
    background: rgba(29, 161, 242, 0.15);
    color: #1DA1F2;
    border-color: rgba(29, 161, 242, 0.3);
}

.nav-social-icon.twitter:hover {
    background: rgba(29, 161, 242, 0.3);
    box-shadow: 0 0 10px rgba(29, 161, 242, 0.4);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 0 40px 0;
    background-color: transparent; /* Change if needed */
}
  

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

/* Force logo to shrink and glow */
.hero-logo-3d {
    text-align: center;
    margin-top: 20px;
}

.hero-brand-logo {
    width: 200px !important;         /* force exact pixel size */
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 80, 150, 0.8));
    animation: smallLogoFloat 4s ease-in-out infinite, logoGlow 2.5s ease-in-out infinite;
  }
  
  /* Floating motion */
  @keyframes smallLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  /* Glow effect */
  @keyframes logoGlow {
    0%, 100% {
      filter: drop-shadow(0 0 8px rgba(255, 60, 120, 0.6))
              drop-shadow(0 0 14px rgba(255, 100, 180, 0.5));
    }
    50% {
      filter: drop-shadow(0 0 16px rgba(255, 0, 100, 0.9))
              drop-shadow(0 0 30px rgba(255, 100, 180, 0.8));
    }
  }

.logo-circle {
    font-size: 8rem;
    display: inline-block;
    animation: rotate3d 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.5));
}

@keyframes rotate3d {
    0%, 100% {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
    }
    50% {
        transform: perspective(1000px) rotateY(0deg) rotateX(10deg);
    }
    75% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    }
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.hero-text-script {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    font-style: normal;
    text-shadow: 3px 3px 10px rgba(220, 20, 60, 0.8),
                 0 0 25px rgba(220, 20, 60, 0.6);
    letter-spacing: 3px;
}

.hero-text-bold {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 15px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.8),
                 0 0 10px rgba(0, 255, 0, 0.6),
                 0 0 20px rgba(0, 255, 0, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
    border: 2px solid rgba(0, 255, 0, 0.3);
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.4),
                    0 0 20px rgba(0, 255, 0, 0.2);
        border-color: rgba(0, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.8),
                    0 0 40px rgba(0, 255, 0, 0.4);
        border-color: rgba(0, 255, 0, 0.8);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 23, 68, 1));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10; /* Ensure features appear above floating elements */
}

.feature-badge {
    background: rgba(255, 255, 255, 1) !important; /* Fully opaque - no transparency */
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--maroon);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: var(--transition);
    position: relative;
    z-index: 11; /* Ensure badges appear above floating elements */
}

.feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 10; /* Ensure button is above floating elements */
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.8);
    color: white;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    /* Ensure sections don't interfere with floating elements */
    background: transparent !important;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 2rem auto;
    max-width: 1400px;
    padding: 4rem 2rem;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.feature-card {
    background: rgba(30, 41, 59, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #cbd5e1;
}

/* Games Section */
.games {
    padding: 5rem 0;
}

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

.game-card {
    background: rgba(30, 41, 59, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

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

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.game-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.game-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-description {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.game-guide {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(139, 0, 0, 0.2));
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #fbbf24;
    text-align: left;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.game-guide strong {
    color: #fcd34d;
}

.play-button {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 214, 160, 0.4);
}

/* Contact Section */
.contact {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 2rem auto;
    max-width: 1400px;
    padding: 4rem 2rem;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    background: rgba(30, 41, 59, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(220, 20, 60, 0.3);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact input,
.contact textarea {
    padding: 1.2rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(30, 41, 59, 0.9);
    color: white;
    transition: var(--transition);
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

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

/* Newsletter Section */
.newsletter {
    background: rgba(220, 20, 60, 0.1);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem;
    border-top: 2px solid rgba(220, 20, 60, 0.3);
    border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 50px;
    background: rgba(30, 41, 59, 0.9);
    color: white;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.newsletter-note {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(220, 20, 60, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-info {
    margin: 2rem 0;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-email {
    color: #cbd5e1;
}

.footer-email a {
    color: #00ff00;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.footer-email a:hover {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

/* Social Media Links */
.social-links {
    margin: 3rem 0;
}

.social-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid;
    min-width: 100px;
}

.social-icon i {
    font-size: 2.5rem;
}

.social-icon span {
    font-size: 0.9rem;
    font-weight: 600;
}

.social-icon.youtube {
    background: rgba(255, 0, 0, 0.15);
    color: #FF0000;
    border-color: #FF0000;
}

.social-icon.youtube:hover {
    background: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transform: translateY(-5px);
}

.social-icon.facebook {
    background: rgba(24, 119, 242, 0.15);
    color: #1877F2;
    border-color: #1877F2;
}

.social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.3);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
    transform: translateY(-5px);
}

.social-icon.tiktok {
    background: rgba(0, 242, 234, 0.15);
    color: #00f2ea;
    border-color: #00f2ea;
}

.social-icon.tiktok:hover {
    background: rgba(0, 242, 234, 0.3);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.5);
    transform: translateY(-5px);
}

.social-icon.instagram {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.15), rgba(245, 133, 41, 0.15));
    color: #E4405F;
    border-color: #E4405F;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.3), rgba(245, 133, 41, 0.3));
    box-shadow: 0 0 20px rgba(228, 64, 95, 0.5);
    transform: translateY(-5px);
}

.social-icon.twitter {
    background: rgba(29, 161, 242, 0.15);
    color: #1DA1F2;
    border-color: #1DA1F2;
}

.social-icon.twitter:hover {
    background: rgba(29, 161, 242, 0.3);
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.5);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.3);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: var(--transition);
}

/* Responsive Design - Comprehensive Media Queries */

/* Extra small devices (phones, 320px and up) */
@media (max-width: 480px) {
    .hero-title .hero-text-script { font-size: 2rem; }
    .hero-title .hero-text-bold { font-size: 1.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    
    /* Reduce floating element sizes on very small screens */
    .enhanced-floating .video-element,
    .enhanced-floating .image-element {
        width: 12vw;
        max-width: 15vw;
        max-height: 12vh;
    }
    
    /* Adjust positioning for mobile */
    .enhanced-floating .video-element { top: 20%; }
    .enhanced-floating .image-element { top: 60%; }
    
    /* Optimize animations for mobile */
    @media (prefers-reduced-motion: reduce) {
        * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    }
}

/* Small devices (large phones, 481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-title .hero-text-script { font-size: 2.5rem; }
    .hero-title .hero-text-bold { font-size: 1.8rem; }
    
    .enhanced-floating .video-element,
    .enhanced-floating .image-element {
        width: 14vw;
        max-width: 18vw;
        max-height: 14vh;
    }
}

/* Medium devices (tablets, 768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title .hero-text-script { font-size: 3rem; }
    .hero-title .hero-text-bold { font-size: 2rem; }
    
    .enhanced-floating .video-element,
    .enhanced-floating .image-element {
        width: 16vw;
        max-width: 20vw;
        max-height: 15vh;
    }
    
    /* Adjust navigation for tablets */
    .nav-links { gap: 1.5rem; }
    .nav-social-icons { gap: 1rem; }
}

/* Large devices (desktops, 1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .enhanced-floating .video-element,
    .enhanced-floating .image-element {
        width: 18vw;
        max-width: 22vw;
        max-height: 16vh;
    }
}

/* Extra large devices (large desktops, 1440px and up) */
@media (min-width: 1440px) {
    .enhanced-floating .video-element,
    .enhanced-floating .image-element {
        width: 20vw;
        max-width: 25vw;
        max-height: 18vh;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Reduce hover effects on touch devices */
    .game-card:hover,
    .feature-card:hover,
    .contact-item:hover { transform: none; }
    
    /* Increase touch target sizes */
    .play-button,
    .cta-button { min-height: 48px; padding: 1rem 2rem; }
    
    /* Disable video autoplay on touch devices - handled via JavaScript */
    .video-element { pointer-events: auto; }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure crisp rendering on retina displays */
    .image-element,
    .video-element { image-rendering: -webkit-optimize-contrast; }
}

/* Enhanced Visual Elements - New Animations for Videos and Images */

/* 45-degree rotation animation */
@keyframes rotate45 {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(11.25deg) scale(1.05); }
    50% { transform: rotate(22.5deg) scale(1.1); }
    75% { transform: rotate(33.75deg) scale(1.05); }
}

/* Glowing animation */
@keyframes intenseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.8))
                drop-shadow(0 0 40px rgba(255, 20, 147, 0.4))
                drop-shadow(0 0 60px rgba(255, 20, 147, 0.2));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 20, 147, 1))
                drop-shadow(0 0 80px rgba(255, 20, 147, 0.8))
                drop-shadow(0 0 120px rgba(255, 20, 147, 0.4));
        transform: scale(1.1);
    }
}

/* Up and down floating motion */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-30px) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
        opacity: 0.9;
    }
}

/* Diagonal floating motion */
@keyframes diagonalFloat {
    0%, 100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(20px, -30px) rotate(0deg);
    }
    75% {
        transform: translate(10px, -15px) rotate(-5deg);
    }
}

/* Pulsing glow for videos */
@keyframes videoPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.3),
                    0 0 60px rgba(0, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 60px rgba(0, 255, 255, 0.6),
                    0 0 120px rgba(0, 255, 255, 0.3);
    }
}

/* Complex rotation and movement */
@keyframes complexMotion {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(15px, -20px) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translate(30px, -40px) rotate(180deg) scale(1.1);
    }
    75% {
        transform: translate(15px, -20px) rotate(270deg) scale(1.05);
    }
    100% {
        transform: translate(0px, 0px) rotate(360deg) scale(1);
    }
}

/* Enhanced floating elements container - positioned absolutely in hero section only */
.enhanced-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Only cover the viewport height */
    pointer-events: none;
    z-index: 50; /* Above all content */
    overflow: hidden;
}

/* Boundary constraints for floating elements - now responsive */
.enhanced-floating .video-element,
.enhanced-floating .image-element {
    position: absolute;
    /* Responsive sizing based on viewport */
    max-width: 20vw;
    max-height: 15vh;
    width: 15vw;
    height: auto;
}

/* Enhanced floating elements are properly positioned in HTML */

/* Ensure proper z-index layering */
.video-element { z-index: 15; }
.image-element { z-index: 12; }
.image-element.rotated-45 { z-index: 16; }
.image-element.glowing { z-index: 14; }
.image-element.floating { z-index: 13; }
.image-element.diagonal { z-index: 12; }
.image-element.complex { z-index: 15; }

/* Video element styling */
.video-element {
    position: absolute;
    border-radius: 15px;
    animation: videoPulse 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-element:hover {
    transform: scale(1.1);
    animation-duration: 2s;
}

/* Image element styling */
.image-element {
    position: absolute;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* 45-degree rotated image */
.image-element.rotated-45 {
    animation: rotate45 8s ease-in-out infinite;
    transform-origin: center;
}

/* Glowing image */
.image-element.glowing {
    animation: intenseGlow 6s ease-in-out infinite;
}

/* Floating up-down image */
.image-element.floating {
    animation: floatUpDown 5s ease-in-out infinite;
}

/* Diagonal floating image */
.image-element.diagonal {
    animation: diagonalFloat 7s ease-in-out infinite;
}

/* Complex motion image */
.image-element.complex {
    animation: complexMotion 10s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-element,
    .image-element {
        width: 80px !important;
        height: 80px !important;
    }
}

/* Enhanced responsive design for mobile devices */
@media (max-width: 480px) {
    /* Reduce animation complexity on mobile */
    .image-element, .video-element {
        animation-duration: 3s !important;
        animation-fill-mode: forwards;
    }

    /* Smaller elements on very small screens */
    .enhanced-floating .video-element {
        width: 80px !important;
        height: 50px !important;
    }

    .enhanced-floating .image-element {
        width: 60px !important;
        height: 60px !important;
    }

    /* Adjust positioning for mobile */
    .enhanced-floating .video-element,
    .enhanced-floating .image-element {
        /* Ensure minimum spacing from edges on mobile */
        margin: 10px;
    }

    /* Disable complex mouse parallax on touch devices */
    .enhanced-floating .image-element,
    .enhanced-floating .video-element {
        transition: transform 0.1s ease;
    }
}
