/* 4raBet - Luxury Casino Theme CSS */

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

:root {
    /* Color Palette */
    --primary-blue: #3B82F6;
    --secondary-blue: #1D4ED8;
    --accent-purple: #8B5CF6;
    --accent-silver: #C0C0C0;
    --dark-bg: #0A0A0A;
    --charcoal: #1A1A1A;
    --dark-gray: #2D2D2D;
    --light-gray: #6B7280;
    --white: #FFFFFF;
    --text-light: #F3F4F6;
    --text-muted: #9CA3AF;
    
    /* Gradients */
    --blue-gradient: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    --purple-gradient: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    --dark-gradient: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    
    /* Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
    --shadow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--blue-gradient);
    color: var(--dark-bg);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

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

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo .logo {
    height: 50px;
    width: auto;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue-gradient);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.mobile-menu-toggle.active span {
    background: var(--white);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

/* Breadcrumb */
.breadcrumb {
    background: var(--charcoal);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.breadcrumb-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* Promotions Section */
.promotions {
    padding: var(--section-padding);
    background: var(--dark-gradient);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.promo-card {
    background: var(--charcoal);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.promo-card:hover::before {
    left: 100%;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.promo-icon {
    margin-bottom: 1rem;
}

.promo-icon .icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.promo-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.promo-description {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.promo-value {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Main Content */
.main-content {
    padding: var(--section-padding);
}

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

.content-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--blue-gradient);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

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

.feature-card {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

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

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin-bottom: 1.5rem;
    background: var(--charcoal);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-icon .icon {
    width: 60px;
    height: 60px;
    color: var(--primary-blue);
}

.feature-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-muted);
}

/* Registration Steps */
.registration-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--charcoal);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.step-number {
    background: var(--blue-gradient);
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    padding: 2rem;
    background: var(--charcoal);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.advantage-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.advantage-description {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
}

.game-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.game-card:hover .game-image {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 2rem 2rem;
    color: var(--white);
    z-index: 3;
    backdrop-filter: blur(5px);
}

.game-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.game-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.game-card:hover .game-title::after {
    width: 60px;
}

.game-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background: var(--charcoal);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

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

.faq-item {
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* CTA Section */
.cta-section {
    background: var(--blue-gradient);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 4rem 0;
}

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

.cta-title {
    color: var(--dark-bg);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--dark-bg);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-section .btn-primary {
    background: var(--dark-bg);
    color: var(--primary-blue);
}

.cta-section .btn-outline {
    border-color: var(--dark-bg);
    color: var(--dark-bg);
}

.cta-section .btn-outline:hover {
    background: var(--dark-bg);
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

.footer-logo .logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--blue-gradient);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-blue);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

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

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

/* Additional Page Styles */
.content-hero {
    text-align: center;
    padding: 4rem 0 2rem;
    background: var(--dark-gradient);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.content-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.subsection-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-family: var(--font-primary);
}

/* About Us Page Styles */
.story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-text {
    padding: 1rem 0;
    width: 100%;
}

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

.mission-card {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.mission-icon {
    margin-bottom: 1.5rem;
}

.mission-icon .icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mission-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mission-description {
    color: var(--text-muted);
    line-height: 1.7;
}

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

.value-item {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.value-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-muted);
    line-height: 1.7;
}

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

.why-item {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.why-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.why-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow: 
        0 10px 25px rgba(59, 130, 246, 0.4),
        0 0 0 3px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 2;
    transform: rotate(-5deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.why-item:hover .why-number {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 
        0 15px 35px rgba(59, 130, 246, 0.5),
        0 0 0 4px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.why-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 1rem;
    font-family: var(--font-primary);
}

.why-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

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

.stat-item {
    padding: 1.5rem;
    background: var(--charcoal);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Privacy Policy & Terms Pages Styles */
.usage-list, .prohibited-list, .rights-list, .security-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.usage-item, .prohibited-item, .right-item, .security-item {
    background: var(--charcoal);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.usage-item:hover, .prohibited-item:hover, .right-item:hover, .security-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.usage-title, .prohibited-title, .right-title, .security-title {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.usage-description, .prohibited-description, .right-description, .security-description {
    color: var(--text-muted);
    line-height: 1.6;
}

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

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--charcoal);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

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

.contact-info {
    color: var(--text-muted);
}

/* Support Page Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
    transform: translateY(-5px);
}

.support-icon {
    margin-bottom: 1.5rem;
}

.support-icon .icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.support-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.support-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.contact-card {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

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

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

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

.response-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--charcoal);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.response-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-blue);
}

.response-title {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.response-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.response-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-blue {
    color: var(--primary-blue);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 2px solid var(--primary-blue);
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5);
        padding: 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin: 0;
        padding: 2rem 1.5rem 2rem 1.5rem;
    }
    
    .nav-item {
        width: 100%;
        margin: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        margin: 0.25rem 0;
        color: var(--text-light);
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.4);
        transform: translateX(8px) scale(1.02);
        color: var(--primary-blue);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        color: var(--white);
        border-color: var(--primary-blue);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        transform: scale(1.05);
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
        padding: 0;
    }
    
    .nav-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .nav-actions .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-actions .btn:hover::before {
        left: 100%;
    }
    
    .nav-actions .btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    }
    
    /* When nav-actions is inside nav-list */
    .nav-list .nav-item.nav-actions {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid rgba(59, 130, 246, 0.3);
        position: relative;
    }
    
    .nav-list .nav-item.nav-actions::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: var(--primary-blue);
        border-radius: 2px;
    }
    
    .nav-list .nav-item.nav-actions .nav-actions {
        margin-top: 0;
        padding-top: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    
    /* Mobile menu header - hidden on desktop */
    .mobile-menu-header {
        display: none !important;
    }
    
    /* Hide mobile menu header in desktop nav-menu */
    .nav-menu .mobile-menu-header {
        display: none !important;
    }
    
    /* Ensure mobile menu header is hidden on desktop */
    @media (min-width: 769px) {
        .mobile-menu-header {
            display: none !important;
        }
        
        .nav-menu .mobile-menu-header {
            display: none !important;
        }
    }
    
    .mobile-menu-header .nav-link {
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
        padding: 0.5rem 1rem;
        background: var(--primary-blue);
        border-radius: 8px;
        flex: 1;
        text-align: center;
    }
    
    .mobile-menu-close {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
        cursor: pointer;
        padding: 0.75rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 1rem;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
    
    .mobile-menu-close svg {
        width: 20px;
        height: 20px;
    }
    
    /* Show mobile menu header only on mobile */
    @media (max-width: 768px) {
        .nav-menu .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
            background: var(--dark-bg);
            margin-bottom: 1rem;
        }
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-item {
        padding: 2rem 1.5rem;
    }
    
    .why-number {
        top: -15px;
        left: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        border-radius: 10px;
    }
    
    .why-title {
        font-size: 1.2rem;
        margin-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .promo-card,
    .feature-card,
    .advantage-item {
        padding: 1.5rem;
    }
    
    .faq-section {
        padding: 2rem 1.5rem;
    }
    
    .why-item {
        padding: 1.5rem 1rem;
    }
    
    .why-number {
        top: -12px;
        left: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
    
    .why-title {
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }
    
    .why-description {
        font-size: 0.9rem;
    }
}
