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

:root {
    --primary-color: #10439F;
    --secondary-color: #874CCC;
    --accent-color: #C65BCF;
    --highlight-color: #F27BBD;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a0a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

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

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

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

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-register {
    background: var(--secondary-color);
    color: var(--text-light);
}

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

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-login-large, .btn-register-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    margin: 1rem 0.5rem;
}

.btn-login-large {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.btn-login-large:hover {
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.logo {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.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;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

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

/* Hero Section */
.hero-section {
    padding: 0;
    background: linear-gradient(135deg, rgba(16, 67, 159, 0.8), rgba(135, 76, 204, 0.8), rgba(198, 91, 207, 0.6)), url('../images/nn-games-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.hero-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.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 67, 159, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: heroParticles 20s linear infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes heroParticles {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem 0;
    animation: heroContentFadeIn 1.5s ease-out;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTitleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: heroSubtitleFadeIn 2s ease-out 0.5s both;
}

@keyframes heroSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroActionsFadeIn 2.5s ease-out 1s both;
}

@keyframes heroActionsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-actions .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-actions .btn:hover::before {
    left: 100%;
}

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

.hero-image {
    text-align: center;
    margin-top: 2rem;
}

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

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

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

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

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

    /* Mobile Optimized Transitions */
    .feature-card,
    .category-card,
    .game-card,
    .channel-card,
    .issue-item,
    .resource-card,
    .team-member,
    .stat-item,
    .provider-card,
    .feature-item {
        transition: all 0.2s ease;
    }

    .feature-card:hover,
    .category-card:hover,
    .game-card:hover,
    .channel-card:hover,
    .issue-item:hover,
    .resource-card:hover,
    .team-member:hover,
    .stat-item:hover,
    .provider-card:hover,
    .feature-item:hover {
        transform: translateY(-3px);
    }

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(16, 67, 159, 0.3);
    transition: var(--transition);
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: var(--transition);
}

.feature-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(16, 67, 159, 0.4);
}

.feature-icon:hover::before {
    opacity: 1;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.feature-icon:hover img {
    transform: scale(1.1);
}

/* Login and Register Sections */
.login-section {
    padding: 80px 0;
    color: var(--text-light);
}

.register-section {
    padding: 80px 0;
    color: var(--highlight-color);
}

.login-section {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
}

.register-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

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

.login-section .login-content {
    text-align: left;
    margin: 0;
}

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

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

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

.login-note, .register-note {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.9;
}

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

.register-images img {
    max-width: 300px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.register-images img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.page-header::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%);
    pointer-events: none;
}

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

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.company-story, .mission-vision, .core-values, .team-section, .achievements, .future-plans {
    padding: 80px 0;
    background: var(--text-light);
    position: relative;
}

.company-story:nth-child(even), .mission-vision:nth-child(even), .core-values:nth-child(even), .team-section:nth-child(even), .achievements:nth-child(even), .future-plans:nth-child(even) {
    background: var(--bg-light);
}

.story-content, .mission-content, .plans-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2, .mission-content h2, .plans-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.story-content p, .mission-content p, .plans-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px 20px 0 0;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.15);
    border-color: var(--primary-color);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2.5rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(16, 67, 159, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(16, 67, 159, 0.4);
}

.value-card:hover .value-icon::before {
    opacity: 1;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

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

.team-member {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(16, 67, 159, 0.2);
}

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

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

.achievement-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(16, 67, 159, 0.2);
}

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

.plans-actions .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(16, 67, 159, 0.2);
    transition: all 0.3s ease;
}

    .plans-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 67, 159, 0.3);
}

/* Enhanced About Page Styles */
.company-story,
.mission-vision,
.core-values,
.team-section,
.achievements,
.future-plans {
    position: relative;
    overflow: hidden;
}

.company-story::before,
.mission-vision::before,
.core-values::before,
.team-section::before,
.achievements::before,
.future-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.story-content,
.mission-content,
.plans-content {
    position: relative;
    z-index: 2;
}

.story-content h2,
.mission-content h2,
.plans-content h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.value-card {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
}

.value-icon {
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover .value-icon::before {
    opacity: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.4);
}

.team-member {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px 16px 0 0;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.2);
}

.achievement-item {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px 16px 0 0;
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.2);
}

    .privacy-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

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

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

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

/* Games Page Styles */
.game-categories {
    padding: 80px 0;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

.game-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.game-categories .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.category-card {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px 25px 0 0;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
}

.category-card img {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.category-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.game-count {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.featured-games,
.popular-games,
.new-games {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.featured-games {
    background: var(--text-light);
}

.popular-games {
    background: var(--bg-light);
}

.new-games {
    background: var(--text-light);
}

.featured-games::before,
.popular-games::before,
.new-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.featured-games .section-title,
.popular-games .section-title,
.new-games .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.popular-grid,
.new-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.featured-game {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: row;
    min-height: 400px;
}

.game-item,
.new-game {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    backdrop-filter: blur(10px);
}

/* New Game Badge */
.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced New Game Image Styling */
.new-game img {
    border-radius: 20px 20px 0 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--highlight-color));
    opacity: 0;
    transition: all 0.3s ease;
}

.game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
}

.featured-game:hover::before,
.game-item:hover::before {
    opacity: 1;
}

.featured-game:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 30px 80px rgba(16, 67, 159, 0.25);
}

.game-item:hover,
.new-game:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
}

.featured-game img {
    width: 45%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.game-item img,
.new-game img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.game-item:hover img,
.new-game:hover img {
    transform: scale(1.05);
}

.featured-game .game-info {
    padding: 3rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-item .game-info {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.featured-game .game-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-item .game-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 800;
}

.game-info p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.feature {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.rtp,
.volatility {
    background: rgba(16, 67, 159, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-providers {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.game-providers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.game-providers .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.provider-card {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px 25px 0 0;
}

.provider-card:hover::before {
    opacity: 1;
}

.provider-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
}

.provider-card img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.provider-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

/* Game Features Section */
.game-features-section {
    padding: 80px 0;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

/* Game Features Icons */
.game-features .feature-icon i {
    font-size: 3.0rem;
    color: var(--bg-light);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    display: block;
}

.game-features .feature-item:hover .feature-icon i {
    color: var(--highlight-color);
    transform: scale(1.2);
}

.game-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.game-features-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px 25px 0 0;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

    .feature-item p {
        color: var(--text-muted);
        line-height: 1.7;
        font-size: 1.05rem;
        position: relative;
        z-index: 2;
    }

/* Games CTA Section */
.games-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.games-cta::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.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--text-light);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 500;
}

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

.cta-actions .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-actions .btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
    border: 3px solid var(--text-light);
}

.cta-actions .btn-primary:hover {
    background: transparent;
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-actions .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 3px solid var(--text-light);
}

.cta-actions .btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-features {
    padding: 80px 0;
    background: var(--text-light);
}

/* Enhanced Game Card Styles */
.game-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--highlight-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px 16px 0 0;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.25);
}

.game-card img {
    transition: all 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.game-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

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

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

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

.games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    flex: 0 1 280px;
    max-width: 320px;
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.25);
    border-color: var(--primary-color);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--highlight-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px 16px 0 0;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.game-card:hover::after {
    opacity: 1;
}



.game-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 250px;
}

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

.game-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.game-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    position: relative;
    z-index: 2;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px 20px 0 0;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.15);
    border-color: var(--primary-color);
}

.benefit-item h3 {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

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

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

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

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(16, 67, 159, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(135, 76, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--text-light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.15);
    border-color: var(--primary-color);
}

.testimonial-card::after {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    position: absolute;
    top: -15px;
    left: 25px;
    font-family: serif;
    opacity: 0.3;
    transition: var(--transition);
}

.testimonial-card:hover::after {
    opacity: 0.6;
    transform: scale(1.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.testimonial-author {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

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

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

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

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

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.stats-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%);
    pointer-events: none;
}

.stats-grid {
    position: relative;
    z-index: 2;
}

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

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px 20px 0 0;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

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

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

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

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--text-light);
    text-align: center;
}

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

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

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

.footer-section h3, .footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

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

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

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

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
}

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

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

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Mobile Hero Section Background */
    .hero-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        min-height: 80vh;
    }

    /* Mobile Optimized Transitions */
    .hero-section::before,
    .hero-section::after {
        animation-duration: 4s;
    }

    .hero-title {
        animation-duration: 1.5s;
    }

    .hero-subtitle {
        animation-duration: 1s;
        animation-delay: 0.3s;
    }

    .hero-actions {
        animation-duration: 1.2s;
        animation-delay: 0.6s;
    }

    .hero-actions .btn {
        transition: all 0.2s ease;
    }

    .hero-actions .btn:hover {
        transform: translateY(-3px) scale(1.02);
    }

    /* Tablet Hero Section */
    @media (min-width: 768px) and (max-width: 1024px) {
        .hero-section {
            background-attachment: scroll;
            min-height: 90vh;
        }
        
        .hero-section::before,
        .hero-section::after {
            animation-duration: 6s;
        }
        
        .hero-title {
            animation-duration: 2s;
        }
        
        .hero-subtitle {
            animation-duration: 1.5s;
            animation-delay: 0.4s;
        }
        
        .hero-actions {
            animation-duration: 1.8s;
            animation-delay: 0.8s;
        }
        
        .hero-actions .btn {
            transition: all 0.3s ease;
        }
    }

    /* Large Desktop Hero Section */
    @media (min-width: 1200px) {
        .hero-section {
            background-attachment: fixed;
            min-height: 100vh;
        }
        
        .hero-section::before,
        .hero-section::after {
            animation-duration: 8s;
        }
        
        .hero-title {
            animation-duration: 3s;
        }
        
        .hero-subtitle {
            animation-duration: 2s;
            animation-delay: 0.5s;
        }
        
        .hero-actions {
            animation-duration: 2.5s;
            animation-delay: 1s;
        }
        
        .hero-actions .btn {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
    }

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

    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .games-grid {
        justify-content: center;
    }

    .game-card {
        flex: 0 1 100%;
        max-width: 100%;
    }

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

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

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .register-images {
        flex-direction: column;
        gap: 1.5rem;
    }

    .register-images img {
        max-width: 100%;
    }
}

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

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

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

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .story-content h2, .mission-content h2, .plans-content h2 {
        font-size: 2rem;
    }

    .story-content p, .mission-content p, .plans-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .values-grid, .team-grid, .achievements-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-container {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 20px;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
    }

    .contact-icon img {
        width: 40px;
        height: 40px;
    }

    .contact-icon i {
        font-size: 2.5rem;
    }

    .contact-card h3 {
        font-size: 1.6rem;
    }

    .contact-card p {
        font-size: 1.1rem;
    }

    .contact-link {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }

    .emergency-content h2 {
        font-size: 2.5rem;
    }

    .emergency-content p {
        font-size: 1.1rem;
    }

    .emergency-number .btn {
        font-size: 1.4rem;
        padding: 1.2rem 2.5rem;
    }

    .support-categories .section-title {
        font-size: 2.2rem;
    }

    .contact-form h2 {
        font-size: 2.2rem;
    }

    .category-item {
        padding: 2rem 1.5rem;
    }

    .category-item h3 {
        font-size: 1.4rem;
    }

    /* Support Page Mobile Styles */
    .support-overview .overview-content h2 {
        font-size: 2.2rem;
    }

    .support-channels .section-title,
    .common-issues .section-title {
        font-size: 2.2rem;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .channel-card {
        padding: 2rem 1.5rem;
    }

    .channel-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .issues-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .issue-item {
        padding: 2rem 1.5rem;
    }

    /* Games Page Mobile Styles */
    .game-categories .section-title,
    .featured-games .section-title,
    .popular-games .section-title,
    .new-games .section-title,
    .game-providers .section-title,
    .game-features-section .section-title {
        font-size: 2.2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-card {
        padding: 2rem 1.5rem;
    }

    .category-card img {
        width: 120px;
        height: 120px;
    }

    .featured-grid {
        gap: 2rem;
    }

    .popular-grid,
    .new-games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-game,
    .game-item,
    .new-game {
        margin: 0 1rem;
    }

    .game-info {
        padding: 2rem 1.5rem;
    }

    .providers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .provider-card {
        padding: 2rem 1.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    /* Global Mobile Transition Optimization */
    * {
        transition-duration: 0.2s !important;
        transition-timing-function: ease !important;
    }

    /* Preserve specific animations */
    .hero-section::before,
    .hero-section::after,
    .hero-title,
    .hero-subtitle,
    .hero-actions {
        transition-duration: unset !important;
    }

    /* Game Features Mobile Icon Styles */
    .game-features .feature-icon i {
        font-size: 2.8rem;
    }

    /* Games CTA Mobile Styles */
    .games-cta .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    /* Support Resources Mobile Styles */
    .support-resources .section-title {
        font-size: 2.2rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resource-card {
        padding: 2rem 1.5rem;
    }

    /* Support Team Mobile Styles */
    .support-team .section-title {
        font-size: 2.2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member {
        padding: 2rem 1.5rem;
    }

    /* Support Stats Mobile Styles */
    .support-stats .section-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

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

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-muted: #000000;
        --border-color: #000000;
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: var(--border-color);
    color: var(--text-light);
    position: relative;
}

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

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

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.contact-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.contact-icon i {
    font-size: 3.5rem;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.contact-card:hover .contact-icon img {
    transform: scale(1.05);
}

.contact-card:hover .contact-icon i {
    transform: scale(1.1);
    color: var(--highlight-color);
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.contact-link:hover {
    color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.response-time {
    font-size: 1rem;
    opacity: 0.85;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light), #f8f9fa);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(16, 67, 159, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(135, 76, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--text-light);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(16, 67, 159, 0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 3px solid var(--border-color);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(16, 67, 159, 0.15);
    transform: translateY(-2px);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(16, 67, 159, 0.05);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: rgba(16, 67, 159, 0.1);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--primary-color);
}

.support-categories {
    padding: 100px 0;
    background: var(--text-light);
    position: relative;
}

.support-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.support-categories .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.category-item {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px 25px 0 0;
}

.category-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.category-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
    border-color: var(--primary-color);
}

.category-item:hover::before {
    opacity: 1;
}

.category-item:hover::after {
    opacity: 1;
}

.category-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.category-item p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.category-item ul {
    text-align: left;
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.category-item li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

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

.emergency-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.emergency-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.emergency-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-number {
    margin-top: 3rem;
}

.emergency-number .btn {
    font-size: 1.8rem;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    transition: all 0.3s ease;
}

.emergency-number .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.emergency-number p {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* FAQ Page Styles */
.faq-search {
    padding: 80px 0;
    background: var(--bg-light);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.search-container input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.1rem;
}

.faq-categories {
    padding: 60px 0;
    background: var(--text-light);
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    background: var(--text-light);
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.faq-content {
    padding: 60px 0;
    background: var(--bg-light);
}

.faq-category {
    display: none;
}

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

.faq-item {
    background: var(--text-light);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--text-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Enhanced FAQ Page Styles */
.faq-search {
    position: relative;
    overflow: hidden;
}

.faq-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(16, 67, 159, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(135, 76, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.search-container input {
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-container input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(16, 67, 159, 0.15);
    transform: translateY(-2px);
}

.categories-tabs {
    position: relative;
    z-index: 2;
}

.tab-btn {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    opacity: 1;
}

.tab-btn:hover,
.tab-btn.active {
    border-color: transparent;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 67, 159, 0.2);
}

.faq-item {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(16, 67, 159, 0.15);
    border-color: var(--primary-color);
}

.faq-question {
    position: relative;
    z-index: 2;
}

.faq-question h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.toggle-icon {
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-answer {
    position: relative;
    z-index: 2;
    background: rgba(16, 67, 159, 0.02);
    border-radius: 0 0 10px 10px;
    margin-top: 0.5rem;
}

/* Support Page Styles */
.support-overview {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.support-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.overview-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.overview-content h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.overview-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-channels {
    padding: 80px 0;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

.support-channels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.support-channels .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.channel-card {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px 25px 0 0;
}

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

.channel-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.2);
}

.channel-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.channel-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    opacity: 0;
    transition: var(--transition);
}

.channel-card:hover .channel-icon::before {
    opacity: 1;
}

.channel-card:hover .channel-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.channel-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.channel-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.channel-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.channel-card li {
    color: var(--text-dark);
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

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

.channel-card .btn {
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.channel-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 67, 159, 0.3);
}

.common-issues {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.common-issues::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.common-issues .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.issue-item {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.issue-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.issue-item:hover::before {
    opacity: 1;
}

.issue-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
}

.issue-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.issue-item p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.issue-item ul {
    color: var(--text-muted);
    line-height: 1.7;
    margin-left: 1.5rem;
    position: relative;
    z-index: 2;
}

.issue-item li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Support Resources Section */
.support-resources {
    padding: 80px 0;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

.support-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.support-resources .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.resource-card {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px 25px 0 0;
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.resource-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.resource-card .btn {
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.resource-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 67, 159, 0.3);
}

/* Support Team Section */
.support-team {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.support-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.support-team .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.team-member {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px 25px 0 0;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.team-member p:first-of-type {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.team-member p:last-of-type {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Support Statistics Section */
.support-stats {
    padding: 80px 0;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

.support-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.support-stats .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: linear-gradient(145deg, var(--text-light), #f8f9fa);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 25px 25px 0 0;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(16, 67, 159, 0.15);
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.stat-item p:first-of-type {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.stat-item p:last-of-type {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Support Page Styles */
.support-overview {
    position: relative;
    overflow: hidden;
}

.support-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.overview-content h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.channel-card {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px 20px 0 0;
}

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

.channel-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.2);
}

.channel-icon {
    position: relative;
    overflow: hidden;
}

.channel-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.channel-card:hover .channel-icon::before {
    opacity: 1;
}

.channel-card:hover .channel-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.terms-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.terms-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul {
    color: var(--text-muted);
    line-height: 1.7;
    margin-left: 1.5rem;
}

/* Enhanced Terms & Conditions Styles */
.terms-content {
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 67, 159, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 76, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.terms-section {
    position: relative;
    z-index: 2;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px 16px 0 0;
}

.terms-section:hover::before {
    opacity: 1;
}

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 67, 159, 0.15);
}

.terms-section h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.terms-actions {
    position: relative;
    z-index: 2;
}

.terms-actions .btn {
    border-radius: 25px;
    transition: all 0.3s ease;
}

.terms-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 67, 159, 0.2);
}

.terms-actions {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
}

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

.page-date {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 1rem;
}

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

.disclaimer-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-section h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.disclaimer-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.disclaimer-section ul {
    color: var(--text-muted);
    line-height: 1.7;
    margin-left: 1.5rem;
}

.disclaimer-actions {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Disclaimer Page Styles */
.disclaimer-content {
    position: relative;
    overflow: hidden;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(198, 91, 207, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 123, 189, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.disclaimer-section {
    position: relative;
    z-index: 2;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px 16px 0 0;
}

.disclaimer-section:hover::before {
    opacity: 1;
}

.disclaimer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(198, 91, 207, 0.15);
}

.disclaimer-section h2 {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.disclaimer-actions {
    position: relative;
    z-index: 2;
}

.disclaimer-actions .btn {
    border-radius: 25px;
    transition: all 0.3s ease;
}

.disclaimer-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 91, 207, 0.2);
}

/* 404 Page Styles - Clean & Simple */
.error-content {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--text-light);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.error-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px 25px 0 0;
}

.error-number {
    font-size: 10rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.error-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.error-actions {
    margin-bottom: 4rem;
}

.error-actions .btn {
    margin: 0 1rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.error-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 67, 159, 0.2);
}

.helpful-links {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.helpful-links:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.helpful-links h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}

.helpful-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.helpful-links li {
    margin-bottom: 0.5rem;
}

.helpful-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    background: var(--text-light);
    border: 2px solid transparent;
}

.helpful-links a:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 67, 159, 0.2);
}

.search-section {
    padding: 3rem 2.5rem;
    background: var(--text-light);
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.search-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.search-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}

.search-box {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 3px solid var(--border-color);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(16, 67, 159, 0.15);
    transform: translateY(-2px);
    outline: none;
}

.search-box .btn {
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.search-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 67, 159, 0.2);
}



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

.privacy-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 67, 159, 0.15);
}

.privacy-section:hover::before {
    opacity: 1;
}

.privacy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.privacy-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.privacy-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.privacy-section ul {
    color: var(--text-muted);
    line-height: 1.7;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

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

.privacy-actions {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.privacy-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 67, 159, 0.2);
}

/* Print styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .nav-toggle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section {
        background: white;
        color: black;
    }
}
