/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ff0033;
    --red-dark: #cc0026;
    --red-light: #ff3366;
    --red-glow: rgba(255, 0, 51, 0.3);
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: rgba(255, 0, 51, 0.2);
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 0, 51, 0.3) transparent;
}

* {
    scroll-behavior: auto;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 51, 0.3);
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 51, 0.5);
}

body {
    font-family: var(--font-secondary);
    background: #0a0a0a;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
    overscroll-behavior: smooth;
    scrollbar-gutter: stable;
}

/* Custom Cursor - Removed (using default cursor) */
.cursor,
.cursor-follower {
    display: none;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--red-glow);
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--red-light));
    width: 0%;
    animation: loading 2s ease-in-out forwards;
    box-shadow: 0 0 10px var(--red-glow);
}

@keyframes loading {
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #6262623e;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 0rem 0;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(5px);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 8rem 3rem 3rem;
    gap: 2rem;
    transition: right 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.nav-menu.active {
    right: 0;
}

.nav-menu:not(.active) {
    transition: right 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.nav-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu-overlay:not(.active) {
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.nav-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-logo .logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.nav-logo a:hover .logo-img {
    filter: drop-shadow(0 0 10px var(--red-glow));
    transform: scale(1.05);
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                color 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu.active .nav-link {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active .nav-link:nth-child(1) {
    transition-delay: 0.2s;
}

.nav-menu.active .nav-link:nth-child(2) {
    transition-delay: 0.3s;
}

.nav-menu.active .nav-link:nth-child(3) {
    transition-delay: 0.4s;
}

.nav-menu.active .nav-link:nth-child(4) {
    transition-delay: 0.5s;
}

.nav-menu:not(.active) .nav-link {
    transition-delay: 0s;
    opacity: 0;
    transform: translateX(50px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    transform: translateX(-5px);
}

.nav-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.nav-toggle span:first-child {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-toggle:hover span:first-child {
    color: var(--primary-red);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--primary-red);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-red);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 2rem 0rem;
    overflow: visible;
}

.hero.hero-animated {
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 60%, #050505 100%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 51, 0.1) 0%, transparent 70%);
    animation: gradientMove 10s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.2) translate(20px, -20px);
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--primary-red), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--red-light), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--primary-red), transparent);
    background-size: 200% 200%;
    animation: particlesMove 20s linear infinite;
    opacity: 0.3;
}

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

.hero-container {
    max-width: 1600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    width: 100%;
    min-height: 0px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 2rem;
    align-items: start;
    overflow: visible;
}

/* Main Text Content - Left Side */
.hero-main {
    grid-column: 1;
    grid-row: 2;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    align-self: flex-start;
    padding-top: 6rem;
    margin-bottom: -82px !important;
    display: flex;
    flex-direction: column;
}



.hero-main .hero-title {
    position: absolute;
    top: 0.5rem;
    left: 0%;
    transform: translateX(-50%);
    text-align: left;
    width: 100vw;
    max-width: 1400px;
    padding: 0 2rem;
    line-height: 1;
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-primary);
    margin-bottom: 0;
    z-index: 10;
}

.gradient-text {
    background: linear-gradient(135deg, #ff0000, #a10000bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--red-glow);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-top: -38rem;
    margin-left: 33px;
    margin-bottom: 3rem;
    line-height: 1.8;}


.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.9rem 2rem;
    margin-left: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
    border-radius: 4px;
}

.btn-primary {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--red-glow);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: #ff0000;
    box-shadow: 0 0 20px rgb(255 0 49);
    transform: translateY(-2px);
}

/* Central Character */
.hero-character-wrapper {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    align-self: center;
    justify-self: center;
    margin-top: 3rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.character-container {
    position: relative;
    width: 570px;
    height: 650px;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
    overflow: visible;
    margin: 0 auto;
}

.character-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    overflow: visible;
    padding: 30px;
}

.character-image {
    width: 150%;
    height: auto;
    max-height: 600px;
    margin-top: 57px;
    object-fit: contain;
    object-position: center top;
    filter: drop-shadow(0 0 40px var(--red-glow));
    animation: floatCharacter 6s ease-in-out infinite;
    transform: translateY(-20px);
    position: relative;
    z-index: 1;
    will-change: transform;
}

.character-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, 
        #0a0a0a 0%, 
        rgba(10, 10, 10, 0.95) 20%,
        rgba(10, 10, 10, 0.85) 40%,
        rgba(10, 10, 10, 0.6) 60%,
        rgba(10, 10, 10, 0.3) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 3;
}

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


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

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0.6;
}

.ring-1 {
    width: 250px;
    height: 250px;
    animation: ringRotate 12s linear infinite;
    box-shadow: 0 0 20px var(--red-glow);
}

.ring-2 {
    width: 320px;
    height: 320px;
    animation: ringRotate 18s linear infinite reverse;
    box-shadow: 0 0 25px var(--red-glow);
}

.ring-3 {
    width: 550px;
    height: 550px;
    animation: ringRotate 25s linear infinite;
    box-shadow: 0 0 30px var(--red-glow);
}

.character-glow {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgb(255 0 51 / 71%) 0%, #00000000 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Bottom Right Stats Section */
.hero-stats-section {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
    z-index: 2;
    align-self: flex-start;
    padding-top: 9rem;
}

.stats-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    padding-right: 10px !important;
    
    border-radius: 12px;
   
}

.stat-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.stat-avatars {
    display: flex;
    gap: 0;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--red-dark));
    border: 3px solid var(--bg-dark);
    margin-left: -12px;
    box-shadow: 0 0 10px var(--red-glow);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.avatar:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px var(--red-glow);
    z-index: 10;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar:first-child {
    margin-left: 0;
}

.stats-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    width: 100%;
}

.stats-social .social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.stats-social .social-icon i {
    font-size: 1.2rem;
    line-height: 1;
}

.stats-social .social-icon:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 0 20px var(--red-glow);
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary-red), transparent);
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #dededebd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: var(--bg-darker);
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.95) translateZ(0);
    padding-top: 8rem;
    will-change: transform, opacity;
    transform-origin: center center;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}


.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 80%,
        var(--bg-darker) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.features.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
        padding: 2.5rem;
        background: linear-gradient(190deg, rgb(0 0 0 / 95%), rgb(50 0 0 / 98%));
        border: 1px solid rgb(255 0 51);
        border-radius: 12px;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 0, 51, 0.08) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 0, 51, 0.08) 100%
    );
    opacity: 0;
    z-index: 0;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 0, 51, 0.12) 0%, 
        rgba(255, 0, 51, 0.06) 30%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 0;
}

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

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgb(255 0 51);
    box-shadow: 0 12px 40px rgba(255, 0, 51, 0.25), 0 0 0 1px rgba(255, 0, 51, 0.3), inset 0 0 40px rgba(255, 0, 51, 0.08);
    background: linear-gradient(145deg, rgb(0 0 0 / 98%), rgb(25 0 0));
}

.feature-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.2), rgba(255, 0, 51, 0.05));
    border: 1px solid rgba(255, 0, 51, 0.3);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    color: var(--primary-red);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: 
        0 0 20px rgba(255, 0, 51, 0.2),
        inset 0 0 20px rgba(255, 0, 51, 0.1);
}

.icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-card:hover .icon-box {
    transform: scale(1.08);
    box-shadow: 
        0 8px 25px rgba(255, 0, 51, 0.4),
        inset 0 0 30px rgba(255, 0, 51, 0.15);
    border-color: rgba(255, 0, 51, 0.5);
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.2), rgba(255, 0, 51, 0.1));
}

.feature-card:hover .icon-box::before {
    opacity: 1;
}

.icon-box svg,
.icon-box i {
    width: 40px;
    height: 40px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    line-height: 1;
}

.feature-card:hover .icon-box svg,
.feature-card:hover .icon-box i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--primary-red));
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: all 0.4s;
    text-shadow: 0 0 10px rgba(255, 0, 51, 0.3);
    text-align: center;
    width: 100%;
}

.feature-card:hover .feature-title {
    color: var(--red-light);
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.6),
                 0 0 30px rgba(255, 0, 51, 0.4);
    transform: translateY(-2px);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
    text-align: center;
    width: 100%;
}

.feature-card:hover .feature-description {
    color: var(--text-primary);
}

/* Locations Section */
.locations {
    background: #0a0a0a;
    position: relative;
    padding: 4rem 0;
}

.locations-map-container {
    position: relative;
    z-index: 1;
}

.world-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.world-map-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.4) 0%, rgba(255, 0, 51, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
    animation: redShadowPulse 3s ease-in-out infinite;
}

@keyframes redShadowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.world-map {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.8) contrast(1.1);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.location-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.location-pin:hover {
    transform: translate(-50%, -50%) scale(1.1);
}



.pin-marker {
    width: 12px;
    height: 12px;
    background: #00ff3c;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 255, 60, 0.8), 0 0 24px rgba(0, 255, 60, 0.4);
    animation: onlineBlink 2s ease-in-out infinite;
    position: relative;
}

.pin-marker::before,
.pin-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(0, 255, 60, 0.4);
    pointer-events: none;
}

.pin-marker::before {
    width: 24px;
    height: 24px;
    animation: ringPulse 2s ease-in-out infinite;
}

.pin-marker::after {
    width: 36px;
    height: 36px;
    animation: ringPulse 2s ease-in-out infinite 0.3s;
}

.pin-bling {
    display: none;
}

.location-badge {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.3);
    border: 1px solid rgba(255, 0, 51, 0.5);
    border-radius: 12px;
    padding: 0.4rem 0.6rem;
    white-space: nowrap;
    box-shadow: 
        0 4px 25px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(255, 0, 51, 0.3),
        inset 0 0 10px rgba(255, 0, 51, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    font-size: 0.65rem;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
    min-width: 80px;
}

/* Desktop: Always show badges */
@media (min-width: 769px) {
    .location-badge {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile: Show on hover/click */
@media (max-width: 768px) {
    .location-badge {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .location-pin:hover .location-badge,
    .location-pin.active .location-badge {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.location-badge .fi {
    display: inline-block !important;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    line-height: 1;
    width: 1.5em !important;
    height: 1.2em !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border: none !important;
}

.location-badge span:not(.fi) {
    display: block;
    font-weight: 600;
    font-size: 0.6rem;
}

.location-pin:hover .pin-marker {
    transform: scale(1.2);
    box-shadow: 0 0 16px rgba(0, 255, 60, 1), 0 0 32px rgba(0, 255, 60, 0.6);
}

@keyframes onlineBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(0, 255, 60, 0.8), 0 0 24px rgba(0, 255, 60, 0.4);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 8px rgba(0, 255, 60, 0.5), 0 0 16px rgba(0, 255, 60, 0.3);
    }
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

@keyframes bling {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.status-dot.active {
    background: var(--primary-red);
    box-shadow: 0 0 10px var(--red-glow);
    animation: pulse 2s infinite;
}

/* Games Section */
.games {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.games-showcase {
    position: relative;
    z-index: 1;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    overflow: hidden;
}

.games-slider {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    margin-left: 0;
    width: 100%;
}

.games-track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    margin-top: -2rem;
    margin-left: 0;
    padding-left: 0;
    will-change: transform;
    transition: transform 0.6s ease;
}

.game-item {
    position: relative;
    width: 220px;
    height: 350px;
    flex-shrink: 0;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), z-index 0s;
    z-index: 1;
    box-shadow: none;
    filter: none;
}

/* Dynamic rotation for game items - will be applied via JS for infinite loop */


.game-item:hover {
    transform: translateY(-20px) scale(1.08);
    z-index: 100;
    box-shadow: none;
    filter: none;
}

.game-thumb {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(15, 15, 15, 0.95);
    box-shadow: none;
}

.game-item:hover .game-thumb {
    box-shadow: none;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.game-item:hover .game-thumb img {
    transform: scale(1.05);
}

.game-item::before{
background: none !important;
}


.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 0.75rem 1.2rem;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 6px;
}

.game-content {
    width: 100%;
    text-align: center;
}

.game-name {
    font-family: var(--font-primary);
    font-size: 0.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: none;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    display: block;
}

.separator-line {
    display: none;
}

.game-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
}

.coming-soon-tag {
    display: none;
}

.platform-icons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.platform-icons i {
    font-size: 0.7rem;
    color: var(--primary-red);
    opacity: 1;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s ease;
    filter: none;
}

.game-item:hover .platform-icons i {
    color: var(--primary-red);
    opacity: 1;
    transform: scale(1.1);
    filter: none;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgb(255 0 51);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 0, 51, 0.2);
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 2rem;
}

.slider-btn-next {
    right: 2rem;
}

/* Games Section Responsive */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .game-name {
        font-size: 1rem;
    }
    
    .game-overlay {
        padding: 1rem;
    }
}

.game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease-out;
    pointer-events: none;
    z-index: 2;
}

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


.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-name {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

@keyframes gamesScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Channels Section */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .channels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
    }
}

.channel-card {
    padding: 1.8rem;
    background: linear-gradient(190deg, rgb(0 0 0 / 95%), rgb(50 0 0 / 98%));
    border: 1px solid rgb(255 0 51);
    border-radius: 12px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 280px;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 0, 51, 0.08) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 0, 51, 0.08) 100%
    );
    opacity: 0;
    z-index: 0;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.channel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 0, 51, 0.12) 0%, 
        rgba(255, 0, 51, 0.06) 30%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    z-index: 0;
}

.channel-card:hover::before {
    opacity: 1;
}

.channel-card:hover::after {
    opacity: 1;
}

.channel-card:hover {
    transform: translateY(-8px);
    border-color: rgb(255 0 51);
    box-shadow: 0 12px 40px rgba(255, 0, 51, 0.25), 0 0 0 1px rgba(255, 0, 51, 0.3), inset 0 0 40px rgba(255, 0, 51, 0.08);
    background: linear-gradient(145deg, rgb(0 0 0 / 98%), rgb(25 0 0));
}

.channel-icon {
    font-size: 2.5rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-icon i {
    font-size: 2.5rem;
    transition: all 0.5s;
}

.channel-card:hover .channel-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--primary-red));
}

.channel-name {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 1rem 0 0.8rem 0;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: all 0.4s;
    text-shadow: 0 0 10px rgba(255, 0, 51, 0.3);
    flex-shrink: 0;
}

.channel-card:hover .channel-name {
    color: var(--red-light);
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.6),
                 0 0 30px rgba(255, 0, 51, 0.4);
    transform: translateX(5px);
}

.channel-description {
    color: var(--text-secondary);
    margin: 0 0 1.2rem 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
    font-size: 0.9rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.channel-card:hover .channel-description {
    color: var(--text-primary);
}

.btn-channel {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border: 1px solid var(--primary-red);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 5px;
}

.btn-channel:hover {
    background: var(--primary-red);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(190deg, rgb(0 0 0 / 95%), rgb(50 0 0 / 98%));
    border: 1px solid rgb(255 0 51);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: rgb(255 0 51);
    box-shadow: 0 8px 30px rgba(255, 0, 51, 0.2), inset 0 0 20px rgba(255, 0, 51, 0.05);
}

.info-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.2), rgba(255, 0, 51, 0.05));
    border: 1px solid rgba(255, 0, 51, 0.3);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.4s;
    color: var(--primary-red);
}

.info-item:hover .info-icon {
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.3), rgba(255, 0, 51, 0.1));
    border-color: var(--primary-red);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
}

.info-text h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: color 0.3s;
}

.info-item:hover .info-text h4 {
    color: var(--red-light);
}

.info-text p {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.info-item:hover .info-text p {
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px var(--red-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.btn-submit {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-red);
    background: var(--primary-red);
    color: var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 8px;
    box-shadow: 0 0 20px var(--red-glow);
}

.btn-submit:hover {
    box-shadow: 0 0 30px var(--red-glow);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.3s;
    filter: drop-shadow(0 0 10px var(--red-glow));
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--red-glow));
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px var(--red-glow);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #6262623e;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.7);
    border-top: 2px solid var(--primary-red);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 51, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text i {
    font-size: 1.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.cookie-consent-text p {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: 2px solid;
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-primary);
}

.cookie-btn-accept:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

.cookie-btn-decline:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1.25rem 1.5rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-consent-text {
        flex-direction: column;
        min-width: auto;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll to Top Indicator */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(255, 0, 51, 0.2);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
}

.scroll-to-top i {
    color: var(--primary-red);
    font-size: 1.2rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 3rem;
    }

    .hero-main {
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-character-wrapper {
        margin-top: 6rem;
    }

    .hero-character-wrapper {
        grid-column: 1;
        grid-row: 2;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .character-container {
        width: 550px;
        height: 700px;
        max-width: 100%;
        padding-top: 1.5rem;
        overflow: visible;
        margin: 0 auto;
    }

    .character-image-wrapper {
        padding: 40px;
    }

    .character-image {
        width: 105%;
        height: 105%;
        transform: translateY(-15px);
    }

    .character-fade {
        height: 150px;
    }


    .hero-stats-section {
        grid-column: 1;
        grid-row: 4;
        align-items: center;
    }

    .stats-social {
        flex-direction: row;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;
    }

    .nav-menu {
        width: 100%;
        max-width: 350px;
        right: -100%;
        left: auto;
        top: 0;
        height: 100vh;
        transition: right 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-logo {
        position: static;
        transform: none;
        justify-self: start;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 0, 51, 0.1);
        width: 100%;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--primary-red);
        padding-left: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero Section Mobile Responsive */
    .hero {
        min-height: auto;
        padding: 5rem 0 0rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 2rem;
        align-items: center;
        justify-items: center;
    }

    .hero-main {
        grid-column: 1;
        grid-row: 1;
        padding-top: 0;
        margin-bottom: 0;
        max-width: 100%;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-main .hero-title {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
        align-items: center;
        margin-left: 0;
        padding: 0 1rem;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        position: relative;
    }

    .btn-primary,
    .btn-secondary {
        margin-left: 0;
        width: auto;
        min-width: 140px;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        position: relative;
        z-index: 2;
    }

    .hero-character-wrapper {
        grid-column: 1;
        grid-row: 2;
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .character-container {
        width: 100%;
        max-width: 500px;
        height: auto;
        padding-top: 0;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .character-image-wrapper {
        padding: 30px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .character-image {
        width: 120%;
        height: auto;
        max-width: 120%;
        margin-top: 0;
        transform: translateY(0);
    }

    .character-fade {
        height: 120px;
    }

    .hero-stats-section {
        grid-column: 1;
        grid-row: 3;
        margin-top: 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .stats-social {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .stats-content {
        align-items: center;
        justify-content: center;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
    }

    .ring-2 {
        width: 260px;
        height: 260px;
    }

    .ring-3 {
        width: 320px;
        height: 320px;
    }


    .section-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    /* Hide scrollbar on small mobile */
    html {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* Prevent zoom on inputs only */
    input, textarea, select {
        font-size: 16px !important;
    }

    html::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        background: transparent !important;
    }

    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    body::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        background: transparent !important;
    }

    * {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        background: transparent !important;
    }

    *::-webkit-scrollbar-track {
        display: none !important;
    }

    *::-webkit-scrollbar-thumb {
        display: none !important;
    }

    /* Hero Section Small Mobile - Center Aligned */
    .hero {
        padding: 4rem 0.5rem 2rem;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        gap: 1.5rem;
        align-items: center;
        justify-items: center;
    }

    .hero-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-main .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 30px 0.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 0.5rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        min-width: 150px;
        max-width: 48%;
        margin-bottom: 55px;
        padding: 0.85rem 1.2rem;
        font-size: 0.85rem;
        flex: 1;
        position: relative;
        z-index: 3;
    }

    .hero-character-wrapper {
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 1;
        order: 2;
    }

    .hero-main {
        order: 1;
    }

    .hero-buttons {
        order: 3;
    }

    .hero-stats-section {
        order: 4;
    }

    .character-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .character-image-wrapper {
        padding: 25px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .character-image {
        width: 150%;
        height: auto;
        max-width: 150%;
        transform: translateY(0);
    }

    .character-fade {
        height: 100px;
    }

    .hero-stats-section {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .stats-social {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .stats-content {
        align-items: center;
        justify-content: center;
    }

    .ring-1 {
        width: 150px;
        height: 150px;
    }

    .ring-2 {
        width: 200px;
        height: 200px;
    }

    .ring-3 {
        width: 250px;
        height: 250px;
    }

    .hero-stats-section {
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
    }

    .ring-2 {
        width: 260px;
        height: 260px;
    }

    .ring-3 {
        width: 320px;
        height: 320px;
    }


    .stats-content {
        flex-direction: column;
        gap: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }
}

/* Comprehensive Responsive Design */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn-prev {
        left: 1rem;
    }

    .slider-btn-next {
        right: 1rem;
    }

    .game-item {
        width: 200px;
        height: 320px;
    }

    .contact-content {
        gap: 3rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }

    /* Hide scrollbar on mobile - Complete removal */
    html {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    html::-webkit-scrollbar {
        display: none;
        width: 0;
        background: transparent;
    }

    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    body::-webkit-scrollbar {
        display: none;
        width: 0;
        background: transparent;
    }

    * {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        background: transparent !important;
    }

    *::-webkit-scrollbar-track {
        display: none !important;
    }

    *::-webkit-scrollbar-thumb {
        display: none !important;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .world-map-wrapper {
        padding: 1rem;
    }

    .location-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
        min-width: 70px;
    }

    .games-slider {
        padding: 3rem 0;
    }

    .game-item {
        width: 180px;
        height: 300px;
    }

    .game-name {
        font-size: 0.9rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .channel-card {
        padding: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        width: 100%;
    }

    .info-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .hero-container {
        padding: 0 0.75rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .games-slider {
        padding: 2rem 0;
    }

    .game-item {
        width: 160px;
        height: 280px;
    }

    .game-name {
        font-size: 0.8rem;
    }

    .platform-icons i {
        font-size: 0.6rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-btn-prev {
        left: 0.5rem;
    }

    .slider-btn-next {
        right: 0.5rem;
    }

    .channel-card {
        padding: 1.5rem;
    }

    .channel-name {
        font-size: 1.3rem;
    }

    .channel-description {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .info-item {
        padding: 1rem;
    }

    .info-text h4 {
        font-size: 1.1rem;
    }

    .info-text p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-logo-img {
        height: 70px;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }

    .scroll-to-top i {
        font-size: 1rem;
    }
}

/* Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    /* Hide scrollbar on extra small mobile */
    html {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    html::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        background: transparent !important;
    }

    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    body::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        background: transparent !important;
    }

    * {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        background: transparent !important;
    }

    .container {
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .game-item {
        width: 140px;
        height: 250px;
    }

    .game-name {
        font-size: 0.75rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .channel-card {
        padding: 1.2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-channel {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Landscape Orientation for Tablets */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .character-container {
        width: 400px;
        height: 500px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .game-item:hover {
        transform: none;
    }

    .feature-card:hover {
        transform: none;
    }

    .channel-card:hover {
        transform: none;
    }

    .btn-primary:active,
    .btn-secondary:active,
    .btn-channel:active {
        transform: scale(0.95);
    }
}
