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

:root {
    --primary-green: #04610d;
    --secondary-green: #08a506;
    --accent-green: #9BEC00;
    --highlight-yellow: #c4fd8f;
    --dark-bg: #0a0a0a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --text-muted: #666;
    --border-color: #e0e0e0;
    --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(--text-dark);
    background-color: var(--light-bg);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-green);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

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

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */
.nav-desktop .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover,
.nav-link:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--highlight-yellow);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}

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

.btn-login:hover,
.btn-login:focus {
    background-color: var(--text-light);
    color: var(--primary-green);
}

.btn-register {
    background-color: var(--accent-green);
    color: var(--text-dark);
}

.btn-register:hover,
.btn-register:focus {
    background-color: var(--highlight-yellow);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 146, 18, 0.4);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--primary-green);
    color: var(--text-light);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    background-color: var(--primary-green);
    padding: 1rem 0;
}

.nav-mobile-list {
    list-style: none;
    padding: 0 20px;
}

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

.nav-mobile-list .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Section Styles */
section {
    padding: 4rem 0;
}

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

.highlight {
    color: var(--primary-green);
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--highlight-yellow) 100%);
    padding: 6rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

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

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

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

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

.feature-icon img {
    margin-bottom: 1rem;
}

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

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

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.register-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.login-section-content,
.register-section-content {
    text-align: left;
}

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

.login-section-content p,
.register-section-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-login-large,
.btn-register-large {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

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

.login-section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.register-section-image {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.register-section-image img {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.register-section-image img:hover {
    transform: translateY(-5px);
}

/* Responsive design for login sections */
@media (max-width: 768px) {
    .login-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .login-section-content,
    .register-section-content {
        text-align: center;
    }
}

/* Ensure register section benefits grid doesn't interfere with layout */
.register-section .benefits-grid {
    margin: 2rem 0;
}

.register-section .benefit-item {
    margin-bottom: 1.5rem;
}

.register-section .auth-section {
    margin-top: 2rem;
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, var(--accent-green), var(--highlight-yellow));
}

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

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

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

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

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

.game-card p {
    margin: 0 1rem 1rem;
    color: var(--text-muted);
}

/* Games Slider Section - WinZO Style */
.games-slider-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 25%, var(--accent-green) 50%, var(--highlight-yellow) 75%, var(--primary-green) 100%);
    padding: 4rem 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: slider-float 15s ease-in-out infinite;
}

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

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

.slider-header .section-title {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

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

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

/* Enhanced Mobile Screen Styling */
.mobile-screen {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-screen.active {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Enhanced Thumbnail Styling */
.thumbnail-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.thumbnail-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thumbnail-item.active {
    border-color: var(--highlight-yellow);
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #06D001;
    border: none;
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(6, 208, 1, 0.3);
}

.slider-nav:hover {
    background: #059212;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(6, 208, 1, 0.5);
}

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

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

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

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

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

.mobile-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.mobile-screen {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    
    transform: scale(0.8);
    transition: all 0.3s ease;
}

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

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

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

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

.mobile-screen img {
    width: 250px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.game-balance {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* 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;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

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

.thumbnail-item.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    transform: scale(1.1);
}

.thumbnail-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    object-fit: cover;
}

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

/* Slider Slogan */
.slider-slogan {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-games-slider {
        padding: 0 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .mobile-slider-container {
        margin: 0 50px;
    }
    
    .mobile-screen img {
        width: 200px;
        height: 320px;
    }
    
    .game-thumbnails {
        gap: 0.5rem;
    }
    
    .thumbnail-icon {
        width: 50px;
        height: 50px;
    }
    
    .thumbnail-name {
        font-size: 0.7rem;
    }
    
    .slider-header .section-title {
        font-size: 2rem;
    }
}

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

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

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

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

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

.benefit-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--text-light);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

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

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

/* Stats Section */
.stats-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

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

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

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

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

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

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

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

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    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(--accent-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

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

.footer-section a:hover,
.footer-section a:focus {
    color: var(--accent-green);
}

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

.social-link {
    padding: 0.5rem 1rem;
    background-color: var(--primary-green);
    border-radius: 20px;
    transition: var(--transition);
}

.social-link:hover,
.social-link:focus {
    background-color: var(--accent-green);
    color: var(--text-dark);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-mobile.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        min-width: 100px;
        padding: 0.5rem 1rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Header Styles */
.page-header {
    
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--text-light);
    text-align: center;
    padding: 6rem 0;
    margin-top: 100px;
    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.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Content Section Styles */
.content-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.content-wrapper h2 {
    color: var(--primary-green);
    font-size: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 2px;
}

.content-wrapper h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-green);
    background: linear-gradient(90deg, rgba(155, 236, 0, 0.1), transparent);
    padding: 1rem 1.5rem;
    border-radius: 0 10px 10px 0;
}

.content-wrapper h4 {
    color: var(--secondary-green);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-wrapper h4::before {
    content: '✦';
    color: var(--accent-green);
    font-size: 1.2rem;
}

.content-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: justify;
}

.content-wrapper ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.content-wrapper li {
    margin-bottom: 1rem;
    line-height: 1.7;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(155, 236, 0, 0.05), rgba(6, 208, 1, 0.05));
    border-radius: 10px;
    border-left: 3px solid var(--accent-green);
    position: relative;
    transition: all 0.3s ease;
}

.content-wrapper li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(155, 236, 0, 1), rgba(6, 208, 1, 0.1));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-wrapper li strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* CTA Section Inline Styles */
.cta-section-inline {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section-inline::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section-inline h3 {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section-inline p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .content-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .content-wrapper h2 {
        font-size: 2.2rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.6rem;
    }
    
    .cta-section-inline {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .cta-section-inline h3 {
        font-size: 1.8rem;
    }
}

/* FAQ Styles */
.faq-category {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-green);
    background: rgba(155, 236, 0, 0.05);
    border-radius: 0 10px 10px 0;
}

.faq-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Contact Form Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 2px;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    margin: 1.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--text-light), #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(155, 236, 0, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-green);
}

.contact-method h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

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

.contact-method a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.contact-form-section {
    background: linear-gradient(135deg, var(--text-light), #f8f9fa);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(155, 236, 0, 2);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 236, 0, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.contact-form-section h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
}

.form-group label::after {
    content: ' *';
    color: #e74c3c;
    font-weight: 700;
}

.form-group label[for="priority"]::after,
.form-group label[for="newsletter"]::after {
    content: '';
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--text-light);
    color: #2c3e50;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(155, 236, 0, 0.15);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--secondary-green);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    transform: scale(1.2);
    accent-color: var(--primary-green);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Additional Contact Information Styles */
.additional-contact-info {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.additional-contact-info h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.additional-contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 2px;
}

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

.contact-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(155, 236, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-green);
}

.contact-card h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-card li {
    padding: 0.5rem 0;
    color: #2c3e50;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.contact-card li::before {
    content: '▶';
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

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

.contact-card a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* Contact Tips Section */
.contact-tips {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.contact-tips::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.contact-tips h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-tips p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.contact-tips ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.contact-tips li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-green);
    transition: all 0.3s ease;
}

.contact-tips li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-tips li strong {
    color: var(--accent-green);
    font-weight: 700;
}

/* Contact Hours Section */
.contact-hours {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-green);
}

.contact-hours h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-hours ul {
    list-style: none;
    padding: 0;
}

.contact-hours li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(155, 236, 0, 2);
    color: #2c3e50;
}

.contact-hours li:last-child {
    border-bottom: none;
}

.contact-hours li strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-tips {
        padding: 2rem;
    }
    
    .contact-tips h3 {
        font-size: 1.6rem;
    }
    
    .additional-contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

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

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

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

/* Support Team Styles */
.support-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

.department {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.department h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

.response-category {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.response-category h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

.value-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Error Page Styles */
.error-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--light-bg), var(--highlight-yellow));
    margin-top: 100px;
}

.error-number {
    font-size: 8rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.error-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin: 2rem 0;
}

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

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

.helpful-link {
    display: block;
    padding: 1rem;
    background: var(--text-light);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.helpful-link:hover {
    background: var(--primary-green);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Additional Page Styles */
.policy-footer,
.terms-footer,
.disclaimer-footer,
.about-footer,
.faq-footer,
.support-footer {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-green), var(--highlight-yellow));
    border-radius: 15px;
    text-align: center;
}

.cta-section-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--text-light);
    border-radius: 15px;
    text-align: center;
}

.cta-section-inline h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-section-inline .cta-buttons {
    margin-top: 2rem;
}

.faq-contact-buttons {
    margin: 2rem 0;
}

.support-cta {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-green), var(--highlight-yellow));
    border-radius: 15px;
    text-align: center;
}

.support-cta h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-departments,
    .response-times,
    .support-values {
        grid-template-columns: 1fr;
    }
    
    .error-number {
        font-size: 5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        margin: 0;
        padding: 20px;
    }
}

/* Enhanced Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #059212 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(155, 236, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 208, 1, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(243, 255, 144, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(155,236,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: grid-move 30s linear infinite;
}

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

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #9BEC00 50%, #F3FF90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(155, 236, 0, 0.5);
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% { filter: drop-shadow(0 0 20px rgba(155, 236, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(155, 236, 0.6)); }
}

.hero-subtitle {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fade-in-up 1s ease-out 0.3s both;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fade-in-up 1s ease-out 0.6s both;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    animation: fade-in-up 1s ease-out 0.9s both;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
}

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

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

.hero-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn:active {
    transform: translateY(-1px) scale(1.02);
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    animation: float-image 6s ease-in-out infinite;
}

@keyframes float-image {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(2deg); }
}

.hero-image img:hover {
    transform: translateY(-10px) rotateY(5deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
} 