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

:root {
    --primary-color: #19A7CE;
    --secondary-color: #146C94;
    --accent-color: #AFD3E2;
    --light-color: #F6F1F1;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow);
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-color);
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 100%;
    height: auto;
    padding: 1rem;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

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

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(25, 167, 206, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-icon:hover::before {
    transform: translateX(100%);
}

.feature-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 25px 50px rgba(25, 167, 206, 0.5);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-icon:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--white);
}

/* Feature Icon Glow Effect */
.feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 3s linear infinite;
}

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

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

/* Feature Icon Pulse Animation */
.feature-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(25, 167, 206, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(25, 167, 206, 0.4);
    }
}

.feature-icon:hover {
    animation: none;
}

/* Feature Icon Floating Effect */
.feature-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.feature-icon:hover {
    animation: none;
}

/* Feature Icon Sparkle Effect */
.feature-icon::before {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.feature-icon:hover::before {
    opacity: 1;
    transform: scale(1.2) rotate(15deg);
}

/* Feature Icon Neon Border on Hover */
.feature-icon:hover {
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) padding-box,
                linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color)) border-box;
    box-shadow: 
        0 0 20px rgba(25, 167, 206, 0.5),
        0 0 40px rgba(25, 167, 206, 0.3),
        0 0 60px rgba(25, 167, 206, 0.1);
}

/* Feature Icon Magnetic Effect */
.feature-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon:hover {
    transform: translateY(-15px) scale(1.15);
}

/* Responsive design for feature icons */
@media (max-width: 768px) {
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    /* Mobile feature icon optimizations */
    .feature-icon {
        transition: all 0.2s ease !important;
        animation: iconPulse 1.5s ease-in-out infinite !important;
    }
    
    .feature-icon:hover {
        animation: none !important;
        transform: translateY(-5px) scale(1.05) !important;
    }
    
    @keyframes iconPulse {
        0%, 100% { 
            transform: scale(1);
            box-shadow: 0 15px 35px rgba(25, 167, 206, 0.3);
        }
        50% { 
            transform: scale(1.03);
            box-shadow: 0 20px 40px rgba(25, 167, 206, 0.4);
        }
    }
}

@media (max-width: 480px) {
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
}

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

/* Auth Sections */
.login-section,
.register-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.auth-container.reverse {
    direction: rtl;
}

.auth-container.reverse > * {
    direction: ltr;
}

.auth-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.auth-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

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

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

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

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

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.page-header p {
    font-size: 1.3rem;
    color: var(--light-color);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story Section */
.company-story {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="geometric" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,0 60,30 30,60 0,30" fill="none" stroke="rgba(25, 167, 206, 0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23geometric)"/></svg>');
}

.company-story::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(25, 167, 206, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.company-story .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.story-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.story-content h2 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(25, 167, 206, 0.3);
}

.story-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 167, 206, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.story-content p:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(25, 167, 206, 0.2);
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Story highlight boxes */
.story-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.story-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    min-width: 250px;
    box-shadow: 0 15px 35px rgba(25, 167, 206, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.story-highlight:hover::before {
    left: 100%;
}

.story-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(25, 167, 206, 0.4);
}

.story-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-highlight p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
}

.story-highlight p:hover {
    background: none;
    transform: none;
    box-shadow: none;
    border: none;
}

/* Responsive design for story section */
@media (max-width: 768px) {
    .company-story {
        padding: 4rem 0;
    }
    
    .story-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .story-content p {
        font-size: 1.1rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .story-highlights {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .story-highlight {
        min-width: 200px;
        padding: 1.5rem;
    }
    
    .story-highlight h3 {
        font-size: 1.3rem;
    }
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-color), var(--accent-color));
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(25, 167, 206, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

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

.mission-card h3, .vision-card h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

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

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Core Values Section */
.core-values {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.core-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(175, 211, 226, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
}

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

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

.value-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.value-icon {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(25, 167, 206, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

.value-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(25, 167, 206, 0.4);
}

.value-icon:hover::before {
    opacity: 0.2;
}

/* Icon content styling */
.value-icon i,
.value-icon svg,
.value-icon img {
    font-size: 2.5rem;
    color: var(--white);
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.value-icon:hover i,
.value-icon:hover svg,
.value-icon:hover img {
    transform: scale(1.2) rotate(5deg);
    color: var(--white);
}

/* Floating particles around icon */
.value-icon .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.value-icon .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 3s ease-in-out infinite;
}

.value-icon .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.value-icon .particle:nth-child(2) {
    top: 80%;
    right: 20%;
    animation-delay: 0.5s;
}

.value-icon .particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 1s;
}

@keyframes float-particle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1);
    }
}

/* Glow effect on hover */
.value-icon:hover {
    box-shadow: 
        0 20px 40px rgba(25, 167, 206, 0.4),
        0 0 30px rgba(25, 167, 206, 0.3),
        0 0 60px rgba(25, 167, 206, 0.2);
}

/* Sparkle effect */
.value-icon .sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 2s ease-in-out infinite;
}

.value-icon .sparkle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.value-icon .sparkle:nth-child(2) {
    top: 90%;
    right: 10%;
    animation-delay: 0.3s;
}

.value-icon .sparkle:nth-child(3) {
    bottom: 10%;
    left: 10%;
    animation-delay: 0.6s;
}

.value-icon .sparkle:nth-child(4) {
    top: 50%;
    right: 10%;
    animation-delay: 0.9s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Neon border effect */
.value-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    z-index: -2;
    background-size: 400% 400%;
    animation: neon-border 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes neon-border {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* 3D perspective effect */
.value-icon {
    perspective: 1000px;
}

.value-icon:hover {
    transform: translateY(-10px) scale(1.1) rotateY(5deg);
}

/* Magnetic effect */
.value-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced shadow depth */
.value-icon {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.value-icon:hover {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* Ripple effect on click */
.value-icon:active {
    transform: translateY(-5px) scale(0.95);
    transition: all 0.1s ease;
}

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

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-color), var(--white));
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.3 0,28.9 0,14.4" fill="none" stroke="rgba(25, 167, 206, 0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
}

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

.team-member {
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.team-member p {
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* Achievements Section */
.achievements-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="40" r="0.3" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

.achievement-item:hover::before {
    left: 100%;
}

.achievement-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.achievement-label {
    font-size: 1.1rem;
    color: var(--light-color);
    font-weight: 500;
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

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

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

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

.game-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--secondary-color);
}

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

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

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

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

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

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

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

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

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

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

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

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

.stat-label {
    font-size: 1.1rem;
    color: var(--light-color);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 50%, var(--light-color) 100%);
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="80" width="80" patternUnits="userSpaceOnUse"><polygon points="40,0 80,40 40,80 0,40" fill="none" stroke="rgba(25, 167, 206, 0.03)" stroke-width="1"/><circle cx="40" cy="40" r="2" fill="rgba(25, 167, 206, 0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 167, 206, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(25, 167, 206, 0.3);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-content p::before {
    
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.cta-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: 2px solid var(--primary-color);
}

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

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

.cta-buttons .btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(25, 167, 206, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.cta-buttons .btn-secondary {
    background: rgba(25, 167, 206, 0.1);
    color: var(--secondary-color);
    border: 2px solid rgba(25, 167, 206, 0.3);
    backdrop-filter: blur(10px);
}

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

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

.cta-buttons .btn-secondary:hover {
    background: rgba(25, 167, 206, 0.2);
    border-color: rgba(25, 167, 206, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(25, 167, 206, 0.3);
}

/* Enhanced pulse animation for CTA section */
@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive design for CTA section */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .cta-content p::before {
        top: -40px;
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        min-width: auto;
    }
}

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

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

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .auth-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero-container,
    .auth-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* About Page Mobile Responsiveness */
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .company-story {
        padding: 4rem 0;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-content p {
        font-size: 1.1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.75rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Animations for About Page */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.6s ease;
}

.bounce-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

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

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

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #333333;
        --accent-color: #666666;
        --light-color: #ffffff;
        --text-dark: #000000;
        --text-light: #333333;
    }
}

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

/* Contact Section Styling */
.contact-info-section,
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before,
.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(25, 167, 206, 0.05)"/><circle cx="10" cy="10" r="0.5" fill="rgba(25, 167, 206, 0.03)"/><circle cx="30" cy="30" r="0.5" fill="rgba(25, 167, 206, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
}

.contact-info-section::after,
.contact-form-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(25, 167, 206, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.form-container h2,
.support-categories h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
}

.form-container h2::after,
.support-categories h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(25, 167, 206, 0.3);
}

.form-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form Styling */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(25, 167, 206, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.contact-form::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(25, 167, 206, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.form-group {
    margin-bottom: 2.5rem;
    text-align: left;
    position: relative;
}

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

.form-group label::after {
    content: ' *';
    color: var(--primary-color);
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(25, 167, 206, 0.2);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2319A7CE' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 3rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(25, 167, 206, 0.15);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(25, 167, 206, 0.1);
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Submit button styling */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(25, 167, 206, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

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

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(25, 167, 206, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
}

/* Contact Info Styling */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(25, 167, 206, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(25, 167, 206, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(25, 167, 206, 0.2);
}

.contact-icon {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
}

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

.contact-card p {
    color: var(--text-light);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

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

.response-time {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0.5rem 0 0 0;
}

/* Checkbox styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.checkbox-label a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Contact methods grid */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* Support Categories Styling */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.category-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(25, 167, 206, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(25, 167, 206, 0.2);
}

.category-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.category-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.category-item li {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(25, 167, 206, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

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

.category-item li:last-child {
    border-bottom: none;
}

/* FAQ Preview Styling */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(25, 167, 206, 0.1);
    transition: all 0.3s ease;
}

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

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

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

/* CTA Section Styling */
.cta-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

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

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

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.contact-method {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(25, 167, 206, 0.3);
}

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

.contact-method:hover::before {
    left: 100%;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(25, 167, 206, 0.4);
}

.contact-method h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-method p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Responsive design for contact section */
@media (max-width: 768px) {
    .contact-info-section,
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .form-container h2,
    .support-categories h2 {
        font-size: 2.5rem;
    }
    
    .form-container p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .contact-form {
        padding: 2.5rem 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-item {
        padding: 2rem 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
} 

/* FAQ Page Styling */
.faq-categories {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--light-color), var(--white));
    position: relative;
    overflow: hidden;
}

.faq-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(25, 167, 206, 0.05)"/><circle cx="10" cy="10" r="0.5" fill="rgba(25, 167, 206, 0.03)"/><circle cx="40" cy="40" r="0.5" fill="rgba(25, 167, 206, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tab-button {
    background: rgba(255, 255, 255, 0.8);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: 2px solid rgba(25, 167, 206, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 167, 206, 0.1), transparent);
    transition: left 0.5s ease;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(25, 167, 206, 0.2);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(25, 167, 206, 0.3);
}

.tab-button.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(25, 167, 206, 0.4);
}

/* FAQ Content Styling */
.faq-content {
    padding: 4rem 0 8rem;
    background: var(--white);
    position: relative;
}

.faq-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-color), transparent);
}

.faq-section {
    display: none;
    animation: fadeInUp 0.6s ease;
}

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

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

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

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(25, 167, 206, 0.3);
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(25, 167, 206, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(25, 167, 206, 0.2);
}

.faq-item h3 {
    color: var(--secondary-color);
    padding: 2rem 2rem 1rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
    color: var(--accent-color);
}

.faq-item:hover h3 {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    padding: 0 2rem 2rem;
    margin: 0;
    line-height: 1.7;
    font-size: 1.1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active p {
    max-height: 200px;
    opacity: 1;
}

/* FAQ Search and Filter */
.faq-search {
    margin-bottom: 3rem;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-search input {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    border: 2px solid rgba(25, 167, 206, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(25, 167, 206, 0.15);
    background: rgba(255, 255, 255, 1);
}

.faq-search::after {
    content: '🔍';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
}

/* FAQ Stats */
.faq-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(25, 167, 206, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(25, 167, 206, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* FAQ Help Section */
.faq-help {
    background: linear-gradient(135deg, var(--light-color), var(--accent-color));
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.faq-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="help-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,0 60,30 30,60 0,30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23help-pattern)"/></svg>');
}

.help-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.help-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.help-content h2::after {
    background: linear-gradient(90deg, var(--white), rgba(255,255,255,0.7));
}

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

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

.help-buttons .btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.help-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsive FAQ Design */
@media (max-width: 768px) {
    .faq-categories {
        padding: 3rem 0 1.5rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 3rem 0 6rem;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-item h3 {
        padding: 1.5rem 1.5rem 1rem;
        font-size: 1.2rem;
    }
    
    .faq-item p {
        padding: 0 1.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .help-content h2 {
        font-size: 2rem;
    }
    
    .help-content p {
        font-size: 1.1rem;
    }
    
    .help-buttons {
        flex-direction: column;
        align-items: center;
    }
} 

/* Still Have Questions Section Styling */
.still-have-questions {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.still-have-questions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="questions-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="45" cy="45" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23questions-pattern)"/></svg>');
}

.still-have-questions::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.still-have-questions .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.still-have-questions h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.still-have-questions h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), rgba(255,255,255,0.8));
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.still-have-questions p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.still-have-questions p::before {
    content: '❓';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.contact-options .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.contact-options .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--white));
    color: var(--secondary-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

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

.contact-options .btn-primary:hover::before {
    left: 100%;
}

.contact-options .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.4);
    border-color: var(--white);
}

.contact-options .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

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

.contact-options .btn-secondary:hover::before {
    left: 100%;
}

.contact-options .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.2);
}

/* Floating animation for the question mark */
@keyframes float {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px); 
    }
    50% { 
        transform: translateX(-50%) translateY(-10px); 
    }
}

/* Responsive design for still-have-questions section */
@media (max-width: 768px) {
    .still-have-questions {
        padding: 4rem 0;
    }
    
    .still-have-questions h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .still-have-questions p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .contact-options .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Privacy Policy Page Styling */
.privacy-content {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-color), transparent);
}

.privacy-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.privacy-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(25, 167, 206, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.privacy-section:hover::before {
    transform: scaleX(1);
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(25, 167, 206, 0.2);
}

.privacy-section h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.privacy-section h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

.privacy-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.privacy-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.privacy-section li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1rem;
}

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

.privacy-section li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Last Updated Styling */
.last-updated {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(25, 167, 206, 0.3);
    position: relative;
    overflow: hidden;
}

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

.last-updated:hover::before {
    left: 100%;
}

/* Contact Info Styling */
.contact-info {
    background: rgba(25, 167, 206, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(25, 167, 206, 0.1);
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info p:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Privacy Policy Navigation */
.privacy-nav {
    background: var(--light-color);
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-nav .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.privacy-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(25, 167, 206, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.privacy-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 167, 206, 0.3);
}

/* Privacy Policy Highlights */
.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.privacy-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(25, 167, 206, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.privacy-highlight:hover::before {
    left: 100%;
}

.privacy-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(25, 167, 206, 0.4);
}

.privacy-highlight i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.privacy-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.privacy-highlight p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Privacy Policy Table of Contents */
.table-of-contents {
    background: rgba(25, 167, 206, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(25, 167, 206, 0.1);
    margin-bottom: 3rem;
}

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

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

.toc-list li {
    padding: 0;
    margin: 0;
}

.toc-list li::before {
    content: none;
}

.toc-list a {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(25, 167, 206, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.toc-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(25, 167, 206, 0.3);
}

/* Responsive design for privacy policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 4rem 0;
    }
    
    .privacy-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem;
    }
    
    .privacy-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .privacy-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .privacy-highlight {
        padding: 2rem;
    }
    
    .table-of-contents {
        padding: 2rem;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info p {
        padding: 0.6rem 0.8rem;
    }
}

/* Terms & Conditions Page Styling */
.terms-content {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-color), transparent);
}

.terms-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.terms-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(25, 167, 206, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(25, 167, 206, 0.2);
}

.terms-section h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

.terms-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.terms-section h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

.terms-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.terms-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.terms-section li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1rem;
}

.terms-section li::before {
    content: '⚖️';
    position: absolute;
    left: -1.5rem;
    top: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.terms-section li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Terms Navigation */
.terms-nav {
    background: var(--light-color);
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.terms-nav .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.terms-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(25, 167, 206, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.terms-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 167, 206, 0.3);
}

/* Terms Highlights */
.terms-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.terms-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(25, 167, 206, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.terms-highlight:hover::before {
    left: 100%;
}

.terms-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(25, 167, 206, 0.4);
}

.terms-highlight i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.terms-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.terms-highlight p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Terms Table of Contents */
.terms-toc {
    background: rgba(25, 167, 206, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(25, 167, 206, 0.1);
    margin-bottom: 3rem;
}

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

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

.terms-toc-list li {
    padding: 0;
    margin: 0;
}

.terms-toc-list li::before {
    content: none;
}

.terms-toc-list a {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(25, 167, 206, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.terms-toc-list a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(25, 167, 206, 0.3);
}

/* Important Terms Boxes */
.important-terms {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.important-terms::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    background: var(--white);
    padding: 0 10px;
}

.important-terms h4 {
    color: #d68910;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.important-terms p {
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Legal Disclaimer Boxes */
.legal-disclaimer {
    background: rgba(220, 53, 69, 0.05);
    border: 2px solid rgba(220, 53, 69, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.legal-disclaimer::before {
    content: '📋';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    background: var(--white);
    padding: 0 10px;
}

.legal-disclaimer h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.legal-disclaimer p {
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Terms Progress Indicator */
.terms-progress {
    background: var(--light-color);
    padding: 1rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(25, 167, 206, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive design for terms & conditions */
@media (max-width: 768px) {
    .terms-content {
        padding: 4rem 0;
    }
    
    .terms-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .terms-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem;
    }
    
    .terms-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .terms-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .terms-highlight {
        padding: 2rem;
    }
    
    .terms-toc {
        padding: 2rem;
    }
    
    .terms-toc-list {
        grid-template-columns: 1fr;
    }
    
    .important-terms,
    .legal-disclaimer {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .important-terms::before,
    .legal-disclaimer::before {
        font-size: 1.5rem;
        top: -12px;
        left: 15px;
    }
}

/* Disclaimer Page Styling */
.disclaimer-content {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(220, 53, 69, 0.05), transparent);
}

.disclaimer-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.disclaimer-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(220, 53, 69, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #fd7e14, #ffc107);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

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

.disclaimer-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(220, 53, 69, 0.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(220, 53, 69, 0.3);
}

.disclaimer-section h2 {
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-size: 2.3rem;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.disclaimer-section h2::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    opacity: 0.8;
}

.disclaimer-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #fd7e14);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.disclaimer-section:hover h2::after {
    width: 100px;
}

.disclaimer-section p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    position: relative;
}

.disclaimer-section p strong {
    color: #dc3545;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(220, 53, 69, 0.2);
}

.disclaimer-section ul {
    margin: 2rem 0;
    padding-left: 2.5rem;
}

.disclaimer-section li {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
}

.disclaimer-section li::before {
    content: '🚨';
    position: absolute;
    left: -2rem;
    top: 0;
    font-size: 1rem;
    opacity: 0.8;
    animation: pulse-warning 2s infinite;
}

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

.disclaimer-section li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Disclaimer Warning Boxes */
.disclaimer-warning {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    border: 3px solid rgba(220, 53, 69, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.1);
}

.disclaimer-warning::before {
    content: '🚨';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 2.5rem;
    background: var(--white);
    padding: 0 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.disclaimer-warning h4 {
    color: #dc3545;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-warning p {
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Disclaimer Alert Boxes */
.disclaimer-alert {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
    border: 3px solid rgba(255, 193, 7, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
}

.disclaimer-alert::before {
    content: '⚠️';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 2.5rem;
    background: var(--white);
    padding: 0 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.disclaimer-alert h4 {
    color: #d68910;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-alert p {
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Disclaimer Info Boxes */
.disclaimer-info {
    background: linear-gradient(135deg, rgba(25, 167, 206, 0.1), rgba(25, 167, 206, 0.05));
    border: 3px solid rgba(25, 167, 206, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(25, 167, 206, 0.1);
}

.disclaimer-info::before {
    content: 'ℹ️';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 2.5rem;
    background: var(--white);
    padding: 0 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(25, 167, 206, 0.3);
}

.disclaimer-info h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-info p {
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Disclaimer Navigation */
.disclaimer-nav {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 193, 7, 0.1));
    padding: 2.5rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
}

.disclaimer-nav .container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.disclaimer-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(220, 53, 69, 0.2);
    transition: all 0.4s ease;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.disclaimer-nav a:hover {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.4);
}

/* Disclaimer Highlights */
.disclaimer-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 5rem 0;
}

.disclaimer-highlight {
    background: linear-gradient(135deg, #dc3545, #fd7e14, #ffc107);
    color: var(--white);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.disclaimer-highlight:hover::before {
    left: 100%;
}

.disclaimer-highlight:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 35px 70px rgba(220, 53, 69, 0.5);
}

.disclaimer-highlight i {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: float-warning 3s ease-in-out infinite;
}

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

.disclaimer-highlight h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.disclaimer-highlight p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Disclaimer Table of Contents */
.disclaimer-toc {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(255, 193, 7, 0.05));
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(220, 53, 69, 0.1);
    margin-bottom: 4rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.disclaimer-toc h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
}

.disclaimer-toc h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #fd7e14);
    border-radius: 2px;
}

.disclaimer-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.disclaimer-toc-list li {
    padding: 0;
    margin: 0;
}

.disclaimer-toc-list li::before {
    content: none;
}

.disclaimer-toc-list a {
    display: block;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 15px;
    border: 2px solid rgba(220, 53, 69, 0.1);
    transition: all 0.4s ease;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.disclaimer-toc-list a:hover {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: var(--white);
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.3);
    border-color: transparent;
}

/* Disclaimer Progress Indicator */
.disclaimer-progress {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 193, 7, 0.1));
    padding: 1.5rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(220, 53, 69, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc3545, #fd7e14, #ffc107);
    border-radius: 4px;
    transition: width 0.4s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer-warning 2.5s infinite;
}

@keyframes shimmer-warning {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive design for disclaimer page */
@media (max-width: 768px) {
    .disclaimer-content {
        padding: 4rem 0;
    }
    
    .disclaimer-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .disclaimer-section h2 {
        font-size: 1.9rem;
        margin-bottom: 2rem;
        padding-left: 1.2rem;
    }
    
    .disclaimer-section h2::before {
        font-size: 1.5rem;
    }
    
    .disclaimer-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .disclaimer-section li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .disclaimer-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .disclaimer-highlight {
        padding: 2.5rem;
    }
    
    .disclaimer-toc {
        padding: 2.5rem;
    }
    
    .disclaimer-toc-list {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-warning,
    .disclaimer-alert,
    .disclaimer-info {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .disclaimer-warning::before,
    .disclaimer-alert::before,
    .disclaimer-info::before {
        font-size: 2rem;
        top: -15px;
        left: 20px;
    }
    
    .disclaimer-nav .container {
        gap: 1rem;
    }
    
    .disclaimer-nav a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Register Auth Image Styling */
.register-auth-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.register-auth-image img {
    flex-shrink: 0;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

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

/* Responsive design for register auth images */
@media (max-width: 768px) {
    .register-auth-image {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .register-auth-image img {
        width: 120px;
        height: 90px;
    }
}

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

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

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

.slider-header .emoji {
    font-size: 4rem;
    margin-left: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.language-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.mobile-slider-container {
    position: relative;
    height: 500px;
    margin: 3rem 0;
    overflow: hidden;
}

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

.mobile-slide {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.6) translateX(0);
    z-index: 1;
}

.mobile-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 3;
}

.mobile-slide.prev {
    opacity: 0.7;
    transform: scale(0.8) translateX(-60%);
    z-index: 2;
}

.mobile-slide.next {
    opacity: 0.7;
    transform: scale(0.8) translateX(60%);
    z-index: 2;
}

.mobile-slide.prev-2 {
    opacity: 0.4;
    transform: scale(0.6) translateX(-120%);
    z-index: 1;
}

.mobile-slide.next-2 {
    opacity: 0.4;
    transform: scale(0.6) translateX(120%);
    z-index: 1;
}

.mobile-screen {
    background: transparent;
    border-radius: 25px;
    padding: 1rem;

    position: relative;
    overflow: hidden;
}

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

.game-screenshot {
    width: 280px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.game-badge {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: transparent;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.game-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    display: block;
    margin: 0 auto 0.5rem;
}

.game-name {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

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

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

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

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

.thumbnail-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    min-width: 120px;
}

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

.thumbnail-item.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.thumbnail-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    display: block;
    margin: 0 auto 0.8rem;
    transition: all 0.3s ease;
}

.thumbnail-item.active .thumbnail-icon {
    transform: scale(1.1);
}

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

.thumbnail-item.active .thumbnail-name {
    color: var(--accent-color);
    font-weight: 700;
}

/* Slider Slogan */
.slider-slogan {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.slider-slogan p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-nav.prev {
        left: 20px;
    }
    
    .slider-nav.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 4rem 0;
    }
    
    .slider-header .section-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .slider-header .emoji {
        font-size: 3rem;
    }
    
    .mobile-slider-container {
        height: 400px;
        margin: 2rem 0;
    }
    
    .game-screenshot {
        width: 220px;
        height: 320px;
    }
    
    .mobile-slide.prev {
        transform: scale(0.7) translateX(-40%);
    }
    
    .mobile-slide.next {
        transform: scale(0.7) translateX(40%);
    }
    
    .mobile-slide.prev-2 {
        transform: scale(0.5) translateX(-80%);
    }
    
    .mobile-slide.next-2 {
        transform: scale(0.5) translateX(80%);
    }
    
    .game-thumbnails {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .thumbnail-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .thumbnail-icon {
        width: 40px;
        height: 40px;
    }
    
    .slider-slogan p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Mobile slider transition optimizations */
    .mobile-slide {
        transition: all 0.2s ease !important;
    }
    
    .mobile-slide:hover {
        transform: translateY(-5px) scale(1.02) !important;
    }
    
    .thumbnail-item {
        transition: all 0.2s ease !important;
    }
    
    .thumbnail-item:hover {
        transform: translateY(-3px) !important;
    }
    
    .slider-nav {
        transition: all 0.2s ease !important;
    }
    
    .slider-nav:hover {
        transform: translateY(-50%) scale(1.05) !important;
    }
}

@media (max-width: 480px) {
    .slider-header .section-title {
        font-size: 2rem;
    }
    
    .slider-header .emoji {
        font-size: 2.5rem;
    }
    
    .mobile-slider-container {
        height: 350px;
    }
    
    .game-screenshot {
        width: 180px;
        height: 260px;
    }
    
    .game-thumbnails {
        gap: 0.5rem;
    }
    
    .thumbnail-item {
        min-width: 80px;
        padding: 0.6rem;
    }
    
    .thumbnail-icon {
        width: 35px;
        height: 35px;
    }
    
    .thumbnail-name {
        font-size: 0.7rem;
    }
}

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

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(25, 167, 206, 0.4);
}

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

.back-to-top i {
    transition: transform 0.3s ease;
}

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

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

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

/* Active Navigation Link Styling */
.nav-link.active,
.mobile-nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
}

.nav-link.active::after,
.mobile-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.nav-link.active:hover,
.mobile-nav-link.active:hover {
    color: var(--accent-color);
}

/* 404 Error Page Styling */
.error-404-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-404-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v-2L80 40h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-80px) translateY(-80px); }
}

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

.error-number {
    font-size: 15rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
    position: relative;
    line-height: 1;
    animation: errorFloat 3s ease-in-out infinite;
}

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

.error-number::before {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color), var(--accent-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    opacity: 0.8;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.error-404-section h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out 0.5s both;
}

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

.error-404-section p {
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.8s both;
}

.error-actions {
    margin-bottom: 4rem;
    animation: slideInUp 1s ease-out 1.1s both;
}

.error-actions .btn {
    margin: 0 1rem 1rem;
    transform: scale(1);
    transition: all 0.3s ease;
}

.error-actions .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.helpful-links {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 1.4s both;
}

.helpful-links h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.helpful-links li {
    margin: 0;
}

.helpful-links a {
    display: block;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

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

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

.helpful-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
}

/* 404 CTA Section */
.error-404-section .cta-section {
    background: transparent;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.error-404-section .cta-content {
    text-align: center;
}

.error-404-section .cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.error-404-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.error-404-section .cta-buttons .btn {
    margin: 0 1rem 1rem;
    transform: scale(1);
    transition: all 0.3s ease;
}

.error-404-section .cta-buttons .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* 404 Floating Elements */
.error-404-section::after {
    content: '🎰';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 4rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.error-404-section::before {
    content: '🎮';
    position: absolute;
    bottom: 20%;
    left: 10%;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 5s ease-in-out infinite reverse;
}

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

/* 404 Glitch Effect */
.error-number {
    position: relative;
}

.error-number::after {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--accent-color);
    animation: glitch 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.error-number::before {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--primary-color);
    animation: glitch 2s infinite reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

/* Hero Image Responsive Design */
@media (max-width: 768px) {
    .hero-image {
        flex: none;
        width: 100%;
        margin-top: 2rem;
    }
    
    .hero-image img {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-image {
        padding: 0.5rem;
    }
    
    .hero-image img {
        max-width: 100%;
    }
}

/* Responsive design for 404 page */
@media (max-width: 768px) {
    .error-404-section {
        padding: 6rem 0;
    }
    
    .error-number {
        font-size: 10rem;
    }
    
    .error-404-section h1 {
        font-size: 2.5rem;
    }
    
    .error-404-section p {
        font-size: 1.1rem;
    }
    
    .helpful-links {
        padding: 2rem;
    }
    
    .helpful-links h3 {
        font-size: 1.5rem;
    }
    
    .helpful-links ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .helpful-links a {
        padding: 1.2rem;
    }
    
    .error-404-section .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Mobile transition optimizations */
    * {
        transition-duration: 0.2s !important;
        animation-duration: 0.3s !important;
    }
    
    .feature-icon,
    .game-card,
    .benefit-item,
    .testimonial-card,
    .stat-item {
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }
    
    .feature-icon:hover {
        transform: translateY(-5px) scale(1.05) !important;
    }
    
    .game-card:hover,
    .benefit-item:hover,
    .testimonial-card:hover {
        transform: translateY(-3px) !important;
    }
    
    .btn {
        transition: all 0.2s ease !important;
    }
    
    .btn:hover {
        transform: translateY(-2px) scale(1.02) !important;
    }
    
    .nav-link,
    .mobile-nav-link {
        transition: color 0.2s ease !important;
    }
    
    .mobile-menu-toggle span {
        transition: all 0.2s ease !important;
    }
    
    .back-to-top {
        transition: all 0.2s ease !important;
    }
    
    .back-to-top:hover {
        transform: translateY(-3px) scale(1.05) !important;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 8rem;
    }
    
    .error-404-section h1 {
        font-size: 2rem;
    }
    
    .error-404-section p {
        font-size: 1rem;
    }
    
    .helpful-links {
        padding: 1.5rem;
    }
    
    .helpful-links a {
        padding: 1rem;
    }
    
    /* Extra small mobile optimizations */
    .mobile-slide {
        transition: all 0.15s ease !important;
    }
    
    .mobile-slide:hover {
        transform: translateY(-3px) scale(1.02) !important;
    }
    
    .thumbnail-item {
        transition: all 0.15s ease !important;
    }
    
    .thumbnail-item:hover {
        transform: translateY(-2px) !important;
    }
    
    .slider-nav {
        transition: all 0.15s ease !important;
    }
    
    .slider-nav:hover {
        transform: translateY(-50%) scale(1.05) !important;
    }
}