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

/* Font loading optimization */
@font-face {
    font-family: 'Arial';
    font-display: swap;
}

/* Font Awesome font display optimization */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-display: swap;
}

/* Performance optimizations */
html {
    font-display: swap;
}

/* Font loading states */
.font-loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fonts-loaded .font-loading {
    opacity: 1;
}

/* Optimize font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Cache optimization hints */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

/* Responsive image optimization */
.logo-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(149, 1, 1, 0.3);
}

/* Picture element optimization */
picture {
    display: block;
    line-height: 0;
}

picture img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Performance optimizations */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Reduce layout thrashing */
.mobile-games-slider,
.slider-track,
.slide,
.nav-menu,
.header {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Optimize animations */
.animate-on-scroll,
.slide,
.nav-menu {
    will-change: transform, opacity;
}

/* Reduce paint operations */
.header,
.nav-menu,
.slider-nav {
    contain: layout style paint;
}

/* Optimize animations */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        will-change: transform, opacity;
    }
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #FF0000;
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #FF0000;
    color: #000000;
    padding: 8px;
    text-decoration: none;
    border-radius: 25px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    box-shadow: 0 4px 20px rgba(149, 1, 1, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #950101;
}

/* Ensure header is above other content */
.header {
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #950101;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.nav-logo h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    margin: 0;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(149, 1, 1, 0.2);
    color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    transform: translateY(-2px);
}

.login-btn {
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(149, 1, 1, 0.4);
}

.login-btn:hover {
    background: linear-gradient(135deg, #FF0000 0%, #950101 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    border-color: #FFFFFF;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.hamburger:hover span {
    background: #FF0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

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

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

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

/* Mobile Menu Close Button */
.mobile-menu-close {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #950101, #FF0000);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(149, 1, 1, 0.4);
    outline: none;
}

.mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-close:hover {
    background: linear-gradient(135deg, #FF0000, #950101);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

.mobile-menu-close:focus {
    outline: 2px solid #FF0000;
    outline-offset: 2px;
}

/* Ensure close button is always on top */
.mobile-menu-close {
    z-index: 10000;
}

/* Responsive Header and Navigation */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }
    
    .login-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .header {
        position: relative;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 9999;
        border-right: 2px solid #950101;
        /* Debug styles to ensure visibility */
        opacity: 1;
        visibility: visible;
        /* Force visibility for debugging */
        display: flex !important;
    }
    
    .nav-menu.active {
        left: 0;
        /* Debug styles */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 30px;
        background: rgba(149, 1, 1, 0.1);
        border: 1px solid rgba(255, 0, 0, 0.3);
        min-width: 200px;
        text-align: center;
    }
    
    .nav-link:hover {
        background: rgba(149, 1, 1, 0.3);
        border-color: #FF0000;
    }
    
    .login-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 30px;
        min-width: 200px;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-close {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active + .mobile-menu-close {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        pointer-events: auto;
    }
    
    /* Ensure close button is visible when menu is active */
    .nav-menu.active ~ .mobile-menu-close {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        pointer-events: auto;
    }
    
    .logo-container h2 {
        font-size: 1.5rem;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        min-width: 180px;
    }
    
    .login-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .logo-container h2 {
        font-size: 1.3rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu-close span {
        width: 18px;
        height: 2px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, #3D0000 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #950101 0%, transparent 50%);
    opacity: 0.2;
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 
        0 0 40px rgba(149, 1, 1, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.8);
    border: 3px solid #950101;
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 50px rgba(255, 0, 0, 0.7),
        0 25px 50px rgba(0, 0, 0, 0.9);
}

/* Features Section */
.features {
    background: #000000;
    padding: 100px 0;
    border-top: 2px solid #950101;
    border-bottom: 2px solid #950101;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #FFFFFF;
    text-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #950101, #FF0000);
    margin: 20px auto 0;
    border-radius: 2px;
}

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

.feature-card {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #950101;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #FF0000;
    box-shadow: 
        0 20px 40px rgba(255, 0, 0, 0.3),
        0 0 30px rgba(149, 1, 1, 0.4);
}

.feature-card img {
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.6));
}

.feature-icon {
    margin-bottom: 25px;
    font-size: 3rem;
    color: #FF0000;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.6));
    color: #FF4444;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.7;
}

/* Registration Steps Section */
.registration-steps {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.registration-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, #950101 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, #3D0000 0%, transparent 50%);
    opacity: 0.15;
    pointer-events: none;
}

.registration-steps h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #FFFFFF;
    text-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.registration-steps h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #950101, #FF0000);
    margin: 20px auto 0;
    border-radius: 2px;
}

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

.step {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 40px 30px;
    border-radius: 25px;
    border: 2px solid #950101;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #950101, #FF0000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 
        0 15px 35px rgba(255, 0, 0, 0.3),
        0 0 25px rgba(149, 1, 1, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #950101, #FF0000);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Games Preview Section */
.games-preview {
    background: #000000;
    padding: 100px 0;
    border-top: 2px solid #950101;
}

.games-preview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #FFFFFF;
    text-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.games-preview h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #950101, #FF0000);
    margin: 20px auto 0;
    border-radius: 2px;
}

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

.game-card {
    background: linear-gradient(135deg, #000000, #3D0000);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid #950101;
    transition: all 0.3s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.game-card:hover {
    transform: translateY(-10px);
    border-color: #FF0000;
    box-shadow: 
        0 20px 40px rgba(255, 0, 0, 0.3),
        0 0 30px rgba(149, 1, 1, 0.4);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.game-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 25px 25px 15px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-card p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.7;
    margin: 0 25px 25px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, #950101 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #3D0000 0%, transparent 50%);
    opacity: 0.2;
    pointer-events: none;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-section p {
    font-size: 1.3rem;
    color: #FFFFFF;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    border-top: 3px solid #950101;
    box-shadow: 0 -10px 30px rgba(149, 1, 1, 0.3);
}

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

.footer-section h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.footer-section h4 {
    color: #FF0000;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.footer-section p {
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    color: #FF0000;
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF0000;
    opacity: 1;
    padding-left: 1rem;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(149, 1, 1, 0.4);
}

.social-links a:hover {
    background: linear-gradient(135deg, #FF0000 0%, #950101 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    border-color: #FFFFFF;
}

.social-links i {
    font-size: 1.2rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 0.8rem 1rem;
    border: 2px solid #950101;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    border-color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(149, 1, 1, 0.4);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #FF0000 0%, #950101 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    border-color: #FFFFFF;
}

.newsletter-form button:active {
    transform: translateY(0);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(149, 1, 1, 0.3);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #FFFFFF;
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: #FF0000;
    animation: spin 1s ease-in-out infinite;
}

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

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FF0000;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover,
.scroll-top:focus {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

/* Additional Page Styles */

/* About Us Page */
.about-hero .hero-content {
    text-align: center;
}

.company-story {
    padding: 80px 0;
    background: #000000;
}

.story-content h2 {
    color: #FF0000;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story-content p {
    color: #FFFFFF;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision {
    padding: 80px 0;
    background: #000000;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: #000000;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #950101;
}

.mission-card h3,
.vision-card h3 {
    color: #FF0000;
    font-size: 1.8rem;
    margin: 1rem 0;
}

.mission-card p,
.vision-card p {
    color: #FFFFFF;
    line-height: 1.7;
}

.core-values {
    padding: 80px 0;
    background: #000000;
}

.core-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF0000;
}

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

.value-card {
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #950101;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
}

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

.value-card h3 {
    color: #FF0000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: #FFFFFF;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: #000000;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF0000;
}

.team-intro {
    text-align: center;
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #950101;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.team-member h3 {
    color: #FF0000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team-member p {
    color: #FFFFFF;
    line-height: 1.6;
}

.achievements {
    padding: 80px 0;
    background: #000000;
}

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF0000;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-item {
    text-align: center;
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    border: 2px solid #950101;
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #FF0000;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: #FFFFFF;
    font-size: 1.1rem;
}

/* FAQ Page */
.faq-hero .hero-content {
    text-align: center;
}

.faq-section {
    padding: 80px 0;
    background: #000000;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #FF0000;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    background: #000000;
    border-radius: 25px;
    margin-bottom: 1rem;
    border: 2px solid #950101;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin: 0;
}

.faq-icon {
    color: #FF0000;
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 1.5rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #000000;
    border-radius: 25px;
    border: 2px solid #950101;
}

.faq-cta h2 {
    color: #FF0000;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #FFFFFF;
    margin-bottom: 2rem;
}

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

/* Privacy Policy & Terms Pages */
.privacy-hero .hero-content,
.terms-hero .hero-content {
    text-align: center;
}

.privacy-content,
.terms-content {
    padding: 80px 0;
    background: #000000;
}

.policy-content,
.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section,
.terms-section {
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    border: 2px solid #950101;
}

.policy-section h2,
.terms-section h2 {
    color: #FF0000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.policy-section h3,
.terms-section h3 {
    color: #FF0000;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.policy-section p,
.terms-section p {
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul,
.terms-section ul {
    color: #FFFFFF;
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li,
.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #000000;
    padding: 1.5rem;
    border-radius: 25px;
    margin-top: 1rem;
}

.policy-footer,
.terms-footer {
    background: #950101;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 2rem;
}

.policy-footer p,
.terms-footer p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Disclaimer Page */
.disclaimer-hero .hero-content {
    text-align: center;
}

.disclaimer-content {
    padding: 80px 0;
    background: #000000;
}

.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-section {
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    border: 2px solid #950101;
}

.disclaimer-section h2 {
    color: #FF0000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.disclaimer-section h3 {
    color: #FF0000;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.disclaimer-section p {
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.disclaimer-section ul {
    color: #FFFFFF;
    margin: 1rem 0;
    padding-left: 2rem;
}

.disclaimer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.disclaimer-footer {
    background: #950101;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 2rem;
}

.disclaimer-footer p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Contact Us Page */
.contact-hero .hero-content {
    text-align: center;
}

.contact-info-section {
    padding: 80px 0;
    background: #000000;
}

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

.contact-card {
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #950101;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
}

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

.contact-card h3 {
    color: #FF0000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #FFFFFF;
}

.response-time {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-style: italic;
}

.contact-form-section {
    padding: 80px 0;
    background: #000000;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    color: #FF0000;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-container p {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    border: 2px solid #950101;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #950101;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 0 2px #FF0000;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #FFFFFF;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #FF0000;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.support-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    border-top: 3px solid #950101;
}

.support-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

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

.category-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 25px;
    border: 2px solid #950101;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

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

.category-card:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 15px 35px rgba(149, 1, 1, 0.4);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    font-size: 2.5rem;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.6);
}

.category-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.category-card p {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.category-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.category-card li {
    color: #FFFFFF;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.category-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF0000;
    font-weight: bold;
}

/* Responsive Design for Support Categories */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 1rem;
    }

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

.faq-preview {
    padding: 80px 0;
    background: #000000;
}

.faq-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF0000;
}

.faq-preview > .container > p {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.faq-preview-item {
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    border: 2px solid #950101;
}

.faq-preview-item h3 {
    color: #FF0000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-preview-item p {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #FFFFFF;
}

.faq-cta {
    text-align: center;
}

.response-times {
    padding: 80px 0;
    background: #000000;
}

.response-times h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF0000;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    border: 2px solid #950101;
}

.schedule-card h3 {
    color: #FF0000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.schedule-card p {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.schedule-card ul {
    color: #FFFFFF;
    padding-left: 1.5rem;
}

.schedule-card li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* 404 Error Page */
.error-404 {
    padding: 120px 0 80px;
    background: #000000;
}

.error-404 .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.error-number {
    font-size: 8rem;
    font-weight: bold;
    color: #FF0000;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404 h1 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.error-description {
    color: #FFFFFF;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.error-help h3 {
    color: #FF0000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.error-help p {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quick-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-link {
    color: #FF0000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #FF0000;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: #FF0000;
    color: #000000;
}

.error-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.help-section {
    padding: 80px 0;
    background: #000000;
}

.help-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF0000;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: #000000;
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #950101;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
}

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

.help-card h3 {
    color: #FF0000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.help-card p {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Mobile Games Slider Section */
.mobile-games-slider {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #950101;
    border-bottom: 2px solid #950101;
}

.mobile-games-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, #3D0000 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #3D0000 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.slider-header {
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
    position: relative;
}

.slider-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #950101, #FF0000);
    border-radius: 2px;
}

.slider-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slider-header p {
    font-size: 1.3rem;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-wrapper {
    overflow: visible;
    position: relative;
}

.slider-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

/* Center slide (active) */
.slide.active {
    transform: scale(1) translateZ(0);
    z-index: 3;
}

.slide.active .phone-screen {
    transform: scale(1);
    opacity: 1;
}

.slide.active .phone-thumbnail {
    transform: scale(1.1);
    opacity: 1;
}

/* Adjacent slides (left and right) */
.slide.adjacent {
    transform: scale(0.85) translateX(0);
    opacity: 0.8;
    z-index: 2;
}

.slide.adjacent .phone-screen {
    transform: scale(0.9);
    opacity: 0.8;
}

.slide.adjacent .phone-thumbnail {
    transform: scale(0.8);
    opacity: 0.7;
}

/* Outer slides (far left and far right) */
.slide.outer {
    transform: scale(0.7) translateX(0);
    opacity: 0.5;
    z-index: 1;
}

.slide.outer .phone-screen {
    transform: scale(0.8);
    opacity: 0.6;
}

.slide.outer .phone-thumbnail {
    transform: scale(0.7);
    opacity: 0.5;
}

.mobile-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.phone-thumbnails-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.phone-screen {
    position: relative;
    width: 280px;
    height: 500px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    transform: scale(0.9);
    opacity: 0.8;
}

.phone-screen.active {
    transform: scale(1);
    opacity: 1;
}

.phone-screen::before {
    display: none;
}

.phone-screen::after {
    display: none;
}

.game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.game-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #950101, #FF0000);
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.8);
    border: 2px solid #FF0000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: none;
    position: relative;
    overflow: visible;
    cursor: pointer;
    transform: scale(0.8);
    opacity: 0.7;
}

.phone-thumbnail.active {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(1.2);
}

.phone-thumbnail:hover {
    transform: scale(0.9);
    opacity: 0.9;
    filter: brightness(1.1);
}

.phone-thumbnail:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.phone-thumbnail::before {
    display: none;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

.phone-thumbnail:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.thumbnail-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.game-name {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #3D0000, #950101);
    border: none;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid #FF0000;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 
        0 0 25px rgba(255, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.6);
}

.slider-nav:hover {
    background: linear-gradient(135deg, #950101, #FF0000);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 0 35px rgba(255, 0, 0, 0.7),
        0 15px 40px rgba(0, 0, 0, 0.8);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #3D0000;
    border-color: #3D0000;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #3D0000;
    border: 2px solid #950101;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, #FF0000 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.indicator.active {
    background: #FF0000;
    border-color: #FF0000;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.indicator.active::before {
    opacity: 1;
}

.indicator:hover {
    background: #950101;
    border-color: #FF0000;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.slider-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #000000, #3D0000);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    border: 2px solid #950101;
    box-shadow: 
        0 0 40px rgba(149, 1, 1, 0.4),
        inset 0 0 20px rgba(255, 0, 0, 0.1);
}

.slider-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.15) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: wave 4s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

.slider-footer p {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* Tiranga Login Guide Section */
.tiranga-login-guide {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #950101;
    border-bottom: 2px solid #950101;
}

.tiranga-login-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, #950101 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #3D0000 0%, transparent 50%);
    opacity: 0.15;
    pointer-events: none;
}

.guide-header {
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.guide-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #FFFFFF;
    text-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

.guide-header h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #950101, #FF0000);
    margin: 20px auto 0;
    border-radius: 2px;
}

.guide-intro {
    font-size: 1.2rem;
    color: #FFFFFF;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-section {
    margin-bottom: 60px;
}

.guide-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.guide-section h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #950101, #FF0000);
    border-radius: 2px;
}

.content-card {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid #950101;
    box-shadow: 
        0 0 30px rgba(149, 1, 1, 0.3),
        inset 0 0 20px rgba(255, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #950101, #FF0000);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.content-card:hover {
    border-color: #FF0000;
    box-shadow: 
        0 0 40px rgba(255, 0, 0, 0.4),
        inset 0 0 25px rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
}

.content-card p {
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-card strong {
    color: #FF0000;
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-item {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #950101;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.benefit-item:hover::before {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

.benefit-item:hover {
    border-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-item p {
    color: #FFFFFF;
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

.summary {
    background: linear-gradient(135deg, #950101, #FF0000);
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
    border: 2px solid #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #950101;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #FF0000;
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #950101, #FF0000);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.step-content h4 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-content ul {
    color: #FFFFFF;
    opacity: 0.9;
    padding-left: 20px;
}

.step-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Registration Steps */
.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.reg-step {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #950101;
    transition: all 0.3s ease;
}

.reg-step:hover {
    border-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.reg-step h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reg-step p, .reg-step ul {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
}

.reg-step ul {
    padding-left: 20px;
}

.cta-text {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #950101, #FF0000);
    border-radius: 15px;
    border: 2px solid #FF0000;
}

/* Issues Grid */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.issue-item {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #950101;
    transition: all 0.3s ease;
}

.issue-item:hover {
    border-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.issue-item h4 {
    color: #FF0000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.issue-item p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Security Tips */
.security-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tip-item {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #950101;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-item:hover {
    border-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.tip-item h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tip-item p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Access Methods */
.access-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.access-method {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #950101;
    transition: all 0.3s ease;
}

.access-method:hover {
    border-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.access-method h4 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.access-method ul {
    color: #FFFFFF;
    opacity: 0.9;
    padding-left: 20px;
    margin-bottom: 15px;
}

.access-method li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.access-method p {
    color: #FFFFFF;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
}

/* Perks Grid */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.perk-item {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #950101;
    text-align: center;
    transition: all 0.3s ease;
}

.perk-item:hover {
    border-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.perk-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.perk-item h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perk-item p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.faq-item {
    background: linear-gradient(135deg, #000000, #3D0000);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #950101;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.faq-item h4 {
    color: #FF0000;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-item p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #000000, #3D0000);
    border: 2px solid #950101;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.reminder {
    background: linear-gradient(135deg, #950101, #FF0000);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #FF0000;
    margin-top: 30px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .slider-container {
        max-width: 1200px;
    }
    
    .phone-screen {
        width: 250px;
        height: 450px;
    }
}

@media (max-width: 1200px) {
    .slider-header h2 {
        font-size: 3rem;
    }
    
    .phone-screen {
        width: 220px;
        height: 400px;
    }
    
    .slide.adjacent {
        transform: scale(0.8) translateX(0);
    }
    
    .slide.outer {
        transform: scale(0.65) translateX(0);
    }
}

@media (max-width: 768px) {
    .mobile-games-slider {
        padding: 60px 0;
    }
    
    .slider-header h2 {
        font-size: 2.5rem;
    }
    
    .slider-header p {
        font-size: 1.1rem;
    }
    
    .phone-screen {
        width: 200px;
        height: 360px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slide-indicators {
        gap: 15px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    /* On mobile, show fewer phones to avoid crowding */
    .slide.outer {
        display: none;
    }
    
    .slide.adjacent {
        transform: scale(0.75) translateX(0);
    }
}

@media (max-width: 480px) {
    .slider-header h2 {
        font-size: 2rem;
    }
    
    .phone-screen {
        width: 180px;
        height: 320px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .phone-thumbnail {
        padding: 15px 20px;
    }
    
    .thumbnail-icon {
        width: 40px;
        height: 40px;
    }
    
    .game-name {
        font-size: 0.8rem;
    }
}

/* Touch-friendly interactions */
@media (hover: none) {
    .slider-nav:hover {
        transform: translateY(-50%) scale(1);
    }
    
    .indicator:hover {
        background: #3D0000;
        transform: scale(1);
    }
    
    .phone-thumbnail:hover {
        transform: translateY(0);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn,
    .feature-card,
    .step,
    .game-card {
        border-width: 3px;
    }
    
    .nav-link:hover,
    .btn:hover {
        border-color: #FF0000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .slider-track,
    .slide,
    .slider-nav,
    .indicator {
        transition: none;
    }
    
    .slider-footer::before,
    .phone-thumbnail::before {
        animation: none;
    }
}

/* Registration and Login Guide Section */
.registration-login-guide {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    padding: 4rem 0;
    border-top: 3px solid #950101;
    border-bottom: 3px solid #950101;
}

.registration-login-guide .guide-section {
    margin-bottom: 4rem;
}

.registration-login-guide h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    position: relative;
}

.registration-login-guide h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #950101, #FF0000);
    border-radius: 2px;
}

.registration-login-guide .guide-intro {
    color: #FFFFFF;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #950101;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(149, 1, 1, 0.4);
    border-color: #FF0000;
}

/* Step Icons */
.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.step-icon i {
    color: #FFFFFF;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Step Content */
.step-content {
    flex: 1;
}

.step-content h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.step-content h4 strong {
    color: #FF0000;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.step-content p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.step-link {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 20px;
    border: 2px solid #FF0000;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.step-link:hover {
    background: #FF0000;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Forgot Password Section */
.forgot-password {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(149, 1, 1, 0.2);
    border-radius: 20px;
    border: 1px solid #950101;
}

.forgot-password p {
    color: #FFFFFF;
    margin: 0;
    font-size: 1.1rem;
}

.forgot-password a {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.forgot-password a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

/* Quick Actions */
.quick-actions {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    border: 2px solid #950101;
}

.quick-actions h3 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(149, 1, 1, 0.4);
}

.action-buttons .btn i {
    font-size: 1.2rem;
}

.action-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.5);
    border-color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-login-guide {
        padding: 3rem 0;
    }

    .registration-login-guide h2 {
        font-size: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .step-icon {
        align-self: center;
        margin-bottom: 1rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .registration-login-guide h2 {
        font-size: 1.8rem;
    }

    .step-item {
        padding: 1rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon i {
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    padding: 4rem 0;
    border-top: 3px solid #950101;
}

.contact-section h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #950101, #FF0000);
    border-radius: 2px;
}

.contact-intro {
    color: #FFFFFF;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.contact-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #950101;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(149, 1, 1, 0.4);
    border-color: #FF0000;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.6);
}

.contact-icon i {
    color: #FFFFFF;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.contact-card h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.contact-card p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-link {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.response-time {
    color: #FFFFFF;
    opacity: 0.7;
    font-size: 0.9rem;
    font-style: italic;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    border: 2px solid #950101;
}

.contact-cta h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.contact-cta p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

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

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure proper scroll positioning for fixed header */
section[id] {
    scroll-margin-top: 100px; /* Adjust based on your header height */
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(149, 1, 1, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    z-index: 1000;
    outline: none;
}

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

.scroll-to-top:hover {
    background: linear-gradient(135deg, #FF0000 0%, #950101 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.6);
    border-color: #FF0000;
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Glow effect on hover */
.scroll-to-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #950101, #FF0000, #950101);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover::before {
    opacity: 1;
    animation: glowPulse 2s infinite;
}

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

/* Responsive Design for Scroll to Top Button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Ensure button is above other elements */
.scroll-to-top {
    z-index: 9999;
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    padding: 4rem 0;
    border-top: 3px solid #950101;
}

.games-section h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.section-intro {
    color: #FFFFFF;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-category {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #950101;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(149, 1, 1, 0.4);
    border-color: #FF0000;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.game-category:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.6);
}

.category-icon i {
    color: #FFFFFF;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.game-category h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.game-category p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.game-list li {
    color: #FFFFFF;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(149, 1, 1, 0.3);
    position: relative;
    padding-left: 1.5rem;
}

.game-list li::before {
    content: '🎮';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.game-list li:last-child {
    border-bottom: none;
}

.games-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    border: 2px solid #950101;
    margin-top: 2rem;
}

.games-cta h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.games-cta p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #3D0000 0%, #000000 100%);
    padding: 4rem 0;
    border-top: 3px solid #950101;
}

.about-section h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story {
    text-align: center;
    margin-bottom: 3rem;
}

.about-story h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.about-story p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 2px solid #950101;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(149, 1, 1, 0.4);
    border-color: #FF0000;
}

.stat-number {
    color: #FF0000;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #FFFFFF;
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-values h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid #950101;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(149, 1, 1, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid #FFFFFF;
}

.value-icon i {
    color: #FFFFFF;
    font-size: 1.5rem;
}

.value-item h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.value-item p {
    color: #FFFFFF;
    opacity: 0.8;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    padding: 4rem 0;
    border-top: 3px solid #950101;
}

.features-section h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #950101;
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(149, 1, 1, 0.4);
    border-color: #FF0000;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    font-size: 2rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.feature-card h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.feature-card p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-details {
    list-style: none;
    padding: 0;
}

.feature-details li {
    color: #FFFFFF;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.8;
}

.feature-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF0000;
    font-weight: bold;
}

.features-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    border: 2px solid #950101;
    margin-top: 2rem;
}

.features-cta h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.features-cta p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .games-section h2,
    .about-section h2,
    .features-section h2 {
        font-size: 2rem;
    }

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

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

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

    .game-category,
    .feature-card {
        padding: 1.5rem;
    }

    .category-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i,
    .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .games-section h2,
    .about-section h2,
    .features-section h2 {
        font-size: 1.8rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .game-category,
    .feature-card {
        padding: 1rem;
    }

    .category-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .category-icon i,
    .feature-icon i {
        font-size: 1.2rem;
    }
}

/* Scroll to Top Button */

/* Mission & Vision Section */
.mission-vision {
    background: linear-gradient(135deg, #000000 0%, #3D0000 100%);
    padding: 4rem 0;
    border-top: 3px solid #950101;
}

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

.mission-card,
.vision-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #950101;
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.mission-card:hover::before,
.vision-card:hover::before {
    left: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(149, 1, 1, 0.4);
    border-color: #FF0000;
}

.mission-icon,
.vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    font-size: 3rem;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
}

.mission-card h3,
.vision-card h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.mission-card p,
.vision-card p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #3D0000 0%, #000000 100%);
    padding: 4rem 0;
    border-top: 3px solid #950101;
}

.team-section h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.team-intro {
    color: #FFFFFF;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #950101;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(149, 1, 1, 0.4);
    border-color: #FF0000;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #950101 0%, #FF0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    font-size: 3.5rem;
}

.team-member:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
}

.team-member h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.team-member p {
    color: #FFFFFF;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for Mission & Vision and Team Sections */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .mission-card,
    .vision-card,
    .team-member {
        padding: 2rem;
    }

    .mission-icon,
    .vision-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .mission-card,
    .vision-card,
    .team-member {
        padding: 1.5rem;
    }

    .mission-icon,
    .vision-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* Responsive Design for Mobile Games Slider */
@media (max-width: 1200px) {
    .slider-container {
        max-width: 1000px;
        padding: 0 15px;
    }
    
    .phone-screen {
        width: 250px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .mobile-games-slider {
        padding: 60px 0;
    }
    
    .slider-header h2 {
        font-size: 2.5rem;
    }
    
    .slider-header p {
        font-size: 1.1rem;
    }
    
    .slider-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .phone-screen {
        width: 220px;
        height: 400px;
    }
    
    .phone-thumbnail {
        padding: 15px 20px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .mobile-games-slider {
        padding: 40px 0;
    }
    
    .slider-header h2 {
        font-size: 2rem;
    }
    
    .slider-header p {
        font-size: 1rem;
    }
    
    .phone-screen {
        width: 200px;
        height: 350px;
    }
    
    .phone-thumbnail {
        padding: 12px 18px;
    }
    
    .thumbnail-icon {
        width: 35px;
        height: 35px;
    }
    
    .game-name {
        font-size: 0.8rem;
    }
}

/* Scroll to Top Button */

/* Error Page Styles */
.error-404 {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #000000, #3D0000);
    color: #FFFFFF;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: #FF0000;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.error-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin-bottom: 50px;
}

.error-actions .btn {
    margin: 0 10px;
}

.error-help h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.quick-link {
    color: #FFD700;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #FFD700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: #FFD700;
    color: #000000;
}

.error-icon {
    font-size: 6rem;
    color: #FF0000;
    margin-top: 40px;
}
