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

:root {
    --primary-color: #1dcd75;
    --secondary-color: #169962;
    --dark-color: #000000;
    --dark-gray: #222222;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --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(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(29, 205, 159, 0.3);
}

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

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

.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: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(29, 205, 159, 0.3);
}

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

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

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    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-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* Hero Section */
.hero-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Ensure home section scrolls to top */
html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: auto;
    overflow-anchor: none;
}

#home {
    scroll-margin-top: 0;
}

/* Prevent any automatic scrolling */
* {
    scroll-behavior: auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero-title {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Login and Register Sections */
.login-section,
.register-section {
    padding: 5rem 0;
    background: var(--light-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-content,
.register-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.login-text,
.register-text {
    color: var(--white);
    text-align: center;
}

.login-text h2,
.register-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.login-text h2 span,
.register-text h2 span {
    color: var(--primary-color);
}

.login-text p,
.register-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
}

.login-interface,
.register-interface {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.login-interface h3,
.register-interface h3 {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.login-interface p,
.register-interface p {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.register-image {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    grid-column: 1 / -1;
}

.register-image img {
    width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.register-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.login-tabs,
.register-tabs {
    display: flex;
    background: var(--light-gray);
    border-radius: 10px;
    padding: 0.3rem;
    margin-bottom: 2rem;
}

.login-tab,
.register-tab {
    flex: 1;
    padding: 0.8rem 1rem;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-tab.active,
.register-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.login-tab:not(.active),
.register-tab:not(.active) {
    background: transparent;
    color: var(--dark-gray);
}

.login-form,
.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(29, 205, 159, 0.1);
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    width: 80px;
    flex-shrink: 0;
}

.phone-number {
    flex: 1;
}

.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-gray);
}

.remember-password {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.remember-password input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.remember-password label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

.login-actions,
.register-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-login-primary,
.btn-register-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-login-primary:hover,
.btn-register-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-login-secondary,
.btn-register-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.login-footer,
.register-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

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

.footer-link i {
    font-size: 1rem;
}

.login-content p,
.register-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

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

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

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.about-content h2 {
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.game-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.game-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.game-card p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.games-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* Games Slider Section */
.games-slider-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.games-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    background: radial-gradient(circle at center, rgba(29, 205, 159, 0.1) 0%, transparent 70%);
    border-radius: 30px;
    padding: 2rem 2rem;
}

.games-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center center;
}

.slide[data-slide="0"] {
    transform: translate(-50%, -50%) translateX(-400px) scale(0.6) rotateY(-15deg);
    opacity: 0.3;
    z-index: 1;
}

.slide[data-slide="1"] {
    transform: translate(-50%, -50%) translateX(-250px) scale(0.75) rotateY(-10deg);
    opacity: 0.5;
    z-index: 2;
}

.slide[data-slide="2"] {
    transform: translate(-50%, -50%) translateX(0px) scale(1) rotateY(0deg);
    opacity: 1;
    z-index: 5;
}

.slide[data-slide="3"] {
    transform: translate(-50%, -50%) translateX(250px) scale(0.75) rotateY(10deg);
    opacity: 0.5;
    z-index: 2;
}

.slide[data-slide="4"] {
    transform: translate(-50%, -50%) translateX(400px) scale(0.6) rotateY(15deg);
    opacity: 0.3;
    z-index: 1;
}

.slide.active {
    transform: translate(-50%, -50%) translateX(0px) scale(1) rotateY(0deg);
    opacity: 1;
    z-index: 5;
}

.slide.prev {
    transform: translate(-50%, -50%) translateX(-250px) scale(0.75) rotateY(-10deg);
    opacity: 0.5;
    z-index: 2;
}

.slide.next {
    transform: translate(-50%, -50%) translateX(250px) scale(0.75) rotateY(10deg);
    opacity: 0.5;
    z-index: 2;
}

.mobile-interface {
    position: relative;
    width: 280px;
    height: 500px;
    border-radius: 25px;
    overflow: hidden; 
    transform-style: preserve-3d;
}

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

.game-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.game-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.thumbnail-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.thumbnail-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    max-width: 80px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

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

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

.slider-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.slider-tagline {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.slider-tagline p {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Slider Slogan Styling */
.slider-slogan {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slider-slogan p {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* Language Badge Styling */
.language-badge {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(29, 205, 159, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    max-width: fit-content;
}

.language-badge::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;
}

.language-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 205, 159, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.language-badge:hover::before {
    left: 100%;
}

/* Game Thumbnails Section */
.game-thumbnails {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 2rem;
    -webkit-overflow-scrolling: touch;
    min-width: 100%;
    max-width: 100%;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 15px;
    transition: var(--transition);
    text-align: center;
    min-width: 100px;
    flex-shrink: 0;
    position: relative;
    opacity: 1;
    visibility: visible;
}

.thumbnail-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.thumbnail-item.active {
    background: rgba(29, 205, 159, 0.2);
    border: 2px solid var(--primary-color);
    transform: scale(1.1);
}

.thumbnail-item img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.thumbnail-item.active img {
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(29, 205, 159, 0.5);
}

.thumbnail-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    max-width: 80px;
}

/* Thumbnail click indicator */
.thumbnail-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.thumbnail-item.active::after {
    width: 80%;
}

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

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

.benefit-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

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

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
}

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

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

.footer-brand h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
}

.footer-brand h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-brand p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    margin-top: 0;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.footer-links .footer-column {
    flex: 1;
    min-width: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: -15px;
}

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

.social-links a {
    background: var(--dark-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 205, 159, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 205, 159, 0.4);
}

.social-links a:hover::before {
    left: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(29, 205, 159, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

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

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 205, 159, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .register-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand h3::after,
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        min-width: 70px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        min-width: 120px;
    }
    
    .feature-card,
    .game-card,
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

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

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #00ff00;
        --secondary-color: #008000;
        --dark-color: #000000;
        --white: #ffffff;
    }
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .btn,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
}

/* Additional Page Styles */

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Content Sections */
.about-content-section,
.privacy-content-section,
.terms-content-section,
.disclaimer-content-section,
.contact-info-section,
.faq-content-section,
.support-overview-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2,
.about-text h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    margin: 1.5rem 0;
}

.values-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

/* Privacy Policy Specific Styling */
.privacy-content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.privacy-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.privacy-content h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h2::before {
    content: '🔒';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    opacity: 0.8;
}

.privacy-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    position: relative;
    padding-left: 1.2rem;
}

.privacy-content h3::before {
    content: '📋';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    opacity: 0.7;
}

.privacy-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.privacy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    position: relative;
}

.privacy-content li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.privacy-content .last-updated {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(29, 205, 159, 0.2);
}

.privacy-content .highlight-box {
    background: rgba(29, 205, 159, 0.1);
    border: 1px solid rgba(29, 205, 159, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.privacy-content .highlight-box::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Privacy Policy Contact Section - Styling moved to main contact-section */

/* Terms & Conditions Specific Styling */
.terms-content-section {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    position: relative;
}

.terms-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.terms-content h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content h2::before {
    content: '📋';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    opacity: 0.8;
}

.terms-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    position: relative;
    padding-left: 1.2rem;
}

.terms-content h3::before {
    content: '⚖️';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    opacity: 0.7;
}

.terms-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.terms-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-content li {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    position: relative;
}

.terms-content li::before {
    content: '•';
    position: absolute;
    left: -1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-content .section-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    text-align: center;
    line-height: 2.5rem;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.terms-content .important-note {
    background: rgba(22, 153, 118, 0.1);
    border: 1px solid rgba(22, 153, 118, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.terms-content .important-note::before {
    content: '⚠️';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.terms-content .legal-highlight {
    background: linear-gradient(135deg, rgba(22, 153, 118, 0.1) 0%, rgba(29, 205, 159, 0.1) 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
}

.terms-content .legal-highlight h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-content .legal-highlight p {
    margin-bottom: 0.5rem;
}

.terms-content .clause {
    background: var(--white);
    border: 1px solid rgba(22, 153, 118, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.terms-content .clause:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(22, 153, 118, 0.1);
    transform: translateY(-2px);
}

.terms-content .clause h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.terms-content .clause h4::before {
    content: '📜';
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.terms-content .definition {
    background: linear-gradient(135deg, rgba(29, 205, 159, 0.05) 0%, rgba(22, 153, 118, 0.05) 100%);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-left: 3px solid var(--primary-color);
}

.terms-content .definition strong {
    color: var(--primary-color);
    font-weight: 600;
}

.terms-content .table-of-contents {
    background: linear-gradient(135deg, rgba(22, 153, 118, 0.1) 0%, rgba(29, 205, 159, 0.1) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(22, 153, 118, 0.2);
}

.terms-content .table-of-contents h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.terms-content .table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-content .table-of-contents li {
    margin-bottom: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.terms-content .table-of-contents li:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.terms-content .table-of-contents a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.terms-content .table-of-contents a:hover {
    color: var(--secondary-color);
}

/* Disclaimer Specific Styling */
.disclaimer-content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
}

.disclaimer-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.disclaimer-content h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
}

.disclaimer-content h2:first-child {
    margin-top: 0;
}

.disclaimer-content h2::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    opacity: 0.8;
}

.disclaimer-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    position: relative;
    padding-left: 1.2rem;
}

.disclaimer-content h3::before {
    content: '🚨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    opacity: 0.7;
}

.disclaimer-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.disclaimer-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.disclaimer-content li {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    position: relative;
}

.disclaimer-content li::before {
    content: '⚠️';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.disclaimer-content .warning-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.disclaimer-content .warning-box::before {
    content: '🚨';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.disclaimer-content .warning-box h4 {
    color: #f57c00;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.disclaimer-content .risk-notice {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(229, 57, 53, 0.1) 100%);
    border: 2px solid rgba(244, 67, 54, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.disclaimer-content .risk-notice::before {
    content: '💀';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.disclaimer-content .risk-notice h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.disclaimer-content .important-info {
    background: linear-gradient(135deg, rgba(29, 205, 159, 0.1) 0%, rgba(22, 153, 118, 0.1) 100%);
    border: 2px solid rgba(29, 205, 159, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.disclaimer-content .important-info::before {
    content: 'ℹ️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.disclaimer-content .important-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.disclaimer-content .legal-note {
    background: var(--white);
    border: 1px solid rgba(22, 153, 118, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.disclaimer-content .legal-note:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(22, 153, 118, 0.1);
    transform: translateY(-2px);
}

.disclaimer-content .legal-note h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.disclaimer-content .legal-note h4::before {
    content: '⚖️';
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.disclaimer-content .acknowledgment {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(103, 58, 183, 0.1) 100%);
    border: 2px solid rgba(156, 39, 176, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.disclaimer-content .acknowledgment::before {
    content: '✅';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.disclaimer-content .acknowledgment h4 {
    color: #7b1fa2;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.disclaimer-content .acknowledgment p {
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

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

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

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

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-color);
}

.team-member h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member .specialty,
.team-member .experience {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

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

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

.achievement-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

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

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Vision Section */
.vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

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

.vision-stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.vision-stat h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    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(29, 205, 159, 0.1);
}

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

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* FAQ Styles */
.faq-categories {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
}

.faq-category {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(29, 205, 159, 0.1);
    position: relative;
    overflow: hidden;
}

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

.faq-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 205, 159, 0.2);
    border-color: var(--secondary-color);
}

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

.faq-category.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(29, 205, 159, 0.3);
    transform: translateY(-2px);
}

.faq-category-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(29, 205, 159, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 205, 159, 0.15);
    border-color: rgba(29, 205, 159, 0.2);
}

.faq-item h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

.faq-item h3::before {
    content: '❓';
    position: absolute;
    left: -1.5rem;
    top: 0;
    font-size: 1.2rem;
    opacity: 0.7;
}

.faq-answer {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.8rem;
    position: relative;
}

.faq-answer li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

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

/* FAQ Categories Section */
.faq-categories-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.faq-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.faq-categories-section .container {
    position: relative;
    z-index: 2;
}

/* Support Styles */
.support-overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.support-stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.support-stat h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

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

.support-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.channel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.support-channel ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.support-channel ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.support-channel ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

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

.issue-category {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.issue-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.issue-category ul {
    list-style: none;
}

.issue-category ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.issue-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

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

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

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

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

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

.office-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

/* FAQ Preview */
.faq-preview-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

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

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Help Section */
.help-section {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

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

/* Contact Section - Updated styling */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-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.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Error Page */
.error-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.helpful-links {
    margin: 3rem 0;
}

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

.helpful-link {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.helpful-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.helpful-link h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.helpful-link p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.search-suggestion {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Responsive adjustments for additional pages */
@media (max-width: 768px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .support-channels-grid,
    .support-team-grid,
    .issues-grid,
    .process-steps,
    .support-hours-grid,
    .office-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-category {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Login/Register Responsive */
    .login-content,
    .register-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .login-text,
    .register-text {
        text-align: center;
    }
    
    .login-interface,
    .register-interface {
        max-width: 100%;
        margin: 0;
    }
    
    .login-tabs,
    .register-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .login-tab,
    .register-tab {
        width: 100%;
    }
    
    .phone-input-group {
        flex-direction: column;
    }
    
    .country-code {
        width: 100%;
    }
    
    .login-footer,
    .register-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .register-image {
        flex-direction: column;
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .register-image img {
        width: 100%;
        max-width: 300px;
    }
    
    /* Games Slider Mobile Responsive */
    .games-slider {
        height: auto;
        perspective: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        overflow: hidden;
        position: relative;
    }
    
    .slide {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        opacity: 0 !important;
        margin-bottom: 0;
        transition: all 0.3s ease;
        display: none;
    }
    
    .slide[data-slide="0"],
    .slide[data-slide="1"],
    .slide[data-slide="2"],
    .slide[data-slide="3"],
    .slide[data-slide="4"] {
        transform: none !important;
        opacity: 0 !important;
        position: relative !important;
        display: none;
    }
    
    /* Show only active slide on mobile */
    .slide.active {
        display: flex !important;
        opacity: 1 !important;
        transform: scale(1) !important;
        z-index: 5;
    }
    
    .mobile-interface {
        width: 100%;
        max-width: 300px;
        height: 500px;
        margin: 0 auto;
    }
    
    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 10;
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    /* Game Thumbnails Mobile Responsive */
    .game-thumbnails {
        gap: 0.8rem;
        margin-top: 2rem;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        min-width: 100%;
        max-width: 100%;
    }
    
    .game-thumbnails::-webkit-scrollbar {
        display: none;
    }
    
    .thumbnail-item {
        min-width: 70px;
        padding: 0.6rem;
        flex-shrink: 0;
        display: flex !important;
        opacity: 1 !important;
        text-align: center;
    }
    
    .thumbnail-item img {
        width: 45px;
        height: 45px;
    }
    
    .thumbnail-item span {
        font-size: 0.7rem;
        max-width: 70px;
        text-align: center;
    }
    
    .thumbnail-item::after {
        bottom: -3px;
        height: 2px;
    }
    
    .thumbnail-item.active::after {
        width: 70%;
    }
    
    /* Center the thumbnails container on mobile */
    .game-thumbnails {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Container adjustments for mobile */
    .games-slider-container {
        padding: 2rem 1rem;
        background: none;
    }
    
    /* Additional mobile improvements */
    .slider-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .slider-header .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .language-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .slider-slogan {
        text-align: center;
        padding: 1rem;
        margin-top: 1.5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .slider-slogan p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Privacy Policy Mobile Responsive */
    .privacy-content {
        padding: 2rem;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .privacy-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem 0;
    }
    
    .privacy-content h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .privacy-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-section p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* Terms & Conditions Mobile Responsive */
    .terms-content {
        padding: 2rem;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .terms-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem 0;
    }
    
    .terms-content h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .terms-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .terms-content .clause {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .terms-content .table-of-contents {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .terms-content .table-of-contents li {
        padding: 0.4rem 0.8rem;
    }
    
    /* Disclaimer Mobile Responsive */
    .disclaimer-content {
        padding: 2rem;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .disclaimer-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem 0;
    }
    
    .disclaimer-content h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .disclaimer-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .disclaimer-content .warning-box,
    .disclaimer-content .risk-notice,
    .disclaimer-content .important-info,
    .disclaimer-content .legal-note,
    .disclaimer-content .acknowledgment {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .disclaimer-content .acknowledgment {
        text-align: left;
    }
    
    .disclaimer-content .acknowledgment::before {
        left: 20px;
        transform: none;
    }
    
    /* Support Page Mobile Responsive */
    .support-overview h2 {
        font-size: 2rem;
    }
    
    .support-overview p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .support-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .support-stat {
        padding: 1.5rem;
    }
    
    .support-stat h3 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .support-channels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-channel {
        padding: 1.5rem;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .issue-category {
        padding: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .support-hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-hours-card {
        padding: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Support Page Specific Styling */
.support-overview-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
    padding: 5rem 0;
}

.support-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.support-overview {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.support-overview h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.support-overview p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.support-stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.support-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-stat h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.support-stat p {
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Support Channels Section */
.support-channels-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

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

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

.support-channel {
    background: linear-gradient(135deg, rgba(29, 205, 159, 0.05) 0%, rgba(22, 153, 118, 0.05) 100%);
    border: 1px solid rgba(29, 205, 159, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 205, 159, 0.1) 0%, rgba(22, 153, 118, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.support-channel:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(29, 205, 159, 0.2);
}

.support-channel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.support-channel h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.support-channel p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.support-channel .btn {
    position: relative;
    z-index: 2;
}

/* Common Issues Section */
.common-issues-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
}

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

.issue-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 153, 118, 0.1);
}

.issue-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.issue-category h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.issue-category h3::before {
    content: '🔧';
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.issue-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.issue-category li {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.issue-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Support Process Section */
.support-process-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.process-step {
    background: linear-gradient(135deg, rgba(22, 153, 118, 0.05) 0%, rgba(29, 205, 159, 0.05) 100%);
    border: 1px solid rgba(22, 153, 118, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(22, 153, 118, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Support Hours Section */
.support-hours-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

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

.support-hours-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 205, 159, 0.1);
}

.support-hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.support-hours-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.support-hours-card p {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.support-hours-card strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Contact Support Section */
.contact-support-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-support-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.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-support-section .container {
    position: relative;
    z-index: 2;
}

.contact-support-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-support-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.contact-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.contact-buttons .btn-primary:hover {
    background: #f8f9fa;
}

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