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

/* Import Google Fonts for better typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Strict Color Palette - No Other Colors Allowed */
    --true-black: #000000;        /* Main background */
    --dark-indigo: #150050;       /* Subtle overlays, section shading */
    --deep-blue-magenta: #3F0071; /* Cards, icons, minor accents */
    --vivid-purple: #610094;      /* Primary buttons, highlights, CTAs */
    --white-text: #FFFFFF;        /* All text must be white */
    
    /* Derived Colors for Hover/Focus States (within palette) */
    --hover-purple: #7a00b8;      /* Lighter version of vivid-purple for hover */
    --hover-blue-magenta: #4a0088; /* Lighter version of deep-blue-magenta for hover */
    --hover-indigo: #1a0060;      /* Lighter version of dark-indigo for hover */
    
    /* Utility Variables */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.5);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--white-text);
    background: var(--true-black);
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--vivid-purple);
    color: var(--white-text);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

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

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

/* Enhanced spacing utilities */
.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

.section-padding-lg {
    padding: 7rem 0;
}

.content-max-width {
    max-width: 800px;
    margin: 0 auto;
}

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

/* Header and Navigation */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(97, 0, 148, 0.2);
}

.navbar {
    padding: 1.25rem 0;
}

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

.nav-logo h1 {
    color: var(--vivid-purple);
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(97, 0, 148, 0.3);
}

.nav-logo h2 {
    color: var(--vivid-purple);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--vivid-purple);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    transform-origin: center;
}

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

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

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

.nav-link {
    color: var(--white-text);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background: var(--deep-blue-magenta);
    color: var(--white-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(63, 0, 113, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--vivid-purple);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.nav-link.active {
    background: var(--vivid-purple);
    color: var(--white-text);
}

.nav-link.active::after {
    width: 80%;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background: var(--hover-purple);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(97, 0, 148, 0.4);
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--white-text);
    border: 2px solid var(--vivid-purple);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--vivid-purple);
    color: var(--white-text);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(97, 0, 148, 0.4);
}

.btn-login {
    background: var(--deep-blue-magenta);
    color: var(--white-text);
}

.btn-login:hover,
.btn-login:focus {
    background: var(--hover-blue-magenta);
}

.btn-register {
    background: var(--vivid-purple);
    color: var(--white-text);
}

.btn-register:hover,
.btn-register:focus {
    background: var(--hover-purple);
}

.login-btn {
    background: var(--deep-blue-magenta);
    color: var(--white-text);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.login-btn:hover,
.login-btn:focus {
    background: var(--hover-blue-magenta);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(63, 0, 113, 0.3);
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(21, 0, 80, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(97, 0, 148, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--vivid-purple);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(97, 0, 148, 0.5);
    position: relative;
    z-index: 1;
}

.hero-container p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Registration Steps */
.registration-steps {
    padding: 6rem 0;
    background: var(--dark-indigo);
    position: relative;
}

.registration-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vivid-purple), transparent);
}

.registration-steps h3 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--vivid-purple);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.registration-steps h3::before {
    content: '🚀 ';
    margin-right: 0.5rem;
}

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

.step {
    background: var(--deep-blue-magenta);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(97, 0, 148, 0.2);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vivid-purple), var(--hover-purple));
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(97, 0, 148, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--vivid-purple);
    color: var(--white-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(97, 0, 148, 0.4);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--vivid-purple), var(--hover-purple));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.step h4 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.step p {
    color: var(--white-text);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--true-black);
    position: relative;
}

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

.features-section h3 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--vivid-purple);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.features-section h3::before {
    content: '✨ ';
    margin-right: 0.5rem;
}

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

.feature-card {
    background: var(--deep-blue-magenta);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(97, 0, 148, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vivid-purple), var(--hover-purple));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(97, 0, 148, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.feature-card h4 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--white-text);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--dark-indigo);
    text-align: center;
    position: relative;
}

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

.cta-section h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--vivid-purple);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-section h3::before {
    content: '🎯 ';
    margin-right: 0.5rem;
}

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

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

/* Footer */
.footer {
    background: var(--true-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--deep-blue-magenta);
    position: relative;
}

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

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

.footer-section h4 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-section p,
.footer-section li {
    color: var(--white-text);
    margin-bottom: 0.5rem;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .steps-container,
    .features-grid,
    .values-grid,
    .team-highlights,
    .contact-details-grid,
    .resources-grid,
    .response-times-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-padding-lg {
        padding: 4rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .registration-steps h3,
    .features-section h3,
    .cta-section h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .registration-steps,
    .features-section,
    .cta-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .hero-container h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .registration-steps h3,
    .features-section h3,
    .cta-section h3 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .step,
    .feature-card,
    .value-card,
    .faq-item,
    .contact-detail,
    .response-time {
        padding: 1.5rem;
    }
    
    .hero-stats,
    .cta-stats {
        gap: 1.5rem;
    }
    
    .stat-item,
    .cta-stat {
        min-width: 100px;
        padding: 1rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --true-black: #000000;
        --dark-indigo: #000080;
        --deep-blue-magenta: #0000ff;
        --vivid-purple: #ff00ff;
        --white-text: #ffffff;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(21, 0, 80, 0.8)), url('/public/images/page-header-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(97, 0, 148, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(97, 0, 148, 0.5);
    position: relative;
    z-index: 1;
}

.page-header h1::before {
    content: '📄 ';
    margin-right: 0.5rem;
}

/* Page-specific emojis */
.page-header.about-page h1::before {
    content: '🏢 ';
}

.page-header.faq-page h1::before {
    content: '❓ ';
}

.page-header.privacy-page h1::before {
    content: '🔒 ';
}

.page-header.terms-page h1::before {
    content: '📜 ';
}

.page-header.disclaimer-page h1::before {
    content: '⚠️ ';
}

.page-header.contact-page h1::before {
    content: '📞 ';
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* About Us Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-text h2::before {
    content: '🌟 ';
    margin-right: 0.5rem;
}

.about-text h2 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text h3 {
    color: var(--vivid-purple);
    margin: 2rem 0 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-text h3::before {
    content: '💫 ';
    margin-right: 0.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border: 1px solid rgba(97, 0, 148, 0.2);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    text-align: center;
    color: var(--vivid-purple);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.values-section h2::before {
    content: '💎 ';
    margin-right: 0.5rem;
}

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

.value-card {
    background: var(--deep-blue-magenta);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(97, 0, 148, 0.2);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vivid-purple), var(--hover-purple));
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(97, 0, 148, 0.4);
}

.value-card h3 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.team-section h2::before {
    content: '👥 ';
    margin-right: 0.5rem;
}

.team-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.highlight {
    background: var(--deep-blue-magenta);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(97, 0, 148, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.highlight h4 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* FAQ Page Styles */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    color: var(--vivid-purple);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-section h2::before {
    content: '❓ ';
    margin-right: 0.5rem;
}

.faq-item {
    background: var(--deep-blue-magenta);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(97, 0, 148, 0.2);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.faq-item h3 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.faq-item p {
    line-height: 1.8;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Policy Pages Styles */
.policy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 3rem;
}

.policy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.policy-section h2::before,
.terms-section h2::before,
.disclaimer-section h2::before {
    content: '📋 ';
    margin-right: 0.5rem;
}

.policy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: var(--vivid-purple);
    margin: 2rem 0 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.policy-section h3::before,
.terms-section h3::before,
.disclaimer-section h3::before {
    content: '🔹 ';
    margin-right: 0.5rem;
}

.policy-section p,
.terms-section p,
.disclaimer-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.policy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin: 1.5rem 0 1.5rem 2.5rem;
}

.policy-section li,
.terms-section li,
.disclaimer-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    background: var(--deep-blue-magenta);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
    border: 1px solid rgba(97, 0, 148, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    text-align: center;
}

.contact-content .container {
    max-width: 1200px;
}

.contact-content {
    background: var(--dark-indigo);
    padding: 4rem 0;
    position: relative;
}

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

.contact-info-section,
.contact-form-section {
    text-align: left;
}

.contact-info-section h2,
.contact-form-section h2 {
    text-align: center;
}

.contact-methods {
    text-align: left;
}

.contact-form {
    text-align: left;
}

.contact-info-section h2 {
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-info-section h2::before {
    content: '📞 ';
    margin-right: 0.5rem;
}

.contact-info-section p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-method h3 {
    color: var(--vivid-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-form-section h2 {
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-form-section h2::before {
    content: '✉️ ';
    margin-right: 0.5rem;
}

.contact-form {
    background: var(--deep-blue-magenta);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(97, 0, 148, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--white-text);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--deep-blue-magenta);
    border-radius: 8px;
    background: var(--dark-indigo);
    color: var(--white-text);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vivid-purple);
    box-shadow: 0 0 0 3px rgba(97, 0, 148, 0.2);
    transform: translateY(-1px);
}

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

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

.checkbox-label a {
    color: var(--vivid-purple);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition);
}

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

.contact-details-section {
    margin-bottom: 3rem;
}

.contact-details-section h2 {
    text-align: center;
    color: var(--vivid-purple);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-details-section h2::before {
    content: '📍 ';
    margin-right: 0.5rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-detail {
    background: var(--deep-blue-magenta);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(97, 0, 148, 0.2);
    transition: var(--transition);
}

.contact-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.contact-detail h3 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-detail p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.support-resources-section {
    margin-bottom: 3rem;
}

.support-resources-section h2 {
    text-align: center;
    color: var(--vivid-purple);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.support-resources-section h2::before {
    content: '🛠️ ';
    margin-right: 0.5rem;
}

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

.resource-card {
    background: var(--deep-blue-magenta);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.resource-card h3 {
    color: var(--vivid-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.response-times-section {
    margin-bottom: 3rem;
}

.response-times-section h2 {
    text-align: center;
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.response-times-section h2::before {
    content: '⏱️ ';
    margin-right: 0.5rem;
}

.response-times-section p {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.response-time {
    background: var(--deep-blue-magenta);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(97, 0, 148, 0.2);
    transition: var(--transition);
}

.response-time:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.response-time h4 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.response-time p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 404 Page Styles */
.error-section {
    text-align: center;
    padding: 6rem 0;
    background: var(--dark-indigo);
    position: relative;
}

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

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

.error-number {
    font-size: 10rem;
    font-weight: 800;
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    text-shadow: 0 8px 32px rgba(97, 0, 148, 0.5);
    letter-spacing: -0.05em;
    position: relative;
}

.error-number::before {
    content: '😵 ';
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.error-content h1 {
    font-size: 3rem;
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.error-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.helpful-links h3 {
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.helpful-links h3::before {
    content: '🔗 ';
    margin-right: 0.5rem;
}

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

.helpful-link {
    display: block;
    background: var(--deep-blue-magenta);
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white-text);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(97, 0, 148, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.helpful-link:hover {
    background: var(--vivid-purple);
    color: var(--white-text);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(97, 0, 148, 0.4);
}

.search-suggestion {
    background: var(--deep-blue-magenta);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(97, 0, 148, 0.2);
}

.search-suggestion h3 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.search-suggestion h3::before {
    content: '💡 ';
    margin-right: 0.5rem;
}

.search-suggestion a {
    color: var(--vivid-purple);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition);
}

.search-suggestion a:hover {
    color: var(--hover-purple);
    text-decoration: none;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main-content {
        margin-top: 0;
    }
}

/* Additional utility classes */
.text-gradient {
    background: linear-gradient(135deg, var(--vivid-purple), var(--hover-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--vivid-purple), var(--hover-purple)) 1;
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(97, 0, 148, 0.3);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

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

/* Ensure proper scroll padding for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Loading state for cross-page navigation */
.page-loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-loaded {
    opacity: 1;
}

/* Ensure sections are properly positioned for scrolling */
section[id] {
    scroll-margin-top: 100px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--vivid-purple);
    border: none;
    border-radius: 50%;
    color: var(--white-text);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(97, 0, 148, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(97, 0, 148, 0.2);
}

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

.back-to-top:hover {
    background: var(--deep-blue-magenta);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(97, 0, 148, 0.4);
}

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

.back-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(97, 0, 148, 0.3), 0 8px 32px rgba(97, 0, 148, 0.3);
}

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

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

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Selection styles */
::selection {
    background: var(--vivid-purple);
    color: var(--white-text);
}

::-moz-selection {
    background: var(--vivid-purple);
    color: var(--white-text);
}

/* Homepage hero overrides */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(21, 0, 80, 0.85));
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.6rem;
    color: var(--vivid-purple);
    margin-bottom: 0.75rem;
}
.hero-subtitle {
    font-size: 1.15rem;
    max-width: 760px;
    margin: 0 auto 1.5rem;
}

/* Section scaffolding */
.intro-section,
.what-is-section,
.why-choose-section,
.bonuses-section,
.games-section,
.safety-section,
.mobile-section,
.payment-section,
.tips-section,
.growth-section,
.final-thoughts {
    padding: 3rem 0;
}
.section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Content grids */
.content-grid,
.features-grid,
.bonuses-grid,
.games-grid,
.tips-grid,
.growth-factors,
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Cards */
.feature-card,
.bonus-card,
.game-category,
.tip-item,
.factor,
.payment-category,
.safety-item {
    background: var(--deep-blue-magenta);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

/* Lists */
.feature-list,
.mobile-features {
    margin: 1rem 0 0 1.25rem;
}

/* Safety */
.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.safety-note {
    margin-top: 1rem;
}

/* Registration CTA */
.registration-cta { margin-top: 1.5rem; text-align: center; }

/* Mobile section */
.mobile-content { display: grid; grid-template-columns: 1.2fr; gap: 1.5rem; }

/* Final thoughts */
.final-thoughts .thoughts-content { background: var(--deep-blue-magenta); border-radius: 10px; padding: 1.5rem; box-shadow: var(--shadow); }

/* Mobile nav toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: var(--white-text);
    border: 2px solid var(--vivid-purple);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
}

/* Active mobile menu */
.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--deep-blue-magenta);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(97, 0, 148, 0.2);
    z-index: 1000;
}

.nav-menu.active .nav-item {
    margin-bottom: 0.75rem;
    width: 100%;
}

.nav-menu.active .nav-item:last-child {
    margin-bottom: 0;
}

.nav-menu.active .nav-link {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure mobile menu links work properly */
.nav-menu.active .nav-link:hover,
.nav-menu.active .nav-link:focus {
    background: var(--vivid-purple);
    color: var(--white-text);
    transform: none;
}

@media (max-width: 900px) {
    .hamburger { 
        display: flex; 
    }
    .nav-menu { 
        display: none; 
        position: absolute; 
        width: 100%;
        background: var(--deep-blue-magenta);
    }
    .hero-content h1 { font-size: 2rem; }
    
    /* Registration Guide Responsive */
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-card {
        padding: 2rem;
    }
    
    .guide-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .guide-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .step-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .step-icon {
        margin-top: 0;
    }
    
    /* Visual Guide Responsive */
    .visual-guide-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Login & Register Sections Responsive */
    .login-content,
    .register-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .login-section h2,
    .register-section h2 {
        font-size: 2.5rem;
    }
    
    .login-section p,
    .register-section p {
        font-size: 1.1rem;
    }
    
    .login-info,
    .register-steps {
        padding: 2rem;
    }
    
    .login-info h3,
    .register-steps h3 {
        font-size: 1.6rem;
    }
    
    .btn-login-large,
    .btn-register-large {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
    
    .register-image {
        gap: 1rem;
    }
    
    /* Games Slider Responsive */
    .section-title {
        font-size: 2rem;
    }
    
    .mobile-games-slider {
        padding: 0 2rem;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav.prev {
        left: -15px;
    }
    
    .slider-nav.next {
        right: -15px;
    }
    
    .mobile-slide {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .mobile-screen {
        width: 180px;
        height: 360px;
        background: transparent;
        padding: 0;
    }
    
    .game-thumbnails {
        gap: 1rem;
    }
    
    .thumbnail-icon {
        width: 40px;
        height: 40px;
    }
    
    .step-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .step-image-card {
        padding: 1.25rem;
    }
    
    .step-image-container {
        padding: 0.75rem;
    }
    
    .login-image-card {
        padding: 1.5rem;
    }
    

}

@media (max-width: 480px) {
    .guide-card {
        padding: 1.5rem;
    }
    
    .guide-header h3 {
        font-size: 1.3rem;
    }
    
    .step-item {
        padding: 0.75rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-text {
        font-size: 0.9rem;
    }
    
    .guide-note {
        padding: 1rem;
    }
    
    .guide-note p {
        font-size: 0.9rem;
    }
    
    /* Visual Guide Mobile */
    .visual-guide-section .section-header h2 {
        font-size: 2rem;
    }
    
    .step-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-image-card {
        padding: 1rem;
    }
    
    .step-image-container {
        padding: 0.5rem;
    }
    
    .step-caption {
        font-size: 0.8rem;
    }
    
    .step-caption code {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
    }
    
    .login-image-card {
        padding: 1.25rem;
    }
    
    /* Login & Register Mobile */
    .login-section h2,
    .register-section h2 {
        font-size: 2rem;
    }
    
    .login-section p,
    .register-section p {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .login-info,
    .register-steps {
        padding: 1.5rem;
    }
    
    .login-info h3,
    .register-steps h3 {
        font-size: 1.4rem;
    }
    
    .login-info li,
    .register-steps li {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-login-large,
    .btn-register-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .login-note,
    .register-note {
        font-size: 0.9rem;
    }
    
    /* Games Slider Mobile */
    .section-title {
        font-size: 1.8rem;
    }
    
    .emoji {
        font-size: 1.5rem;
    }
    
    .language-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .mobile-games-slider {
        padding: 0 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: -10px;
    }
    
    .slider-nav.next {
        right: -10px;
    }
    
    .mobile-slide {
        flex: 0 0 100%;
    }
    
    .mobile-screen {
        width: 160px;
        height: 320px;
        background: transparent;
        padding: 0;
    }
    
    .game-thumbnails {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thumbnail-icon {
        width: 35px;
        height: 35px;
    }
    
    .thumbnail-name {
        font-size: 0.6rem;
    }
    
    .slider-slogan p {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    

}

/* Enhanced Homepage Styles */
.hero-badge {
    display: inline-block;
    background: var(--vivid-purple);
    color: var(--white-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(97, 0, 148, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(97, 0, 148, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(97, 0, 148, 0.2);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--vivid-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.btn-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(97, 0, 148, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(63, 0, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(21, 0, 80, 0.1) 0%, transparent 50%);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vivid-purple);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    background: var(--deep-blue-magenta);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(97, 0, 148, 0.2);
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--vivid-purple);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Feature Icons */
.feature-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* CTA Stats */
.cta-content {
    text-align: center;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
    background: rgba(97, 0, 148, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(97, 0, 148, 0.2);
    min-width: 120px;
}

.cta-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--vivid-purple);
    margin-bottom: 0.5rem;
}

.cta-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Registration Guide Section */
.registration-guide-section {
    padding: 6rem 0;
    background: var(--dark-indigo);
    position: relative;
}

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

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.guide-card {
    background: var(--deep-blue-magenta);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(97, 0, 148, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vivid-purple), var(--deep-blue-magenta));
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(97, 0, 148, 0.3);
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-icon {
    font-size: 2rem;
    background: var(--vivid-purple);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(97, 0, 148, 0.4);
    flex-shrink: 0;
}

.guide-header h3 {
    color: var(--white-text);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.guide-intro {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(97, 0, 148, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(97, 0, 148, 0.2);
    transition: var(--transition);
}

.step-item:hover {
    background: rgba(97, 0, 148, 0.3);
    transform: translateX(5px);
    border-color: var(--vivid-purple);
}

.step-number {
    background: var(--vivid-purple);
    color: var(--white-text);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(97, 0, 148, 0.4);
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.step-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--white-text);
    line-height: 1.6;
    font-size: 1rem;
}

.step-text strong {
    color: var(--white-text);
    font-weight: 600;
}

.step-text code {
    background: rgba(97, 0, 148, 0.4);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--white-text);
    border: 1px solid rgba(97, 0, 148, 0.3);
}

.guide-note {
    background: rgba(97, 0, 148, 0.2);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--vivid-purple);
    margin-bottom: 2rem;
}

.guide-note p {
    color: var(--white-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.guide-cta .btn {
    min-width: 150px;
    font-weight: 600;
}

/* Visual Guide Section */
.visual-guide-section {
    margin-bottom: 4rem;
}

.visual-guide-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.visual-guide-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.registration-steps h3,
.login-step h3 {
    color: var(--white-text);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.step-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-image-card {
    background: var(--deep-blue-magenta);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(97, 0, 148, 0.3);
    transition: var(--transition);
    text-align: center;
}

.step-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(97, 0, 148, 0.3);
    border-color: var(--vivid-purple);
}

.step-image-container {
    background: var(--deep-blue-magenta);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(97, 0, 148, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.step-image-container:hover {
    border-color: var(--vivid-purple);
    box-shadow: 0 8px 20px rgba(97, 0, 148, 0.3);
}

.step-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: var(--transition);
}

.step-image:hover {
    transform: scale(1.02);
}

.step-caption {
    color: var(--white-text);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.step-caption strong {
    color: var(--vivid-purple);
    font-weight: 600;
}

.step-caption code {
    background: rgba(97, 0, 148, 0.4);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--white-text);
    border: 1px solid rgba(97, 0, 148, 0.3);
}

/* Login Step */
.login-step {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-image-card {
    background: var(--deep-blue-magenta);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(97, 0, 148, 0.3);
    transition: var(--transition);
    text-align: center;
}

.login-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(97, 0, 148, 0.3);
    border-color: var(--vivid-purple);
}

.login-placeholder {
    min-height: 150px;
    background: linear-gradient(135deg, rgba(97, 0, 148, 0.3) 0%, rgba(63, 0, 113, 0.3) 100%);
}

.login-placeholder .image-icon {
    font-size: 3rem;
}

/* Login Section */
.login-section {
    background: linear-gradient(135deg, var(--dark-indigo) 0%, var(--deep-blue-magenta) 100%);
    padding: 6rem 0;
    position: relative;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 0, 80, 0.1) 0%, rgba(63, 0, 113, 0.1) 100%);
    pointer-events: none;
}

.login-section h2 {
    color: var(--white-text);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.login-section p {
    color: var(--white-text);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
}

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

.login-info {
    background: var(--white-text);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.login-info h3 {
    color: var(--vivid-purple);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.login-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.login-info li {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.login-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vivid-purple);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.btn-login-large {
    background: linear-gradient(135deg, var(--vivid-purple) 0%, var(--hover-purple) 100%);
    color: var(--white-text);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(97, 0, 148, 0.3);
    margin-bottom: 1.5rem;
}

.btn-login-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(97, 0, 148, 0.4);
}

.login-note {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.login-note a {
    color: var(--vivid-purple);
    text-decoration: none;
    font-weight: 600;
}

.login-note a:hover {
    text-decoration: underline;
}

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

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

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

/* Register Section */
.register-section {
    background: linear-gradient(135deg, var(--dark-indigo) 0%, var(--deep-blue-magenta) 100%);
    padding: 6rem 0;
    position: relative;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 0, 80, 0.1) 0%, rgba(63, 0, 113, 0.1) 100%);
    pointer-events: none;
}

.register-section h2 {
    color: var(--white-text);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.register-section p {
    color: var(--white-text);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
}

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

.register-steps {
    background: var(--white-text);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.register-steps h3 {
    color: var(--vivid-purple);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.register-steps ol {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    counter-reset: step-counter;
}

.register-steps li {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.5;
    counter-increment: step-counter;
}

.register-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--vivid-purple);
    color: var(--white-text);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.register-action {
    text-align: center;
}

.btn-register-large {
    background: linear-gradient(135deg, var(--vivid-purple) 0%, var(--hover-purple) 100%);
    color: var(--white-text);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(97, 0, 148, 0.3);
    margin-bottom: 1.5rem;
}

.btn-register-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(97, 0, 148, 0.4);
}

.register-note {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.register-note a {
    color: var(--vivid-purple);
    text-decoration: none;
    font-weight: 600;
}

.register-note a:hover {
    text-decoration: underline;
}

.register-image {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

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

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

/* Games Slider Section */
.games-slider-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
    pointer-events: none;
}

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

.section-title {
    color: var(--white-text);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.language-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-text);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

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

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

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

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

/* Mobile Slider Container */
.mobile-slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.mobile-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    align-items: center;
}

.mobile-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.9);
}

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

/* Mobile Screen Styling */
.mobile-screen {
    width: 200px;
    height: 400px;
    background: transparent;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.game-amount {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white-text);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

/* Game Badge */
.game-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-slide.active .game-badge {
    opacity: 1;
}

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

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

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

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

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

.thumbnail-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active .thumbnail-icon {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

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

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

.slider-slogan p {
    color: var(--white-text);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Homepage Contact Section Styles */
.contact-section {
    padding: 6rem 0;
    background: var(--dark-indigo);
    position: relative;
}

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

.contact-section h2 {
    text-align: center;
    color: var(--vivid-purple);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-section h2::before {
    content: '📞 ';
    margin-right: 0.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--vivid-purple);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-method {
    background: var(--deep-blue-magenta);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(97, 0, 148, 0.2);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-method h4 {
    color: var(--vivid-purple);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

.contact-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}
