/* Al Lyono Games - Main Stylesheet */
:root {
    --primary-color: #1A5D1A;
    --secondary-color: #F1C93B;
    --accent-color: #FBD85D;
    --light-accent: #FAE392;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

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

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

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

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

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

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

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

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

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

.btn-register:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

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

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
}

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

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

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.nav-list li {
    margin: 0 1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-800);
    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%;
}

/* Active Navigation Link Styles */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: var(--secondary-color);
    height: 3px;
    bottom: -6px;
}

/* Active Footer Link Styles */
.footer-section a.active {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nav-actions {
    display: flex;
    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(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d7a2d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    opacity: 0.1;
}

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

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

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

.hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--light-accent);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

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

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
}

/* Login & Register Sections */
.login-section,
.register-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--black);
    padding: 4rem 0;
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
}

.login-content {
    text-align: left;
    max-width: 500px;
}

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

.login-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Login Section */
@media (max-width: 768px) {
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .login-content {
        text-align: center;
        max-width: 100%;
    }
    
    .login-image img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 2rem 0;
    }
    
    .login-section .container {
        gap: 1.5rem;
    }
    
    .login-image img {
        max-width: 90%;
    }
}

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

/* Register Section Layout */
.register-section {
    position: relative;
}

.register-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
}

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

.register-image img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

/* Responsive Design for Register Section */
@media (max-width: 768px) {
    .register-section .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .register-image {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .register-image img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .register-section .container {
        gap: 1rem;
    }
    
    .register-image {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .register-image img {
        max-width: 120px;
    }
}

.login-content h2,
.register-content h2 {
    color: var(--black);
    margin-bottom: 1rem;
}

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

/* About Section */
.about-section {
    background: var(--gray-100);
}

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

.about-content h2 {
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.emoji {
    font-size: 3.5rem;
    margin-left: 0.5rem;
}

.language-badge {
    background: var(--secondary-color);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    font-size: 1.1rem;
}

/* Mobile Games Slider */
.mobile-games-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

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

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

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

/* Mobile Slider Container */
.mobile-slider-container {
    overflow: hidden;
    margin: 0 50px;
}

.mobile-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-slide {
    min-width: 100%;
    text-align: center;
    opacity: 0.3;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.mobile-screen {
    width: 280px;
    height: 500px;
    margin: 0 auto 1rem;
    border-radius: 20px;
    padding: 10px;
   
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 0 0 2px 2px;
}

.mobile-slide.active .mobile-screen {
    transform: scale(1) translateY(0);
    
}

.mobile-slide:not(.active) .mobile-screen {
    transform: scale(0.8) translateY(20px);
    
}

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

/* Game Badge */
.game-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.game-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.game-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

/* Game Thumbnails */
.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
}

.thumbnail-item:hover {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.05);
}

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

.thumbnail-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: var(--transition);
}

.thumbnail-item.active .thumbnail-icon {
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(241, 201, 59, 0.5);
}

.thumbnail-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}

/* Slider Slogan */
.slider-slogan {
    text-align: center;
    margin-top: 3rem;
}

.slider-slogan p {
    font-size: 1.2rem;
    color: var(--light-accent);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

.game-card h3 {
    margin: 1.5rem 0 1rem;
}

.game-card p {
    margin-bottom: 1.5rem;
}

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

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

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

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

/* Testimonials Section */
.testimonials-section {
    background: var(--gray-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: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: serif;
    line-height: 1;
}

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

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

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

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

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

.stat-item p {
    color: var(--light-accent);
    font-size: 1.1rem;
    font-weight: 500;
}

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

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

.cta-content p {
    color: var(--gray-800);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-600);
    color: var(--gray-300);
}

/* Slider Transition Animations */
.slide-out {
    animation: slideOut 0.5s ease-in-out forwards;
}

.slide-in {
    animation: slideIn 0.5s ease-in-out forwards;
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes slideIn {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading States */
.slider-loading {
    opacity: 0.7;
    pointer-events: none;
}

.slider-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        padding: 2rem;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .nav-list li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--gray-200);
    }
    
    .nav-actions .btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 60px 0;
    }

    .slider-header h2 {
        font-size: 2rem;
    }
    
    .emoji {
        font-size: 2.5rem;
    }
    
    .mobile-screen {
        width: 250px;
        height: 450px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
    
    .mobile-slider-container {
        margin: 0 30px;
    }
    
    .game-thumbnails {
        gap: 0.5rem;
    }
    
    .thumbnail-icon {
        width: 50px;
        height: 50px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section .container {
        gap: 1.5rem;
    }
    
    .hero-image img {
        max-width: 90%;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-actions {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        gap: 0.8rem;
    }
    
    .nav-actions .btn {
        max-width: 180px;
        padding: 12px 20px;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .slider-header h2 {
        font-size: 1.5rem;
    }
    
    .emoji {
        font-size: 2rem;
    }
    
    .mobile-screen {
        width: 220px;
        height: 400px;
    }
    
    .mobile-slider-container {
        margin: 0 20px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 2px;
    }
    
    .slider-nav.next {
        right: 2px;
    }
    
    .game-thumbnails {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .thumbnail-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .thumbnail-icon {
        width: 45px;
        height: 45px;
    }

    .feature-card,
    .game-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;
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #ffffff;
        --accent-color: #ffff00;
        --light-accent: #ffffff;
        --gray-600: #000000;
        --gray-800: #000000;
    }
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 1001;
    transition: top 0.3s;
}

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

/* Focus styles */
button:focus,
a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .btn,
    .hero-actions,
    .cta-actions {
        display: none;
    }

    .hero-section {
        padding: 20px 0;
        background: var(--white);
        color: var(--black);
    }

    .hero-title {
        color: var(--black);
    }

    .hero-subtitle {
        color: var(--black);
    }
} 

/* About Us Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Container paragraph styling for About page */
.about-page .container p,
.about-page .container > p {
    color: var(--primary-color);
    font-weight: 500;
}

.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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" 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 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

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

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
}

.mission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.mission-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(241, 201, 59, 0.1);
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.mission-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(241, 201, 59, 0.3);
}

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

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

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

.team-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.team-member p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.reason-item {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reason-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .story-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-grid,
    .values-grid,
    .team-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-item,
    .value-card,
    .team-member,
    .reason-item {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon img {
        width: 30px;
        height: 30px;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .story-section,
    .mission-section,
    .values-section,
    .team-section,
    .why-choose-section {
        padding: 60px 0;
    }
    
    .story-section h2,
    .mission-section h2,
    .values-section h2,
    .team-section h2,
    .why-choose-section h2 {
        font-size: 2rem;
    }
} 

/* Games Page Styles */
.game-categories-section {
    padding: 100px 0;
    background: var(--white);
}

.game-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.game-categories-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.category-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.category-content li {
    color: var(--gray-700);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

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

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

.featured-games-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-games-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

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

.featured-game {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.featured-game:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.featured-game:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.game-type {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.game-provider {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.game-info p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slots Section */
.slots-section {
    padding: 100px 0;
    background: var(--white);
}

.slots-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.slots-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.slot-game {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

.slot-game h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.slot-game p {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.slot-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.slot-features span {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Table Games Section */
.table-games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
}

.table-games-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.table-games-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.table-game-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.table-game-category h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.table-game-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

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

.game-item {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    background: var(--gray-100);
    transition: all 0.3s ease;
}

.game-item:hover {
    background: var(--light-accent);
    transform: translateY(-3px);
}

.game-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.game-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.game-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Live Dealer Section */
.live-dealer-section {
    padding: 100px 0;
    background: var(--white);
}

.live-dealer-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.live-dealer-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.live-dealer-game {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.live-dealer-game:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.live-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff4444;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

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

.live-dealer-game > div:not(.live-indicator) {
    padding: 2rem;
}

.live-dealer-game h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.live-dealer-game p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.live-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.live-features span {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Specialty Games Section */
.specialty-games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
}

.specialty-games-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.specialty-games-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.specialty-game {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.specialty-game:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.specialty-game img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 10px 25px rgba(241, 201, 59, 0.3);
}

.specialty-game h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.specialty-game p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Game Providers Section */
.game-providers-section {
    padding: 80px 0;
    background: var(--white);
}

.game-providers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.game-providers-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.provider-logo {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.provider-logo:hover {
    transform: scale(1.1);
}

.provider-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.provider-logo:hover img {
    filter: grayscale(0%);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design for Games Page */
@media (max-width: 768px) {
    .categories-grid,
    .featured-games-grid,
    .slots-grid,
    .table-games-grid,
    .live-dealer-grid,
    .specialty-games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .games-list {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card,
    .featured-game,
    .slot-game,
    .table-game-category,
    .live-dealer-game,
    .specialty-game {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .game-categories-section,
    .featured-games-section,
    .slots-section,
    .table-games-section,
    .live-dealer-section,
    .specialty-games-section {
        padding: 60px 0;
    }
    
    .game-categories-section h2,
    .featured-games-section h2,
    .slots-section h2,
    .table-games-section h2,
    .live-dealer-section h2,
    .specialty-games-section h2 {
        font-size: 2rem;
    }
    
    .category-content,
    .game-info {
        padding: 1.5rem;
    }
    
    .slot-game,
    .specialty-game {
        padding: 1.5rem;
    }
} 

/* Contact Page Styles */
.contact-page .container p,
.contact-page .container > p {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-info-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.contact-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(241, 201, 59, 0.3);
}

.contact-icon .icon {
    font-size: 2.5rem;
    color: var(--white);
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.response-time {
    background: var(--light-accent);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Support Categories Section */
.support-categories-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
}

.support-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.support-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
}

.support-category:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.support-category h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.support-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

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

.support-category li {
    color: var(--gray-600);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.support-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-preview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-preview-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.faq-item {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

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

/* Support Team Section */
.support-team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

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

.support-team-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.team-member p:first-of-type {
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.team-member p:last-of-type {
    opacity: 0.8;
    line-height: 1.5;
}

/* Response Times Section */
.response-times-section {
    padding: 100px 0;
    background: var(--white);
}

.response-times-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.response-times-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.response-time-item {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.response-time-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.response-time-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.response-time-item .time {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    display: inline-block;
}

.response-time-item p:last-of-type {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(241, 201, 59, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    color: var(--gray-600);
    line-height: 1.5;
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid,
    .support-categories-grid,
    .faq-grid,
    .team-grid,
    .response-times-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-info-section,
    .support-categories-section,
    .faq-preview-section,
    .support-team-section,
    .response-times-section,
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-info-section h2,
    .support-categories-section h2,
    .faq-preview-section h2,
    .support-team-section h2,
    .response-times-section h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .contact-card,
    .support-category,
    .faq-item,
    .team-member,
    .response-time-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
} 

/* Support Page Styles */
.support-page .container p,
.support-page .container > p {
    color: var(--primary-color);
    font-weight: 500;
}

.quick-help-section {
    padding: 100px 0;
    background: var(--white);
}

.quick-help-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-help-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.help-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.help-card:hover::before {
    transform: scaleX(1);
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.help-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(241, 201, 59, 0.3);
}

.help-icon .icon {
    font-size: 2.5rem;
    color: var(--white);
    display: block;
}

.help-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.help-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.help-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    display: inline-block;
}

.help-link:hover {
    color: var(--white);
    background: var(--secondary-color);
}

/* Help Resources Section */
.help-resources-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
}

.help-resources-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.help-resources-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.resource-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.resource-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.resource-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.resource-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.resource-card li {
    color: var(--gray-700);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.resource-card li::before {
    content: '📚';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

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

.support-channels-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-channels-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.channel-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.channel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(241, 201, 59, 0.3);
}

.channel-icon .icon {
    font-size: 2.5rem;
    color: var(--white);
    display: block;
}

.channel-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.channel-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.channel-card .response-time {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.channel-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

/* Self-Service Section */
.self-service-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.self-service-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.self-service-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

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

.tool-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.tool-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.tool-item p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Design for Support Page */
@media (max-width: 768px) {
    .quick-help-grid,
    .resources-grid,
    .channels-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-card,
    .resource-card,
    .channel-card,
    .tool-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .quick-help-section,
    .help-resources-section,
    .support-channels-section,
    .self-service-section {
        padding: 60px 0;
    }
    
    .quick-help-section h2,
    .help-resources-section h2,
    .support-channels-section h2,
    .self-service-section h2 {
        font-size: 2rem;
    }
    
    .help-card,
    .resource-card,
    .channel-card,
    .tool-item {
        padding: 1.5rem;
    }
} 

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 80px 0;
    background: var(--white);
}

.privacy-content .container {
    max-width: 900px;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.policy-section:hover::before {
    transform: scaleY(1);
}

.policy-section:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 1rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.policy-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.policy-section p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
}

.policy-section li::before {
    content: '🔒';
    position: absolute;
    left: -1.5rem;
    top: 0;
    font-size: 0.9rem;
}

.policy-section .last-updated {
    background: var(--light-accent);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 2px solid var(--secondary-color);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: var(--gray-800);
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Privacy Policy Page Specific Elements */
.privacy-content .policy-section:first-child {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.privacy-content .policy-section:first-child h2,
.privacy-content .policy-section:first-child h3,
.privacy-content .policy-section:first-child p,
.privacy-content .policy-section:first-child li {
    color: var(--white);
}

.privacy-content .policy-section:first-child h2::after {
    background: var(--accent-color);
}

.privacy-content .policy-section:first-child li::before {
    content: '🛡️';
}

/* Enhanced List Styling */
.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.policy-section li::before {
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1rem;
}

/* Section Numbering */
.policy-section h2 {
    counter-increment: section;
}

.policy-section h2::before {
    content: counter(section) '. ';
    color: var(--secondary-color);
    font-weight: 700;
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 768px) {
    .privacy-content {
        padding: 60px 0;
    }
    
    .policy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 40px 0;
    }
    
    .policy-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .policy-section p {
        font-size: 0.95rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
} 

/* Terms & Conditions Page Styles */
.terms-content {
    padding: 80px 0;
    background: var(--white);
}

.terms-content .container {
    max-width: 900px;
}

.terms-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.terms-section:hover::before {
    transform: scaleY(1);
}

.terms-section:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.terms-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    counter-increment: terms-section;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 1rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.terms-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    padding-left: 1rem;
}

.terms-section p {
    color: var(--gray-800);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    padding-left: 1rem;
}

.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.terms-section li {
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2.5rem;
}

.terms-section li::before {
    content: '📋';
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1rem;
}

.terms-section .last-updated {
    background: var(--light-accent);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 2px solid var(--secondary-color);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: var(--gray-800);
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Terms Page Specific Elements */
.terms-content .terms-section:first-child {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.terms-content .terms-section:first-child h2,
.terms-content .terms-section:first-child h3,
.terms-content .terms-section:first-child p,
.terms-content .terms-section:first-child li {
    color: var(--white);
}

.terms-content .terms-section:first-child h2::after {
    background: var(--accent-color);
}

.terms-content .terms-section:first-child li::before {
    content: '📜';
}

/* Enhanced Section Styling */
.terms-section:nth-child(even) {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
}

.terms-section:nth-child(even):hover {
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--white) 100%);
}

/* Section Numbering */
.terms-section h2::before {
    content: counter(terms-section) '. ';
    color: var(--secondary-color);
    font-weight: 700;
}

/* Special Terms Sections */
.terms-section:nth-child(7) {
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--secondary-color) 100%);
}

.terms-section:nth-child(7) h2,
.terms-section:nth-child(7) h3 {
    color: var(--primary-color);
}

.terms-section:nth-child(7) li::before {
    content: '🎮';
}

.terms-section:nth-child(10) {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.terms-section:nth-child(10) h2,
.terms-section:nth-child(10) h3,
.terms-section:nth-child(10) p,
.terms-section:nth-child(10) li {
    color: var(--white);
}

.terms-section:nth-child(10) li::before {
    content: '⚠️';
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-content {
        padding: 60px 0;
    }
    
    .terms-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 40px 0;
    }
    
    .terms-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .terms-section p {
        font-size: 0.95rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
} 

/* Disclaimer Page Styles */
.disclaimer-content {
    padding: 80px 0;
    background: var(--white);
}

.disclaimer-content .container {
    max-width: 900px;
}

.disclaimer-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.disclaimer-section:hover::before {
    transform: scaleY(1);
}

.disclaimer-section:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.disclaimer-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    counter-increment: disclaimer-section;
}

.disclaimer-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 1rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.disclaimer-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    padding-left: 1rem;
}

.disclaimer-section p {
    color: var(--gray-800);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    padding-left: 1rem;
}

.disclaimer-section ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.disclaimer-section li {
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2.5rem;
}

.disclaimer-section li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1rem;
}

.disclaimer-section .last-updated {
    background: var(--light-accent);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Disclaimer Page Specific Elements */
.disclaimer-content .disclaimer-section:first-child {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.disclaimer-content .disclaimer-section:first-child h2,
.disclaimer-content .disclaimer-section:first-child h3,
.disclaimer-content .disclaimer-section:first-child p,
.disclaimer-content .disclaimer-section:first-child li {
    color: var(--white);
}

.disclaimer-content .disclaimer-section:first-child h2::after {
    background: var(--accent-color);
}

.disclaimer-content .disclaimer-section:first-child li::before {
    content: '📋';
}

/* Enhanced Section Styling */
.disclaimer-section:nth-child(even) {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
}

.disclaimer-section:nth-child(even):hover {
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--white) 100%);
}

/* Section Numbering */
.disclaimer-section h2::before {
    content: counter(disclaimer-section) '. ';
    color: var(--secondary-color);
    font-weight: 700;
}

/* Special Disclaimer Sections */
.disclaimer-section:nth-child(2) {
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--secondary-color) 100%);
}

.disclaimer-section:nth-child(2) h2,
.disclaimer-section:nth-child(2) h3 {
    color: var(--primary-color);
}

.disclaimer-section:nth-child(2) li::before {
    content: '🎰';
}

.disclaimer-section:nth-child(3) {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.disclaimer-section:nth-child(3) h2,
.disclaimer-section:nth-child(3) h3,
.disclaimer-section:nth-child(3) p,
.disclaimer-section:nth-child(3) li {
    color: var(--white);
}

.disclaimer-section:nth-child(3) li::before {
    content: '⚖️';
}

.disclaimer-section:nth-child(4) {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--light-accent) 100%);
}

.disclaimer-section:nth-child(4) h2,
.disclaimer-section:nth-child(4) h3 {
    color: var(--primary-color);
}

.disclaimer-section:nth-child(4) li::before {
    content: '💰';
}

.disclaimer-section:nth-child(5) {
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--primary-color) 100%);
}

.disclaimer-section:nth-child(5) h2,
.disclaimer-section:nth-child(5) h3,
.disclaimer-section:nth-child(5) p,
.disclaimer-section:nth-child(5) li {
    color: var(--white);
}

.disclaimer-section:nth-child(5) li::before {
    content: '💻';
}

.disclaimer-section:nth-child(6) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-accent) 100%);
}

.disclaimer-section:nth-child(6) h2,
.disclaimer-section:nth-child(6) h3 {
    color: var(--white);
}

.disclaimer-section:nth-child(6) li::before {
    content: '📝';
}

.disclaimer-section:nth-child(7) {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.disclaimer-section:nth-child(7) h2,
.disclaimer-section:nth-child(7) h3,
.disclaimer-section:nth-child(7) p,
.disclaimer-section:nth-child(7) li {
    color: var(--white);
}

.disclaimer-section:nth-child(7) li::before {
    content: '🏥';
}

.disclaimer-section:nth-child(8) {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.disclaimer-section:nth-child(8) h2,
.disclaimer-section:nth-child(8) h3 {
    color: var(--primary-color);
}

.disclaimer-section:nth-child(8) li::before {
    content: '🛡️';
}

.disclaimer-section:nth-child(9) {
    background: linear-gradient(135deg, var(--light-accent) 0%, var(--accent-color) 100%);
}

.disclaimer-section:nth-child(9) h2,
.disclaimer-section:nth-child(9) h3 {
    color: var(--primary-color);
}

.disclaimer-section:nth-child(9) li::before {
    content: '⚡';
}

.disclaimer-section:nth-child(10) {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-accent) 100%);
}

.disclaimer-section:nth-child(10) h2,
.disclaimer-section:nth-child(10) h3 {
    color: var(--primary-color);
}

.disclaimer-section:nth-child(10) li::before {
    content: '🔧';
}

.disclaimer-section:nth-child(11) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.disclaimer-section:nth-child(11) h2,
.disclaimer-section:nth-child(11) h3,
.disclaimer-section:nth-child(11) p,
.disclaimer-section:nth-child(11) li {
    color: var(--white);
}

.disclaimer-section:nth-child(11) li::before {
    content: '📞';
}

.disclaimer-section:nth-child(12) {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.disclaimer-section:nth-child(12) h2,
.disclaimer-section:nth-child(12) h3,
.disclaimer-section:nth-child(12) p,
.disclaimer-section:nth-child(12) li {
    color: var(--white);
}

.disclaimer-section:nth-child(12) li::before {
    content: '✅';
}

/* Contact Info Styling for Disclaimer */
.disclaimer-content .contact-info {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--light-accent) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 2px solid var(--secondary-color);
}

.disclaimer-content .contact-info p {
    margin-bottom: 0.8rem;
    color: var(--gray-800);
}

.disclaimer-content .contact-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

.disclaimer-content .contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.disclaimer-content .contact-info a:hover {
    color: var(--primary-color);
}

/* Warning Icons for Different Content Types */
.disclaimer-section:nth-child(2) li::before {
    content: '🎰'; /* Gaming and Gambling */
}

.disclaimer-section:nth-child(3) li::before {
    content: '⚖️'; /* Legal and Regulatory */
}

.disclaimer-section:nth-child(4) li::before {
    content: '💰'; /* Financial */
}

.disclaimer-section:nth-child(5) li::before {
    content: '💻'; /* Technical */
}

.disclaimer-section:nth-child(6) li::before {
    content: '📝'; /* Content and Information */
}

.disclaimer-section:nth-child(7) li::before {
    content: '🏥'; /* Health and Safety */
}

.disclaimer-section:nth-child(8) li::before {
    content: '🛡️'; /* Limitation of Liability */
}

.disclaimer-section:nth-child(9) li::before {
    content: '⚡'; /* Indemnification */
}

.disclaimer-section:nth-child(10) li::before {
    content: '🔧'; /* Force Majeure */
}

.disclaimer-section:nth-child(11) li::before {
    content: '📞'; /* Contact Information */
}

.disclaimer-section:nth-child(12) li::before {
    content: '✅'; /* Acknowledgment */
}

/* Responsive Design for Disclaimer Page */
@media (max-width: 768px) {
    .disclaimer-content {
        padding: 60px 0;
    }
    
    .disclaimer-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .disclaimer-section h2 {
        font-size: 1.5rem;
    }
    
    .disclaimer-section h3 {
        font-size: 1.2rem;
    }
    
    .disclaimer-content .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-content {
        padding: 40px 0;
    }
    
    .disclaimer-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .disclaimer-section h2 {
        font-size: 1.3rem;
    }
    
    .disclaimer-section h3 {
        font-size: 1.1rem;
    }
    
    .disclaimer-section p {
        font-size: 0.95rem;
    }
    
    .disclaimer-content .contact-info {
        padding: 1rem;
    }
} 

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

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

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