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

:root {
    --primary-dark: #090040;
    --primary-purple: #471396;
    --accent-purple: #B13BFF;
    --accent-yellow: #fffb00;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-purple);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    min-width: 140px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(177, 59, 255, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-login {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 10px 20px;
    font-size: 14px;
}

.btn-login:hover {
    background: #e6b800;
    transform: translateY(-1px);
}

.btn-register {
    background: var(--accent-purple);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
}

.btn-register:hover {
    background: #9a2ee6;
    transform: translateY(-1px);
}

.btn-login-large, .btn-register-large {
    padding: 18px 36px;
    font-size: 18px;
    min-width: 220px;
    border-radius: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.btn-login-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-login-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 50%, #e085e8 100%);
}

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

.btn-login-large:hover::before {
    left: 100%;
}

.btn-login-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-login-large:hover::after {
    width: 300px;
    height: 300px;
}

.btn-register-large {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-register-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #e64a19 50%, #ff80ab 100%);
}

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

.btn-register-large:hover::before {
    left: 100%;
}

.btn-register-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-register-large:hover::after {
    width: 300px;
    height: 300px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo img {
    height: 55px;
    width: auto;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    margin-right: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 50%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
    line-height: 1.6;
    color: #e8e8e8;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-buttons .btn {
    padding: clamp(14px, 3vw, 16px) clamp(24px, 4vw, 32px);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

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

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.hero-image {
    text-align: center;
    animation: slideInRight 1s ease-out 0.6s both;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255,255,255,0.2);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 64px;
    height: 64px;
}

.feature-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Login & Register Sections */
.login-section, .register-section {
    padding: 4rem 0;
    text-align: center;
}

.login-section {
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    color: var(--white);
}

.register-section {
    background: var(--light-gray);
    color: var(--primary-dark);
}

.login-content h2, .register-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.login-content p, .register-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.login-options, .register-options {
    margin-top: 2rem;
}

.login-note, .register-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(102,126,234,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(0.5deg); }
    66% { transform: translateY(-8px) rotate(-0.5deg); }
}

.about-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out;
}

.about-content h2 {
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    animation: slideInUp 1s ease-out;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #34495e;
    max-width: 800px;
    animation: slideInUp 1s ease-out 0.3s both;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    max-width: 800px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.about-content ul li {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 4px solid transparent;
    animation: slideInLeft 0.6s ease-out both;
}

.about-content ul li:nth-child(1) { animation-delay: 0.8s; }
.about-content ul li:nth-child(2) { animation-delay: 0.9s; }
.about-content ul li:nth-child(3) { animation-delay: 1.0s; }
.about-content ul li:nth-child(4) { animation-delay: 1.1s; }
.about-content ul li:nth-child(5) { animation-delay: 1.2s; }
.about-content ul li:nth-child(6) { animation-delay: 1.3s; }

.about-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea, #764ba2, #f093fb);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.about-content ul li:hover::before {
    transform: scaleY(1);
}

.about-content ul li::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.about-content ul li:hover::after {
    width: 200px;
    height: 200px;
}

.about-content ul li:hover {
    transform: translateX(10px) translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08);
    border-left-color: #667eea;
}

.about-content ul li strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Mission Section Responsive */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }
    
    .about-content h2::after {
        width: 60px;
        height: 3px;
    }
    
    .about-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content ul {
        margin: 2rem 0;
    }
    
    .about-content ul li {
        padding: 1.2rem 1.5rem;
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content h2::after {
        width: 50px;
        height: 3px;
    }
    
    .about-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .about-content ul li {
        padding: 1rem 1.2rem;
        margin-bottom: 0.6rem;
        border-radius: 10px;
        font-size: 0.95rem;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    animation: slideInUp 1s ease-out 0.9s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
}

.stat-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
}

.stat-item p {
    color: #34495e;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

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

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-purple));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/games-pattern.webp') repeat;
    opacity: 0.1;
}

.games-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.games-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-yellow);
}

.games-header h3 {
    font-size: 1.5rem;
    opacity: 0.9;
}

.games-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.game-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.game-card h4 {
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.games-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.games-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-item h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-purple);
    font-family: serif;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    color: var(--primary-purple);
    display: block;
}

.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    color: var(--white);
}

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

.stat-card h3 {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-purple);
}

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

.social-links a {
    display: inline-block;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 200px;
    }
    
    .features-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Focus styles for accessibility */
.btn:focus, .nav-link:focus, a:focus {
    outline: 2px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-dark: #000000;
        --primary-purple: #4a148c;
        --accent-purple: #7b1fa2;
        --accent-yellow: #f57f17;
    }
} 

/* WinZO Style Games Section - Dark Theme */
.games-section {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #1a0b2e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(177, 59, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.OurGames_parentContainer__WeJn_ {
    position: relative;
    z-index: 2;
}

.OurGames_bgImages__BX_G4 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(177, 59, 255, 0.03) 10px,
            rgba(177, 59, 255, 0.03) 20px
        );
    z-index: 1;
}

.OurGames_sliderWrapper__HPCTk {
    position: relative;
    z-index: 2;
}

.OurGames_whiteBackground__W_jvA {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 0 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.OurGames_whiteBackground__W_jvA::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(128, 128, 128, 0.05) 20px,
            rgba(128, 128, 128, 0.05) 22px
        );
    pointer-events: none;
    z-index: 1;
}

.OurGames_indGamesContainer__KtmBE {
    text-align: center;
    position: relative;
    z-index: 2;
}

.Heading_headingContainer2__Mc_ly {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.heading-content {
    flex: 1;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a0b2e;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -1px;
}

.Heading_image__XnNYU {
    flex-shrink: 0;
}

.emoji-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.OurGames_subHeadingRectangle__et_PP {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 50px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Games Slider - Dark Theme */
.games-slider-container {
    position: relative;
    margin: 50px 0;
}

.games-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 30px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.games-slider::-webkit-scrollbar {
    display: none;
}

.game-slide {
    flex: 0 0 auto;
    width: 220px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.game-slide:hover {
    transform: translateY(-15px) scale(1.05);
}

.game-slide:nth-child(1) { transform: scale(0.8) translateY(20px); opacity: 0.6; }
.game-slide:nth-child(2) { transform: scale(0.9) translateY(10px); opacity: 0.8; }
.game-slide:nth-child(3) { transform: scale(1.1); opacity: 1; }
.game-slide:nth-child(4) { transform: scale(0.9) translateY(10px); opacity: 0.8; }
.game-slide:nth-child(5) { transform: scale(0.8) translateY(20px); opacity: 0.6; }

.game-slide:hover:nth-child(1),
.game-slide:hover:nth-child(2),
.game-slide:hover:nth-child(3),
.game-slide:hover:nth-child(4),
.game-slide:hover:nth-child(5) {
    transform: scale(1.05) translateY(-15px);
    opacity: 1;
}

.phone-mockup {
    position: relative;
    width: 100%;
    height: 380px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 12px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 2px #333,
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 2px solid #444;
    margin-bottom: 20px;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background: #000;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.phone-mockup:hover .game-image {
    transform: scale(1.08);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
    border: 1px solid #444;
}

/* Slider Controls - Dark Theme */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.ArrowComponent_arrow__vT_fH {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.ArrowComponent_arrow__vT_fH:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
}

.ArrowComponent_prevArrow__gfDPc {
    transform: rotate(180deg);
}

.arrow-icon {
    width: 25px;
    height: 25px;
    filter: brightness(0) saturate(100%);
}

/* Game Icons Section - Dark Theme */
.game-icons-section {
    margin-top: 60px;
}

.game-icons-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.game-icon-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.game-icon-item:hover {
    transform: translateY(-8px);
}

.game-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.game-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 18px 40px rgba(255, 107, 53, 0.6);
}

.game-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.game-label {
    font-weight: 700;
    color: white;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.game-caption {
    font-size: 1.2rem;
    color: white;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

/* Bottom Wave Effect */
.games-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: 
        radial-gradient(ellipse 50% 100% at 50% 100%, 
            rgba(177, 59, 255, 0.3) 0%, 
            transparent 70%);
    z-index: 1;
}

/* Responsive Design for Games Section */
@media (max-width: 768px) {
    .OurGames_whiteBackground__W_jvA {
        margin: 0 10px;
        padding: 40px 25px;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .emoji-icon {
        width: 50px;
        height: 50px;
    }
    
    .OurGames_subHeadingRectangle__et_PP {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .game-slide {
        width: 180px;
    }
    
    .phone-mockup {
        height: 320px;
    }
    
    .game-icons-grid {
        gap: 25px;
    }
    
    .game-icon {
        width: 70px;
        height: 70px;
    }
    
    .game-icon img {
        width: 40px;
        height: 40px;
    }
    
    .slider-controls {
        gap: 20px;
    }
    
    .ArrowComponent_arrow__vT_fH {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .OurGames_whiteBackground__W_jvA {
        padding: 30px 20px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .Heading_headingContainer2__Mc_ly {
        flex-direction: column;
        gap: 20px;
    }
    
    .game-slide {
        width: 160px;
    }
    
    .phone-mockup {
        height: 280px;
    }
    
    .game-icons-grid {
        gap: 20px;
    }
    
    .game-icon {
        width: 60px;
        height: 60px;
    }
    
    .game-caption {
        font-size: 1rem;
        padding: 0 20px;
    }
} 

/* Corner Positioned Arrows */
.corner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.corner-arrow:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.4);
}

.corner-left {
    left: -35px;
}

.corner-right {
    right: -35px;
}

.corner-arrow .arrow-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%);
}

/* Responsive adjustments for corner arrows */
@media (max-width: 1200px) {
    .corner-left {
        left: -25px;
    }
    
    .corner-right {
        right: -25px;
    }
    
    .corner-arrow {
        width: 60px;
        height: 60px;
    }
    
    .corner-arrow .arrow-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px) {
    .corner-left {
        left: -20px;
    }
    
    .corner-right {
        right: -20px;
    }
    
    .corner-arrow {
        width: 50px;
        height: 50px;
    }
    
    .corner-arrow .arrow-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .corner-left {
        left: -15px;
    }
    
    .corner-right {
        right: -15px;
    }
    
    .corner-arrow {
        width: 45px;
        height: 45px;
    }
    
    .corner-arrow .arrow-icon {
        width: 18px;
        height: 18px;
    }
} 

/* Games Slider - 3D Rotating Carousel */
.games-slider-container {
    position: relative;
    margin: 60px 0;
    perspective: 1000px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.games-slider {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.game-slide {
    position: absolute;
    width: 280px;
    height: 420px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

/* 3D Carousel Positioning - 7 slides in a fan arrangement */
.game-slide:nth-child(1) {
    transform: translate(-50%, -50%) translateX(-600px) rotateY(45deg) scale(0.6);
    z-index: 1;
    opacity: 0.4;
}

.game-slide:nth-child(2) {
    transform: translate(-50%, -50%) translateX(-400px) rotateY(30deg) scale(0.75);
    z-index: 2;
    opacity: 0.6;
}

.game-slide:nth-child(3) {
    transform: translate(-50%, -50%) translateX(-200px) rotateY(15deg) scale(0.85);
    z-index: 3;
    opacity: 0.8;
}

.game-slide:nth-child(4) {
    transform: translate(-50%, -50%) translateX(0px) rotateY(0deg) scale(1);
    z-index: 10;
    opacity: 1;
}

.game-slide:nth-child(5) {
    transform: translate(-50%, -50%) translateX(200px) rotateY(-15deg) scale(0.85);
    z-index: 3;
    opacity: 0.8;
}

.game-slide:nth-child(6) {
    transform: translate(-50%, -50%) translateX(400px) rotateY(-30deg) scale(0.75);
    z-index: 2;
    opacity: 0.6;
}

.game-slide:nth-child(7) {
    transform: translate(-50%, -50%) translateX(600px) rotateY(-45deg) scale(0.6);
    z-index: 1;
    opacity: 0.4;
}

/* Hover effects for 3D carousel */
.game-slide:hover {
    transform: translate(-50%, -50%) translateX(0px) rotateY(0deg) scale(1.1);
    z-index: 20;
    opacity: 1;
}

.game-slide:hover:nth-child(1) {
    transform: translate(-50%, -50%) translateX(-200px) rotateY(15deg) scale(0.85);
}

.game-slide:hover:nth-child(2) {
    transform: translate(-50%, -50%) translateX(-100px) rotateY(7deg) scale(0.9);
}

.game-slide:hover:nth-child(3) {
    transform: translate(-50%, -50%) translateX(0px) rotateY(0deg) scale(1.1);
}

.game-slide:hover:nth-child(5) {
    transform: translate(-50%, -50%) translateX(100px) rotateY(-7deg) scale(0.9);
}

.game-slide:hover:nth-child(6) {
    transform: translate(-50%, -50%) translateX(200px) rotateY(-15deg) scale(0.85);
}

/* Phone Mockup - Enhanced 3D Style */
.phone-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 3px #333,
        inset 0 3px 6px rgba(255, 255, 255, 0.1);
    border: 2px solid #444;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    z-index: 5;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    transform-style: preserve-3d;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.phone-mockup:hover .game-image {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    z-index: 10;
    border: 2px solid #444;
    transform: translateZ(20px);
}

/* Enhanced Corner Arrows for 3D Carousel */
.corner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.corner-arrow:hover {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.5);
}

.corner-left {
    left: -40px;
}

.corner-right {
    right: -40px;
}

.corner-arrow .arrow-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) saturate(100%);
    transition: transform 0.3s ease;
}

.corner-arrow:hover .arrow-icon {
    transform: scale(1.1);
}

/* 3D Carousel Animation States */
.games-slider.rotating {
    animation: carousel-rotate 20s infinite linear;
}

@keyframes carousel-rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Auto-rotation pause on hover */
.games-slider-container:hover .games-slider.rotating {
    animation-play-state: paused;
}

/* Responsive 3D Carousel */
@media (max-width: 1200px) {
    .games-slider-container {
        height: 450px;
    }
    
    .game-slide {
        width: 250px;
        height: 380px;
    }
    
    .game-slide:nth-child(1) { transform: translate(-50%, -50%) translateX(-500px) rotateY(40deg) scale(0.6); }
    .game-slide:nth-child(2) { transform: translate(-50%, -50%) translateX(-350px) rotateY(25deg) scale(0.75); }
    .game-slide:nth-child(3) { transform: translate(-50%, -50%) translateX(-180px) rotateY(12deg) scale(0.85); }
    .game-slide:nth-child(5) { transform: translate(-50%, -50%) translateX(180px) rotateY(-12deg) scale(0.85); }
    .game-slide:nth-child(6) { transform: translate(-50%, -50%) translateX(350px) rotateY(-25deg) scale(0.75); }
    .game-slide:nth-child(7) { transform: translate(-50%, -50%) translateX(500px) rotateY(-40deg) scale(0.6); }
}

@media (max-width: 768px) {
    .games-slider-container {
        height: 400px;
    }
    
    .game-slide {
        width: 220px;
        height: 330px;
    }
    
    .game-slide:nth-child(1) { transform: translate(-50%, -50%) translateX(-400px) rotateY(35deg) scale(0.6); }
    .game-slide:nth-child(2) { transform: translate(-50%, -50%) translateX(-280px) rotateY(20deg) scale(0.75); }
    .game-slide:nth-child(3) { transform: translate(-50%, -50%) translateX(-140px) rotateY(10deg) scale(0.85); }
    .game-slide:nth-child(5) { transform: translate(-50%, -50%) translateX(140px) rotateY(-10deg) scale(0.85); }
    .game-slide:nth-child(6) { transform: translate(-50%, -50%) translateX(280px) rotateY(-20deg) scale(0.75); }
    .game-slide:nth-child(7) { transform: translate(-50%, -50%) translateX(400px) rotateY(-35deg) scale(0.6); }
    
    .corner-arrow {
        width: 60px;
        height: 60px;
    }
    
    .corner-arrow .arrow-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .games-slider-container {
        height: 350px;
    }
    
    .game-slide {
        width: 180px;
        height: 270px;
    }
    
    .game-slide:nth-child(1) { transform: translate(-50%, -50%) translateX(-300px) rotateY(30deg) scale(0.6); }
    .game-slide:nth-child(2) { transform: translate(-50%, -50%) translateX(-200px) rotateY(15deg) scale(0.75); }
    .game-slide:nth-child(3) { transform: translate(-50%, -50%) translateX(-100px) rotateY(8deg) scale(0.85); }
    .game-slide:nth-child(5) { transform: translate(-50%, -50%) translateX(100px) rotateY(-8deg) scale(0.85); }
    .game-slide:nth-child(6) { transform: translate(-50%, -50%) translateX(200px) rotateY(-15deg) scale(0.75); }
    .game-slide:nth-child(7) { transform: translate(-50%, -50%) translateX(300px) rotateY(-30deg) scale(0.6); }
    
    .corner-arrow {
        width: 50px;
        height: 50px;
    }
    
    .corner-arrow .arrow-icon {
        width: 20px;
        height: 20px;
    }
} 

/* Games Slider - Enhanced 3D Rotating Carousel */
.games-slider-container {
    position: relative;
    margin: 80px 0;
    perspective: 1200px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(128, 128, 128, 0.03) 20px,
            rgba(128, 128, 128, 0.03) 22px
        );
}

.games-slider {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.game-slide {
    position: absolute;
    width: 300px;
    height: 450px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Enhanced 3D Carousel Positioning - 7 slides in a fan arrangement */
.game-slide:nth-child(1) {
    transform: translate(-50%, -50%) translateX(-650px) rotateY(50deg) scale(0.55);
    z-index: 1;
    opacity: 0.3;
}

.game-slide:nth-child(2) {
    transform: translate(-50%, -50%) translateX(-450px) rotateY(35deg) scale(0.7);
    z-index: 2;
    opacity: 0.5;
}

.game-slide:nth-child(3) {
    transform: translate(-50%, -50%) translateX(-250px) rotateY(20deg) scale(0.8);
    z-index: 3;
    opacity: 0.7;
}

.game-slide:nth-child(4) {
    transform: translate(-50%, -50%) translateX(0px) rotateY(0deg) scale(1);
    z-index: 15;
    opacity: 1;
}

.game-slide:nth-child(5) {
    transform: translate(-50%, -50%) translateX(250px) rotateY(-20deg) scale(0.8);
    z-index: 3;
    opacity: 0.7;
}

.game-slide:nth-child(6) {
    transform: translate(-50%, -50%) translateX(450px) rotateY(-35deg) scale(0.7);
    z-index: 2;
    opacity: 0.5;
}

.game-slide:nth-child(7) {
    transform: translate(-50%, -50%) translateX(650px) rotateY(-50deg) scale(0.55);
    z-index: 1;
    opacity: 0.3;
}

/* Enhanced Hover effects for 3D carousel */
.game-slide:hover {
    transform: translate(-50%, -50%) translateX(0px) rotateY(0deg) scale(1.15);
    z-index: 25;
    opacity: 1;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.game-slide:hover:nth-child(1) {
    transform: translate(-50%, -50%) translateX(-250px) rotateY(20deg) scale(0.8);
}

.game-slide:hover:nth-child(2) {
    transform: translate(-50%, -50%) translateX(-150px) rotateY(10deg) scale(0.85);
}

.game-slide:hover:nth-child(3) {
    transform: translate(-50%, -50%) translateX(0px) rotateY(0deg) scale(1.15);
}

.game-slide:hover:nth-child(5) {
    transform: translate(-50%, -50%) translateX(150px) rotateY(-10deg) scale(0.85);
}

.game-slide:hover:nth-child(6) {
    transform: translate(-50%, -50%) translateX(250px) rotateY(-20deg) scale(0.8);
}

/* Enhanced Phone Mockup - Premium 3D Style */
.phone-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d, #1a1a1a);
    border-radius: 40px;
    padding: 18px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 0 4px #333,
        inset 0 4px 8px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid #444;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 8px;
    background: linear-gradient(145deg, #333, #555);
    border-radius: 4px;
    z-index: 5;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    background: #000;
    transform-style: preserve-3d;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.phone-mockup:hover .game-image {
    transform: scale(1.08);
}

.price-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a, #2c2c2c);
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.7),
        0 0 0 2px #444;
    z-index: 10;
    border: 2px solid #555;
    transform: translateZ(30px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Enhanced Corner Arrows for 3D Carousel */
.corner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(25px);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.corner-arrow:hover {
    transform: translateY(-50%) scale(1.25);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.7),
        0 0 0 4px rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
    border-color: rgba(255, 255, 255, 0.8);
}

.corner-left {
    left: -45px;
}

.corner-right {
    right: -45px;
}

.corner-arrow .arrow-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%);
    transition: transform 0.4s ease;
}

.corner-arrow:hover .arrow-icon {
    transform: scale(1.15);
}

/* Enhanced 3D Carousel Animation States */
.games-slider.rotating {
    animation: carousel-rotate 25s infinite linear;
}

@keyframes carousel-rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Auto-rotation pause on hover */
.games-slider-container:hover .games-slider.rotating {
    animation-play-state: paused;
}

/* Enhanced Game Icons Section */
.game-icons-section {
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.game-icons-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.game-icon-item {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.game-icon-item:hover {
    transform: translateY(-12px) scale(1.1);
}

.game-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 
        0 15px 35px rgba(255, 107, 53, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.game-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.game-icon:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.game-icon:hover {
    transform: scale(1.2);
    box-shadow: 
        0 25px 50px rgba(255, 107, 53, 0.7),
        0 0 0 6px rgba(255, 255, 255, 0.5);
}

.game-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    z-index: 2;
    position: relative;
}

.game-label {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.game-icon-item:hover .game-label {
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.game-caption {
    font-size: 1.3rem;
    color: white;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
    font-weight: 500;
}

/* Responsive 3D Carousel - Enhanced */
@media (max-width: 1200px) {
    .games-slider-container {
        height: 500px;
    }
    
    .game-slide {
        width: 270px;
        height: 405px;
    }
    
    .game-slide:nth-child(1) { transform: translate(-50%, -50%) translateX(-550px) rotateY(45deg) scale(0.55); }
    .game-slide:nth-child(2) { transform: translate(-50%, -50%) translateX(-380px) rotateY(30deg) scale(0.7); }
    .game-slide:nth-child(3) { transform: translate(-50%, -50%) translateX(-210px) rotateY(15deg) scale(0.8); }
    .game-slide:nth-child(5) { transform: translate(-50%, -50%) translateX(210px) rotateY(-15deg) scale(0.8); }
    .game-slide:nth-child(6) { transform: translate(-50%, -50%) translateX(380px) rotateY(-30deg) scale(0.7); }
    .game-slide:nth-child(7) { transform: translate(-50%, -50%) translateX(550px) rotateY(-45deg) scale(0.55); }
}

@media (max-width: 768px) {
    .games-slider-container {
        height: 450px;
    }
    
    .game-slide {
        width: 240px;
        height: 360px;
    }
    
    .game-slide:nth-child(1) { transform: translate(-50%, -50%) translateX(-450px) rotateY(40deg) scale(0.55); }
    .game-slide:nth-child(2) { transform: translate(-50%, -50%) translateX(-310px) rotateY(25deg) scale(0.7); }
    .game-slide:nth-child(3) { transform: translate(-50%, -50%) translateX(-170px) rotateY(12deg) scale(0.8); }
    .game-slide:nth-child(5) { transform: translate(-50%, -50%) translateX(170px) rotateY(-12deg) scale(0.8); }
    .game-slide:nth-child(6) { transform: translate(-50%, -50%) translateX(310px) rotateY(-25deg) scale(0.7); }
    .game-slide:nth-child(7) { transform: translate(-50%, -50%) translateX(450px) rotateY(-40deg) scale(0.55); }
    
    .corner-arrow {
        width: 70px;
        height: 70px;
    }
    
    .corner-arrow .arrow-icon {
        width: 30px;
        height: 30px;
    }
    
    .game-icons-grid {
        gap: 35px;
    }
    
    .game-icon {
        width: 80px;
        height: 80px;
    }
    
    .game-icon img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .games-slider-container {
        height: 400px;
    }
    
    .game-slide {
        width: 200px;
        height: 300px;
    }
    
    .game-slide:nth-child(1) { transform: translate(-50%, -50%) translateX(-350px) rotateY(35deg) scale(0.55); }
    .game-slide:nth-child(2) { transform: translate(-50%, -50%) translateX(-240px) rotateY(20deg) scale(0.7); }
    .game-slide:nth-child(3) { transform: translate(-50%, -50%) translateX(-130px) rotateY(10deg) scale(0.8); }
    .game-slide:nth-child(5) { transform: translate(-50%, -50%) translateX(130px) rotateY(-10deg) scale(0.8); }
    .game-slide:nth-child(6) { transform: translate(-50%, -50%) translateX(240px) rotateY(-20deg) scale(0.7); }
    .game-slide:nth-child(7) { transform: translate(-50%, -50%) translateX(350px) rotateY(-35deg) scale(0.55); }
    
    .corner-arrow {
        width: 60px;
        height: 60px;
    }
    
    .corner-arrow .arrow-icon {
        width: 25px;
        height: 25px;
    }
    
    .game-icons-grid {
        gap: 25px;
    }
    
    .game-icon {
        width: 70px;
        height: 70px;
    }
    
    .game-icon img {
        width: 40px;
        height: 40px;
    }
    
    .game-caption {
        font-size: 1.1rem;
        padding: 0 25px;
    }
} 

/* Mobile Games Slider Section */
.games-slider-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="8" fill="rgba(255,255,255,0.03)">🎮</text></svg>');
    background-size: 100px 100px;
    opacity: 0.1;
}

.slider-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.slider-header .section-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.emoji {
    font-size: 3.5rem;
    display: inline-block;
    margin-left: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.language-badge {
    background: linear-gradient(135deg, var(--accent-purple), #ff6b9d);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(177, 59, 255, 0.3);
}

.mobile-games-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-slider-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.mobile-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    visibility: visible;
    z-index: 1;
    will-change: transform;
}

/* All slides visible at once - Center-focused layout */
.mobile-slide:nth-child(1) { 
    transform: translate(-50%, -50%) translateX(-400px) scale(0.6);
    z-index: 1;
}

.mobile-slide:nth-child(2) { 
    transform: translate(-50%, -50%) translateX(-200px) scale(0.75);
    z-index: 2;
}

.mobile-slide:nth-child(3) { 
    transform: translate(-50%, -50%) translateX(0px) scale(1);
    z-index: 5;
}

.mobile-slide:nth-child(4) { 
    transform: translate(-50%, -50%) translateX(200px) scale(0.75);
    z-index: 2;
}

.mobile-slide:nth-child(5) { 
    transform: translate(-50%, -50%) translateX(400px) scale(0.6);
    z-index: 1;
}

/* Active state for center slide */
.mobile-slide.active {
    z-index: 5;
}

.mobile-slide.active .mobile-frame {
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.mobile-slide.active .game-badge {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 30px rgba(177, 59, 255, 0.4);
}

/* Smooth transitions for all elements */
.mobile-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

.mobile-screen {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

.mobile-slide.active .mobile-screen {
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-amount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-yellow), #ffd700);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 251, 0, 0.4);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-badge {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    padding: 15px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(177, 59, 255, 0.3);
    min-width: 140px;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity, box-shadow;
}

.mobile-slide.active .game-badge {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 12px 30px rgba(177, 59, 255, 0.4);
}

.game-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Game Thumbnails */
.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
    transform: scale(0.9);
    will-change: transform, opacity;
}

.thumbnail-item.active {
    opacity: 1;
    transform: scale(1);
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

.thumbnail-item.active .thumbnail-icon {
    box-shadow: 0 8px 20px rgba(177, 59, 255, 0.4);
    border: 2px solid var(--accent-purple);
}

.thumbnail-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced slider arrows with smooth transitions */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    backdrop-filter: blur(10px);
    will-change: transform, background, border-color;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
    transition: all 0.1s ease;
}

/* Smooth entrance animation for the entire slider */
.mobile-games-slider {
    animation: slideInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Optimize for reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .mobile-slide,
    .mobile-frame,
    .mobile-screen,
    .game-screenshot,
    .game-amount,
    .game-badge,
    .game-icon,
    .game-name,
    .thumbnail-item,
    .thumbnail-icon,
    .thumbnail-name,
    .slider-arrow {
        transition: none;
        animation: none;
    }
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-slogan {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.slider-slogan p {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design for Mobile Slider */
@media (max-width: 1024px) {
    .mobile-slider-container {
        height: 550px;
    }
    
    .mobile-screen {
        width: 260px;
        height: 520px;
    }
    
    .mobile-slide:nth-child(1) { 
        transform: translate(-50%, -50%) translateX(-350px) scale(0.6);
    }
    
    .mobile-slide:nth-child(2) { 
        transform: translate(-50%, -50%) translateX(-175px) scale(0.75);
    }
    
    .mobile-slide:nth-child(4) { 
        transform: translate(-50%, -50%) translateX(175px) scale(0.75);
    }
    
    .mobile-slide:nth-child(5) { 
        transform: translate(-50%, -50%) translateX(350px) scale(0.6);
    }
    
    .game-thumbnails {
        gap: 25px;
    }
    
    .thumbnail-icon {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 60px 0;
    }
    
    .slider-header .section-title {
        font-size: 2.5rem;
    }
    
    .emoji {
        font-size: 3rem;
    }
    
    .mobile-slider-container {
        height: 500px;
    }
    
    .mobile-screen {
        width: 240px;
        height: 480px;
    }
    
    .mobile-slide:nth-child(1) { 
        transform: translate(-50%, -50%) translateX(-300px) scale(0.6);
    }
    
    .mobile-slide:nth-child(2) { 
        transform: translate(-50%, -50%) translateX(-150px) scale(0.75);
    }
    
    .mobile-slide:nth-child(4) { 
        transform: translate(-50%, -50%) translateX(150px) scale(0.75);
    }
    
    .mobile-slide:nth-child(5) { 
        transform: translate(-50%, -50%) translateX(300px) scale(0.6);
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .game-thumbnails {
        gap: 20px;
    }
    
    .thumbnail-icon {
        width: 50px;
        height: 50px;
    }
    
    .thumbnail-name {
        font-size: 0.7rem;
    }
    
    .slider-slogan p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .slider-header .section-title {
        font-size: 2rem;
    }
    
    .emoji {
        font-size: 2.5rem;
        margin-left: 10px;
    }
    
    .language-badge {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .mobile-slider-container {
        height: 450px;
    }
    
    .mobile-screen {
        width: 220px;
        height: 440px;
    }
    
    .mobile-slide:nth-child(1) { 
        transform: translate(-50%, -50%) translateX(-250px) scale(0.6);
    }
    
    .mobile-slide:nth-child(2) { 
        transform: translate(-50%, -50%) translateX(-125px) scale(0.75);
    }
    
    .mobile-slide:nth-child(4) { 
        transform: translate(-50%, -50%) translateX(125px) scale(0.75);
    }
    
    .mobile-slide:nth-child(5) { 
        transform: translate(-50%, -50%) translateX(250px) scale(0.6);
    }
    
    .game-badge {
        bottom: -70px;
        padding: 12px 20px;
        min-width: 120px;
    }
    
    .game-name {
        font-size: 0.8rem;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .game-thumbnails {
        gap: 15px;
    }
    
    .thumbnail-icon {
        width: 45px;
        height: 45px;
    }
    
    .thumbnail-name {
        font-size: 0.6rem;
    }
    
    .slider-slogan p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Values Grid Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    animation: slideInUp 1s ease-out 1.2s both;
}

.value-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.value-item:hover::after {
    width: 300px;
    height: 300px;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.value-item h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.value-item:hover h4::after {
    width: 80px;
}

.value-item p {
    color: #34495e;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* Values Grid Responsive */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .value-item {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .value-item h4 {
        font-size: 1.6rem;
    }
    
    .value-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    .value-item h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Modern Timeline Section */
.timeline {
    position: relative;
    margin: 4rem 0;
    padding: 2rem 0;
    animation: slideInUp 1s ease-out 1.5s both;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.7; }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    animation: slideInLeft 0.8s ease-out both;
}

.timeline-item:nth-child(odd) {
    animation: slideInRight 0.8s ease-out both;
}

.timeline-item:nth-child(1) { animation-delay: 1.6s; }
.timeline-item:nth-child(2) { animation-delay: 1.7s; }
.timeline-item:nth-child(3) { animation-delay: 1.8s; }
.timeline-item:nth-child(4) { animation-delay: 1.9s; }
.timeline-item:nth-child(5) { animation-delay: 2.0s; }
.timeline-item:nth-child(6) { animation-delay: 2.1s; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.6);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 2.5rem;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd)::after {
    border-top: 8px solid rgba(255, 255, 255, 0.95);
    left: calc(50% + 120px);
}

.timeline-item:nth-child(even)::after {
    border-bottom: 8px solid rgba(255, 255, 255, 0.95);
    left: calc(50% - 120px);
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: left;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-content::before {
    transform: scaleX(1);
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.timeline-item:hover .timeline-content::after {
    width: 200px;
    height: 200px;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.timeline-year::after {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-year::after {
    right: 0;
}

.timeline-item:nth-child(even) .timeline-year::after {
    left: 0;
}

.timeline-item:hover .timeline-year::after {
    width: 60px;
}

.timeline-content p {
    color: #34495e;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.timeline-content strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Timeline Responsive */
@media (max-width: 1024px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline::after {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 30px;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        text-align: left !important;
    }
    
    .timeline-year::after {
        left: 0 !important;
    }
}

@media (max-width: 768px) {
    .timeline {
        margin: 3rem 0;
        padding: 1.5rem 0;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .timeline-year {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline::after {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .timeline-year {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
}

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

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.back-to-top-btn:active {
    transform: translateY(-1px);
}

.back-to-top-btn.show {
    display: flex;
    animation: slideInUp 0.3s ease-out forwards;
}

.back-to-top-btn svg {
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover svg {
    transform: translateY(-2px);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

