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

:root {
    --primary-color: #FC8A15;
    --secondary-color: #F6F6F6;
    --accent-color: #1EE494;
    --dark-color: #009378;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --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(--text-dark);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

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

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-register {
    background: var(--primary-color);
    color: var(--white);
}

.btn-register:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FC8A15 0%, #009378 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 228, 148, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(252, 138, 21, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(30, 228, 148, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(252, 138, 21, 0.05) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: heroFloat 10s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
        opacity: 0.7;
    }
}

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

.hero-content {
    animation: slideInLeft 1s ease-out;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #F6F6F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1EE494, #FC8A15);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s both;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    color: #F6F6F6;
    margin-bottom: 35px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    background: linear-gradient(135deg, #1EE494 0%, #009378 100%);
    color: #FFFFFF;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(30, 228, 148, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::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 ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 228, 148, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 3px solid #FFFFFF;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #FC8A15;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

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

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

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(252, 138, 21, 0.1), rgba(30, 228, 148, 0.1));
    border-radius: 25px;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 50px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

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

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

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Login/Register Sections */
.login-section,
.register-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FC8A15 0%, #009378 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.login-section::before,
.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 228, 148, 0.08) 0%, rgba(252, 138, 21, 0.05) 100%);
    z-index: 1;
}

.login-section::after,
.register-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 228, 148, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(252, 138, 21, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(30, 228, 148, 0.04) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

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

.login-section .container,
.register-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-section-content,
.register-section-content {
    text-align: center;
    max-width: 1000px;
    margin-bottom: 50px;
}

.login-section-content .section-title,
.register-section-content .section-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--white);
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(30, 228, 148, 0.3);
}

.login-section-content .section-title::after,
.register-section-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.login-section-content .section-title span,
.register-section-content .section-title span {
    color: var(--accent-color);
}

.login-section-content .section-description,
.register-section-content .section-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.auth-section {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.auth-section .btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 20px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 228, 148, 0.4);
    display: inline-block;
    font-weight: 700;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-section .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 ease;
}

.auth-section .btn:hover::before {
    left: 100%;
}

.auth-section .btn:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 228, 148, 0.4);
}

.auth-section .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 228, 148, 0.3);
}

.login-section-image,
.register-section-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login-section-image img,
.register-section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.login-section-image img:hover,
.register-section-image img:hover {
    transform: scale(1.05);
}

/* Register Section Multiple Images Layout */
.register-section-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.register-section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 8px solid var(--white);
}

.register-section-image img:nth-child(1) {
    transform: rotate(-8deg) translateY(-10px);
    z-index: 3;
}

.register-section-image img:nth-child(2) {
    transform: rotate(0deg) translateY(0px);
    z-index: 2;
}

.register-section-image img:nth-child(3) {
    transform: rotate(8deg) translateY(-10px);
    z-index: 1;
}

.register-section-image img:hover {
    transform: scale(1.15) rotate(0deg) translateY(-20px);
    z-index: 4;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive for Register Images */
@media (max-width: 768px) {
    .register-section-image {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .register-section-image img:nth-child(1),
    .register-section-image img:nth-child(2),
    .register-section-image img:nth-child(3) {
        transform: none;
        z-index: 1;
    }
    
    .register-section-image img:hover {
        transform: scale(1.05);
    }
}

/* Mobile Responsive for Login/Register Sections */
@media (max-width: 768px) {
    .login-section .container,
    .register-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .login-section-content .section-title,
    .register-section-content .section-title {
        font-size: 2.5rem;
    }
    
    .login-section-content .section-description,
    .register-section-content .section-description {
        font-size: 1.1rem;
        margin: 0 auto 30px auto;
    }
    
    .login-section-image,
    .register-section-image {
        order: -1;
    }
    
    .login-section-image img,
    .register-section-image img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .login-section,
    .register-section {
        padding: 60px 0;
    }
    
    .login-section-content .section-title,
    .register-section-content .section-title {
        font-size: 2rem;
    }
    
    .auth-section .btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.game-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.game-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 228, 148, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(252, 138, 21, 0.06) 0%, transparent 50%);
    z-index: 1;
}

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

.slider-header .section-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(30, 228, 148, 0.3);
}

.language-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(252, 138, 21, 0.3);
}

.mobile-games-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav svg {
    width: 28px;
    height: 28px;
    fill: var(--text-dark);
}

.mobile-slider-container {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.mobile-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.mobile-slide {
    flex: 0 0 400px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.8) translateY(20px) rotate(-5deg);
    opacity: 0.7;
    filter: brightness(0.8);
    position: relative;
}

.mobile-slide.active {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
    filter: brightness(1);
    z-index: 5;
}

.mobile-slide.prev-slide {
    transform: scale(0.75) translateX(-40px) translateY(15px) rotate(-3deg);
    opacity: 0.8;
    filter: brightness(0.9);
    z-index: 4;
}

.mobile-slide.next-slide {
    transform: scale(0.75) translateX(40px) translateY(15px) rotate(3deg);
    opacity: 0.8;
    filter: brightness(0.9);
    z-index: 4;
}

.mobile-slide.prev-preview {
    transform: scale(0.65) translateX(-80px) translateY(25px) rotate(-8deg);
    opacity: 0.6;
    filter: brightness(0.7);
    z-index: 3;
}

.mobile-slide.next-preview {
    transform: scale(0.65) translateX(80px) translateY(25px) rotate(8deg);
    opacity: 0.6;
    filter: brightness(0.7);
    z-index: 3;
}

.mobile-screen {
    background: transparent;
    border-radius: 40px;
    padding: 35px;  
    margin-bottom: 30px;
    border: 12px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
}

.mobile-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45px;
    border-radius: 28px 28px 0 0;
}


.game-screenshot {
    width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
    transition: transform 0.3s ease;
}

.mobile-slide.active .game-screenshot:hover {
    transform: scale(1.05);
}

.game-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.game-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.mobile-slide.active .game-icon {
    border-color: var(--accent-color);
}

.game-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(30, 228, 148, 0.3);
}

.game-name {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0.7;
    transform: translateY(0);
}

.thumbnail-item:hover {
    opacity: 1;
    transform: translateY(-8px);
}

.thumbnail-item.active {
    opacity: 1;
    transform: translateY(-10px);
}

.thumbnail-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.thumbnail-item.active .thumbnail-icon {
    border-color: var(--accent-color);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(30, 228, 148, 0.4);
}

.thumbnail-name {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-slogan {
    text-align: center;
    margin-top: 50px;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive for Games Slider */
@media (max-width: 1024px) {
    .mobile-games-slider {
        padding: 0 60px;
    }
    
    .mobile-slide {
        flex: 0 0 350px;
    }
    
    .mobile-slide.prev-slide {
        transform: scale(0.7) translateX(-50px) translateY(20px) rotate(-2deg);
    }
    
    .mobile-slide.next-slide {
        transform: scale(0.7) translateX(50px) translateY(20px) rotate(2deg);
    }
    
    .mobile-slide.prev-preview {
        transform: scale(0.6) translateX(-100px) translateY(30px) rotate(-6deg);
    }
    
    .mobile-slide.next-preview {
        transform: scale(0.6) translateX(100px) translateY(30px) rotate(6deg);
    }
}

@media (max-width: 768px) {
    .faq-cta {
        margin: 40px 0;
        padding: 40px 30px;
        border-radius: 15px;
    }
    
    .faq-cta h2 {
        font-size: 2rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .faq-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .faq-preview {
        padding: 40px 30px;
        border-radius: 20px;
        margin-bottom: 40px;
    }
    
    .faq-preview h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .games-slider-section {
        padding: 50px 0;
    }
    
    .slider-header .section-title {
        font-size: 2.2rem;
        margin-bottom: 18px;
    }
    
    .language-badge {
        padding: 9px 22px;
        font-size: 0.85rem;
    }
    
    .mobile-games-slider {
        padding: 0 30px;
    }
    
    .mobile-slider {
        gap: 12px;
    }
    
    .mobile-slider-container {
        padding: 30px 0;
    }
    
    .mobile-slide {
        flex: 0 0 300px;
    }
    
    .mobile-slide.prev-slide {
        transform: scale(0.65) translateX(-30px) translateY(12px) rotate(-1deg);
    }
    
    .mobile-slide.next-slide {
        transform: scale(0.65) translateX(30px) translateY(12px) rotate(1deg);
    }
    
    .mobile-slide.prev-preview {
        transform: scale(0.55) translateX(-60px) translateY(20px) rotate(-3deg);
    }
    
    .mobile-slide.next-preview {
        transform: scale(0.55) translateX(60px) translateY(20px) rotate(3deg);
    }
    
    .mobile-screen {
        padding: 25px;
        border-radius: 30px;
        margin-bottom: 25px;
    }
    
    .mobile-screen::before {
        height: 40px;
        border-radius: 25px 25px 0 0;
    }
    
    .game-screenshot {
        border-radius: 25px;
    }
    
    .game-thumbnails {
        gap: 18px;
        margin-top: 35px;
    }
    
    .thumbnail-icon {
        width: 48px;
        height: 48px;
    }
    
    .slider-nav {
        width: 48px;
        height: 48px;
    }
    
    .slider-nav svg {
        width: 22px;
        height: 22px;
    }
    
    .slider-slogan {
        font-size: 1rem;
        padding: 0 18px;
        margin-top: 35px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .faq-cta {
        margin: 30px 0;
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .faq-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .faq-cta p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .faq-cta .btn {
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .faq-preview {
        padding: 30px 20px;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    
    .faq-preview h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .faq-preview > p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .faq-grid {
        gap: 15px;
        margin: 25px 0;
    }
    
    .faq-item {
        padding: 18px;
        border-radius: 15px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .faq-cta {
        margin-top: 30px;
    }
    
    .faq-cta p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .faq-cta a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 0.95rem;
    }
    
    .hero-image::before {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }
    
    .games-slider-section {
        padding: 40px 0;
    }
    
    .slider-header .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .language-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .mobile-games-slider {
        padding: 0 15px;
    }
    
    .mobile-slider {
        gap: 10px;
    }
    
    .mobile-slide {
        flex: 0 0 250px;
    }
    
    .mobile-slide.prev-slide {
        transform: scale(0.6) translateX(-20px) translateY(8px) rotate(-0.5deg);
    }
    
    .mobile-slide.next-slide {
        transform: scale(0.6) translateX(20px) translateY(8px) rotate(0.5deg);
    }
    
    .mobile-slide.prev-preview {
        transform: scale(0.45) translateX(-40px) translateY(15px) rotate(-2deg);
    }
    
    .mobile-slide.next-preview {
        transform: scale(0.45) translateX(40px) translateY(15px) rotate(2deg);
    }
    
    .mobile-screen {
        padding: 15px;
        border-radius: 25px;
        margin-bottom: 20px;
    }
    
    .mobile-screen::before {
        height: 35px;
        border-radius: 20px 20px 0 0;
    }
    
    .game-screenshot {
        border-radius: 20px;
    }
    
    .game-thumbnails {
        gap: 12px;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thumbnail-icon {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        top: 45%;
    }
    
    .slider-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-slogan {
        font-size: 1rem;
        padding: 0 15px;
        margin-top: 30px;
        line-height: 1.4;
    }
}

@media (max-width: 375px) {
    .games-slider-section {
        padding: 30px 0;
    }
    
    .slider-header .section-title {
        font-size: 1.6rem;
    }
    
    .mobile-games-slider {
        padding: 0 10px;
    }
    
    .mobile-slider {
        gap: 8px;
    }
    
    .mobile-slide {
        flex: 0 0 220px;
    }
    
    .mobile-slide.prev-slide {
        transform: scale(0.55) translateX(-15px) translateY(5px) rotate(-0.3deg);
    }
    
    .mobile-slide.next-slide {
        transform: scale(0.55) translateX(15px) translateY(5px) rotate(0.3deg);
    }
    
    .mobile-slide.prev-preview {
        transform: scale(0.4) translateX(-30px) translateY(10px) rotate(-1deg);
    }
    
    .mobile-slide.next-preview {
        transform: scale(0.4) translateX(30px) translateY(10px) rotate(1deg);
    }
    
    .mobile-screen {
        padding: 12px;
        border-radius: 20px;
        margin-bottom: 15px;
    }
    
    .mobile-screen::before {
        height: 30px;
        border-radius: 15px 15px 0 0;
    }
    
    .game-screenshot {
        border-radius: 15px;
    }
    
    .game-thumbnails {
        gap: 10px;
        margin-top: 25px;
    }
    
    .thumbnail-icon {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav svg {
        width: 16px;
        height: 16px;
    }
    
    .slider-slogan {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-top: 25px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Register Section Benefits Grid */
.register-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0 50px 0;
    max-width: 900px;
}

.register-section .benefit-item {
    background: var(--white);
    border: none;
    border-top: 4px solid var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.register-section .benefit-item:hover {
    background: var(--white);
    border-top-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.register-section .benefit-item h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-section .benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Register Benefits */
@media (max-width: 768px) {
    .register-section .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0 40px 0;
    }
    
    .register-section .benefit-item {
        padding: 25px 20px;
    }
    
    .register-section-image {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .register-section-image img:nth-child(1),
    .register-section-image img:nth-child(2),
    .register-section-image img:nth-child(3) {
        transform: none;
        translateY: 0;
    }
    
    .register-section-image img:hover {
        transform: scale(1.05);
        translateY: 0;
    }
    
    .register-section-content .section-title {
        font-size: 2.8rem;
    }
    
    .register-section-content .section-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: var(--white);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
}

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

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: var(--text-light);
}

/* Page Header Styles */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

/* Content Section Styles */
.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.content-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.contact-info {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-details p {
    margin-bottom: 5px;
    font-size: 1rem;
}

/* Contact Form Styles */
.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(252, 138, 21, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* FAQ Styles */
.faq-search {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.search-input {
    flex: 1;
    max-width: 500px;
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    border-radius: 25px;
    font-size: 1rem;
}

.search-btn {
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

.category-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

/* FAQ Preview Styles */
.faq-preview {
    background: linear-gradient(135deg, #FC8A15 0%, #009378 100%);
    padding: 50px 40px;
    border-radius: 25px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(252, 138, 21, 0.2);
}

.faq-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 228, 148, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(252, 138, 21, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.faq-preview > p {
    text-align: center;
    color: #F6F6F6;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FC8A15, #1EE494);
    transition: width 0.3s ease;
}

.faq-item:hover::before {
    width: 8px;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.faq-cta {
    text-align: center;
    margin: 60px 0;
    padding: 60px 40px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FC8A15, #1EE494, #009378);
}

.faq-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.faq-cta .btn-primary {
    background: linear-gradient(135deg, #1EE494 0%, #009378 100%);
    color: #FFFFFF;
    box-shadow: 0 5px 20px rgba(30, 228, 148, 0.3);
}

.faq-cta .btn-primary::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 ease;
}

.faq-cta .btn-primary:hover::before {
    left: 100%;
}

.faq-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 228, 148, 0.4);
}

.faq-cta .btn-secondary {
    background: linear-gradient(135deg, #009378 0%, #1EE494 100%);
    color: #FFFFFF;
    box-shadow: 0 5px 20px rgba(0, 147, 120, 0.3);
}

.faq-cta .btn-secondary::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 ease;
}

.faq-cta .btn-secondary:hover::before {
    left: 100%;
}

.faq-cta .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 147, 120, 0.4);
}

/* Support Categories Styles */
.support-categories {
    margin-bottom: 40px;
}

.support-categories h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

.support-category {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.support-category h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.support-category p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.support-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    transition: var(--transition);
}

.support-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* About Us Page Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-hero-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-hero-image {
    text-align: center;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.mission-section h2,
.vision-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mission-points {
    margin-top: 30px;
}

.mission-point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.point-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.vision-goals h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.vision-goals ul {
    margin-left: 20px;
}

.company-values {
    margin-bottom: 60px;
}

.company-values h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

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

.value-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
}

.company-stats {
    margin-bottom: 60px;
}

.company-stats h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.technology-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.tech-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.tech-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.tech-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.partnerships-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.partnership-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.partnership-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.partnership-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 404 Page Styles */
.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.error-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.error-suggestions {
    margin-bottom: 30px;
}

.error-suggestions h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.suggestion-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    transition: var(--transition);
}

.suggestion-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.error-note {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.error-note p {
    margin: 0;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .error-content h1 {
        font-size: 2.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .suggestion-links {
        flex-direction: column;
        align-items: center;
    }
}

/* 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,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: #000;
        --secondary-color: #fff;
    }
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FC8A15 0%, #009378 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(252, 138, 21, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(252, 138, 21, 0.4);
    background: linear-gradient(135deg, #009378 0%, #FC8A15 100%);
}

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

.back-to-top::before {
    content: '↑';
    font-weight: bold;
    line-height: 1;
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

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