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

:root {
    --primary-dark: #041C32;
    --secondary-dark: #04293A;
    --accent-blue: #064663;
    --accent-gold: #ECB365;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #f4c95d);
    color: var(--primary-dark);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #f4c95d, var(--accent-gold));
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-login {
    background: var(--accent-blue);
    color: var(--white);
    margin-right: 10px;
}

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

.btn-register {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-register:hover {
    background: #f4c95d;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 1rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-link:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    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: 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.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236, 179, 101, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Additional floating elements */
.hero-section .floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-slow 8s ease-in-out infinite;
}

.hero-section .floating-element:nth-child(1) {
    top: 15%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    animation-delay: 0s;
}

.hero-section .floating-element:nth-child(2) {
    top: 70%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    animation-delay: 2s;
}

.hero-section .floating-element:nth-child(3) {
    top: 30%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    animation-delay: 4s;
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-15px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-15px);
    }
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

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

.highlight {
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(236, 179, 101, 0.6);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.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:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-buttons .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(236, 179, 101, 0.3);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #f4c95c);
    color: var(--primary-dark);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(236, 179, 101, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f4c95c, var(--accent-gold));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(236, 179, 101, 0.5);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(236, 179, 101, 0.2);
}

.hero-buttons .btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(236, 179, 101, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease-out 0.9s both;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}



.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 179, 101, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: bounce 2s ease-in-out infinite;
}

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

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Login and Register Sections */
.login-section, .register-section {
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-dark));
    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(135deg, rgba(4, 28, 50, 0.1) 0%, rgba(4, 41, 58, 0.1) 100%);
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.register-section .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.login-section-content {
    text-align: left;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.login-section-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
}

.login-section-content .section-title::after {
    left: 0;
    transform: none;
}

.login-section-content .section-description {
    text-align: left;
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.register-section-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.register-section-content .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
}

.register-section-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.register-section-content .section-description {
    text-align: center;
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.login-options .btn {
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-options .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #f4c95c);
    color: var(--primary-dark);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(236, 179, 101, 0.3);
}

.login-options .btn-primary:hover {
    background: linear-gradient(135deg, #f4c95c, var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(236, 179, 101, 0.4);
}

.login-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.login-note a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-note a:hover {
    color: #f4c95c;
}

.register-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
}

.register-cta .btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-gold), #f4c95c);
    color: var(--primary-dark);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(236, 179, 101, 0.3);
}

.register-cta .btn:hover {
    background: linear-gradient(135deg, #f4c95c, var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(236, 179, 101, 0.4);
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    min-width: 0;
    flex-shrink: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Login and Register Image Styling */
.login-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}



.login-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 179, 101, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: login-pulse 4s ease-in-out infinite;
}

.register-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1000px;
}

.register-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}


.register-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 179, 101, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: login-pulse 4s ease-in-out infinite;
}

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

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    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.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 179, 101, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 800px;
    margin-bottom: 3rem;
}

.about-text h2 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #f4c95c);
    border-radius: 2px;
}

.about-text p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.about-image {
    margin-top: 2rem;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--accent-gold), #f4c95c, var(--accent-gold));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transition: all 0.6s ease;
    filter: brightness(1.1) contrast(1.1);
}

.about-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
    transition: all 0.8s ease;
}

.about-content .btn {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--accent-gold), #f4c95c);
    color: var(--primary-dark);
    border: none;
    box-shadow: 0 10px 30px rgba(236, 179, 101, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.about-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 179, 101, 0.4);
    transition: all 0.6s ease;
}

.about-content .btn:hover::before {
    left: 100%;
    transition: left 0.8s ease;
}

.about-content .btn:active {
    transform: translateY(-1px);
}

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

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

/* Games Section */
.games-section {
    background: var(--light-gray);
}

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

/* Games Slider Section */
.games-slider-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.games-slider-section::before {
    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;
}

/* Slider Header */
.slider-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.slider-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.language-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Mobile Games Slider */
.mobile-games-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.mobile-slide {
    position: absolute;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    text-align: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.mobile-screen {
    margin-bottom: 1rem;
}

.game-screenshot {
    border-radius: 25px;
    transition: all 0.8s ease;

}

/* Center slide (active) */
.mobile-slide.active {
    z-index: 10;
    transform: scale(1) translateX(0) rotateY(0deg);
}

.mobile-slide.active .game-screenshot {
    width: 320px;
    height: auto;
    filter: brightness(1);
}

/* Left slides (previous) */
.mobile-slide.prev {
    z-index: 5;
    transform: scale(0.85) translateX(-180px) rotateY(20deg);
    opacity: 0.8;
}

.mobile-slide.prev .game-screenshot {
    width: 270px;
    height: auto;
    filter: brightness(0.9);
}

.mobile-slide.prev-2 {
    z-index: 3;
    transform: scale(0.7) translateX(-320px) rotateY(30deg);
    opacity: 0.6;
}

.mobile-slide.prev-2 .game-screenshot {
    width: 220px;
    height: auto;
    filter: brightness(0.7);
}

/* Right slides (next) */
.mobile-slide.next {
    z-index: 5;
    transform: scale(0.85) translateX(180px) rotateY(-20deg);
    opacity: 0.8;
}

.mobile-slide.next .game-screenshot {
    width: 270px;
    height: auto;
    filter: brightness(0.9);
}

.mobile-slide.next-2 {
    z-index: 3;
    transform: scale(0.7) translateX(320px) rotateY(-30deg);
    opacity: 0.6;
}

.mobile-slide.next-2 .game-screenshot {
    width: 220px;
    height: auto;
    filter: brightness(0.7);
}

/* Navigation arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    z-index: 20;
}

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

.slider-nav:hover {
    background: #f4c95c;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(236, 179, 101, 0.4);
    transition: all 0.6s ease;
}

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

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

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

/* Game Badge */
.game-badge {
    text-align: center;
    margin-top: 1rem;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.game-name {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Thumbnail navigation */
.game-thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.thumbnail-item {
    cursor: pointer;
    transition: all 0.6s ease;
    text-align: center;
}

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

.thumbnail-item.active .thumbnail-icon {
    border-color: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(236, 179, 101, 0.4);
}

.thumbnail-item:hover .thumbnail-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.thumbnail-name {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Slider Slogan */
.slider-slogan {
    text-align: center;
    margin-top: 2rem;
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

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

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.game-card h3, .game-card p {
    padding: 1rem;
    margin: 0;
}

.game-card h3 {
    color: var(--primary-dark);
}

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

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

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

/* Testimonials Section */
.testimonials-section {
    background: var(--light-gray);
}

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

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

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
}

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-dark));
    color: var(--white);
    text-align: center;
}

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

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

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

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-gold);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-auth {
        display: none;
    }

    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    /* Login and Register Section Mobile Responsiveness */
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .register-section .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .login-section-content {
        text-align: center;
        order: 1;
    }
    
    .register-section-content {
        text-align: center;
        order: 1;
    }
    
    .login-image {
        order: 2;
    }
    
    .register-image {
        order: 2;
    }
    
    .login-section-content .section-title {
        text-align: center;
    }
    
    .register-section-content .section-title {
        text-align: center;
    }
    
    .login-section-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .register-section-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .login-section-content .section-description {
        text-align: center;
    }
    
        .register-section-content .section-description {
        text-align: center;
    }
    
    .register-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    /* Games Slider Mobile Responsiveness */
    .games-slider-section {
        padding: 60px 0;
    }
    
    .slider-header .section-title {
        font-size: 2rem;
    }
    
    .mobile-games-slider {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .mobile-slider-container {
        height: 450px;
    }
    
    .mobile-slide.active .game-screenshot {
        width: 280px;
    }
    
    .mobile-slide.prev .game-screenshot,
    .mobile-slide.next .game-screenshot {
        width: 220px;
    }
    
    .mobile-slide.prev-2 .game-screenshot,
    .mobile-slide.next-2 .game-screenshot {
        width: 180px;
    }
    
    .mobile-slide.prev {
        transform: scale(0.85) translateX(-120px) rotateY(20deg);
    }
    
    .mobile-slide.next {
        transform: scale(0.85) translateX(120px) rotateY(-20deg);
    }
    
    .mobile-slide.prev-2 {
        transform: scale(0.7) translateX(-200px) rotateY(30deg);
    }
    
    .mobile-slide.next-2 {
        transform: scale(0.7) translateX(200px) rotateY(-30deg);
    }
    
    .game-thumbnails {
        gap: 0.8rem;
    }
    
    .thumbnail-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* About Section Mobile Responsiveness */
    .about-section {
        padding: 60px 0;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .about-image img {
        max-width: 100%;
    }
    
    .about-content .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

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

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

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .register-steps {
        grid-template-columns: 1fr;
    }
}

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

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: #000000;
        --accent-gold: #000000;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), #f4c95d);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(236, 179, 101, 0.4);
    transition: all 0.8s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f4c95d, var(--accent-gold));
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(236, 179, 101, 0.6);
    transition: all 0.6s ease;
}

.back-to-top:active {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .btn,
    .back-to-top {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
} 