/**
 * FadCam Website - Main Stylesheet
 * Author: FadSec Lab
 * Updated: 2024
 * 
 * TABLE OF CONTENTS:
 * 1. Variables & Base Styles
 * 2. Layout & Container
 * 3. Header & Navigation
 * 4. Mobile Menu
 * 5. Hero Section
 * 6. Feature Section
 * 7. Screenshots Section
 * 8. Featured Section
 * 9. Review Section
 * 10. FAQ Section
 * 11. Footer
 * 12. Utility Components & Animations
 * 13. Media Queries
 */

/* =====================
   1. Variables & Base Styles
   ===================== */
:root {
    --primary-color: #e53935;
    --accent-color: #b71c1c;
    --bg-color: #0a0a0a;
    --text-color: #f3f4f6;
    --card-bg: rgba(10, 10, 10, 0.85);
    --gradient-primary: linear-gradient(135deg, #e53935, #f44336);
    --gradient-accent: linear-gradient(135deg, #b71c1c, #e53935);
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Accounts for the fixed header */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at top right, rgba(229, 57, 53, 0.1), transparent 30%),
        radial-gradient(circle at bottom left, rgba(183, 28, 28, 0.1), transparent 40%);
}

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

/* =====================
   3. Header & Navigation
   ===================== */
/* Header styles */
header {
    position: fixed;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1006;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
    top: 10px;
}

.topbar {
    background-color: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(229, 57, 53, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1006;
}

.topbar.shrink {
    padding: 10px 20px;
    background-color: rgba(10, 10, 10, 0.7);
    transform: scale(0.95);
}

/* Add a class for when scrolling to center */
.scrolled {
    left: 50%; /* Center it on scroll */
    right: 50%; /* Center it on scroll */
    transform: translateX(-50%); /* Align it properly */
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1005;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    z-index: 1005;
}

.hamburger-menu span:nth-child(1) {
    top: 0px;
}

.hamburger-menu span:nth-child(2) {
    top: 8px;
}

.hamburger-menu span:nth-child(3) {
    top: 16px;
}

.hamburger-menu.active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
    background: #fff;
}

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

.hamburger-menu.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
    background: #fff;
}

/* =====================
   4. Mobile Menu
   ===================== */
/* Mobile menu styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10%;
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 2rem;
    margin: 20px 0;
    transition: color var(--transition-speed) ease;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-menu {
        display: block;
    }
}

/* =====================
   5. Hero Section
   ===================== */
/* Hero section styles */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, var(--accent-color) 0%, var(--bg-color) 70%);
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 850px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(229, 57, 53, 0.15);
    transform: perspective(1000px) translateZ(0px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gradient-primary);
    z-index: -1;
    border-radius: 31px;
    filter: blur(8px);
    opacity: 0.2;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateZ(30px);
    position: relative;
    letter-spacing: 2px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button:hover::before {
    opacity: 1;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(229, 57, 53, 0.3);
}

/* =====================
   6. Feature Section
   ===================== */
/* Section styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin: 0 auto 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
    padding: 0 20px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Features section styles */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.features-col {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(229, 57, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.features-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(229, 57, 53, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.features-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.features-list li {
    margin-bottom: 0;
    padding: 12px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 57, 53, 0.05);
    font-size: 0.95rem;
}

.features-list li:hover {
    transform: translateY(-5px);
    background-color: rgba(229, 57, 53, 0.1);
    border-color: rgba(229, 57, 53, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
    padding-top: 3px;
}

.features-list.upcoming li {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list.upcoming li:hover {
    background-color: rgba(229, 57, 53, 0.15);
}

@media (max-width: 992px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .features-list li {
        padding: 10px 15px;
    }
}

/* =====================
   7. Screenshots Section
   ===================== */
/* Screenshots section styles */
.screenshots-slider {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
    padding: 20px 0;
}

.screenshots {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 30px 0;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.screenshot-img {
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    transform-origin: center bottom;
}

.screenshot-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 25px rgba(229, 57, 53, 0.3);
    border-color: var(--primary-color);
}

/* Modal for screenshots */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-arrow:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.6);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .modal-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .modal-prev {
        left: 15px;
    }
    
    .modal-next {
        right: 15px;
    }
}

/* =====================
   8. Featured Section
   ===================== */
/* Featured section styles */
.featured-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
}

.featured-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.video-container {
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.featured-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.partner-link {
    text-decoration: none;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-width: 150px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-card:hover {
    background: rgba(229, 57, 53, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(229, 57, 53, 0.15);
    border-color: rgba(229, 57, 53, 0.3);
}

.partner-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.partner-card span {
    color: var(--text-color);
    font-weight: 500;
}

/* Updated mobile responsive styles - combine all into one section */
@media (max-width: 768px) {
    /* Hero section mobile styles */
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Features mobile styles */
    .feature {
        flex-basis: 100%;
    }
    
    /* Screenshots mobile styles */
    .screenshots img {
        width: 150px;
    }
    
    /* Reviews mobile styles */
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    /* Featured section mobile styles */
    .featured-videos {
        gap: 20px;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .video-container iframe {
        height: 220px;
    }
    
    .partner-card {
        min-width: 120px;
        padding: 15px 20px;
    }
}

/* =====================
   9. Review Section
   ===================== */
/* Reviews section styles */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(229, 57, 53, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.2);
    border-color: rgba(229, 57, 53, 0.2);
}

.review-content {
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.review-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    opacity: 0.9;
}

.review-content p::before {
    content: "\201C";
    font-size: 5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -10px;
    z-index: -1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.author-avatar i {
    color: white;
    font-size: 1.2rem;
}

.review-author span {
    color: var(--text-color);
    font-weight: 500;
}

/* =====================
   10. FAQ Section
   ===================== */
/* FAQ section styles */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.2);
    border-color: rgba(229, 57, 53, 0.1);
}

.faq-question {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--text-color);
}

.faq-question:hover {
    background-color: rgba(229, 57, 53, 0.1);
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    background: var(--gradient-primary);
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    display: none;
    padding: 20px;
    line-height: 1.7;
    background-color: rgba(10, 10, 10, 0.5);
    border-top: 1px solid rgba(229, 57, 53, 0.2);
}

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

/* =====================
   11. Footer
   ===================== */
/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color var(--transition-speed) ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* =====================
   12. Utility Components & Animations
   ===================== */
/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top:hover {
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
    transform: translateY(-3px);
}

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

.scroll-to-top i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* =====================
   13. Media Queries
   ===================== */
/* Mobile responsive styles */
@media (max-width: 768px) {
    /* Desktop nav hidden, hamburger shown */
    .desktop-nav {
        display: none;
    }

    /* Hero section mobile styles */
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Features mobile styles */
    .feature {
        flex-basis: 100%;
    }
    
    /* Screenshots mobile styles */
    .screenshots img {
        width: 150px;
    }
    
    /* Reviews mobile styles */
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    /* Featured section mobile styles */
    .featured-videos {
        gap: 20px;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .video-container iframe {
        height: 220px;
    }
    
    .partner-card {
        min-width: 120px;
        padding: 15px 20px;
    }
}

/* =====================
   7. Product Showcase Section
   ===================== */
.showcase-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 40px;
}

.showcase-text {
    flex: 1;
    max-width: 600px;
}

.showcase-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.showcase-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(229, 57, 53, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229, 57, 53, 0.2);
    border-color: rgba(229, 57, 53, 0.2);
    background-color: rgba(229, 57, 53, 0.05);
}

.showcase-icon {
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(229, 57, 53, 0.3);
    flex-shrink: 0;
}

.showcase-icon i {
    font-size: 1.7rem;
    color: white;
}

.showcase-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.showcase-content p {
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}

.showcase-circle {
    display: none; /* Hide the red glowing circle */
}

.floating-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 30px;
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
}

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

@keyframes glow {
    0% {
        filter: drop-shadow(0 20px 30px rgba(229, 57, 53, 0.3));
    }
    50% {
        filter: drop-shadow(0 20px 40px rgba(229, 57, 53, 0.7));
    }
    100% {
        filter: drop-shadow(0 20px 50px rgba(229, 57, 53, 0.9));
    }
}

/* Responsive styles for showcase */
@media (max-width: 992px) {
    .showcase-container {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .showcase-text, .showcase-image {
        max-width: 100%;
    }
    
    .showcase-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .showcase-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .showcase-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .showcase-icon i {
        font-size: 1.4rem;
    }
    
    .showcase-content h3 {
        font-size: 1.3rem;
    }
    
    .showcase-content p {
        font-size: 0.95rem;
    }
    
    .floating-image {
        width: 200px;
        height: 200px;
    }
}

/* =====================
   8. Statistics Section
   ===================== */
.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
    background-color: var(--card-bg);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 57, 53, 0.1);
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(229, 57, 53, 0.15), transparent 70%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.stat-plus {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-left: 2px;
    margin-top: -30px;
    font-weight: 700;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* World Map Styles */
.world-map-container {
    margin: 30px 0 0;
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(229, 57, 53, 0.1);
    overflow: hidden;
}

.world-map {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229, 57, 53, 0.1);
    background-color: #1a1a1a;
}

.map-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: grayscale(0.8) contrast(1.2) brightness(0.8);
}

.map-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    transition: z-index 0.01s;
}

.point-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #ffffff, 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 5;
}

.point-pulse::before,
.point-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: pulse 2s infinite;
}

.point-pulse::after {
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.country-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.country-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.map-point:hover .country-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.map-point:hover {
    z-index: 500 !important;
    position: relative;
}

.map-point:hover .point-pulse {
    background: #ff0000;
    box-shadow: 0 0 15px #ff0000, 0 0 30px rgba(255, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .world-map-container {
        padding: 15px;
    }
    
    .world-map {
        height: 280px;
    }
    
    .map-point {
        width: 12px;
        height: 12px;
    }
    
    .point-pulse {
        width: 10px;
        height: 10px;
    }
    
    .country-tooltip {
        font-size: 0.8rem;
        padding: 4px 8px;
        bottom: 20px;
    }
    
    .map-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .countries-flags {
        gap: 8px;
        padding: 8px;
    }
    
    .flag-item {
        font-size: 1.3rem;
    }
    
    .world-map {
        height: 250px;
    }
}

/* =====================
   13. Call To Action Section
   ===================== */
.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(183, 28, 28, 0.9), rgba(229, 57, 53, 0.9));
    border-radius: 30px;
    padding: 60px;
    margin: 80px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/banner.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    flex: 2;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
}

.button-alt {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.button-alt::before {
    background: rgba(255, 255, 255, 0.3);
}

.cta-graphic {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.cta-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: pulse 4s ease-in-out infinite;
    position: relative;
}

.cta-graphic i {
    position: absolute;
    font-size: 5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 40px;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .cta-graphic {
        min-height: 200px;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

/* Mobile responsive adjustments for screenshots */
@media (max-width: 768px) {
    .screenshots img {
        width: 180px;
    }
    
    .cta-container {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }
    
    .cta-content {
        padding: 40px 25px !important;
    }
    
    .cta-content h2 {
        font-size: 1.8em !important;
    }
    
    .cta-content p {
        font-size: 0.95em !important;
    }
}

.world-map {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229, 57, 53, 0.1);
    background-color: #1a1a1a;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: grayscale(0.8) contrast(1.2) brightness(0.8);
}

.d3-world-map {
    display: none;
}

.d3-world-map svg {
    display: none;
}

.d3-world-map .country {
    display: none;
}

.d3-world-map .country.highlight {
    display: none;
}

.d3-world-map .country.highlight.pulse {
    display: none;
}

.static-map-fallback {
    display: none;
}

.static-map {
    display: none;
}

/* Background for the static map */
.static-map-fallback::before {
    display: none;
}

.static-map-dots {
    display: none;
}

.map-dot {
    display: none;
}

/* Add a white border around the map dots */
.map-dot::after {
    display: none;
}

@keyframes pulse-map {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* JavaScript disabled fallback */
html:not(:has(.js-enabled)) .static-map-fallback {
    display: none;
}

html:not(:has(.js-enabled)) .world-map,
html:not(:has(.js-enabled)) .d3-world-map {
    display: block;
}

/* Special pulsing class for static map dots */
.map-dot.pulsing {
    display: none;
}

@keyframes pulse-highlight {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDAiIGhlaWdodD0iNDAwIj48cGF0aCBkPSJNMzA2LDE5NkMzMDAsMjA3IDI4OCwyMTEgMjc4LDIyMkMyNjcsMjE5IDI2OSwyMDQgMjU4LDIwMkMyNTQsMjEzIDI0NCwyMjEgMjQwLDIzMkMyMzAsMjM0IDIyMywyMzAgMjE3LDIyMkMyMjIsMjExIDIxOSwyMDAgMjI0LDE5MkMyMTksMTgzIDIxMSwxNzMgMjA1LDE3MkMyMDgsMTU5IDE5MywxNTggMTg0LDE1MUMxODcsMTM3IDE3OSwxMzMgMTcyLDEyM0MxNjIsMTE4IDE0OSwxMTQgMTQxLDEwOUMxNDEsOTggMTM0LDkyIDEzMyw3OUMxNDMsNjkgMTQwLDU0IDE1MSw0NEMxNjMsNDcgMTc0LDQyIDE4NSw0N0MxOTYsNDAgMjEyLDQxIDIyNCw0MkMyMjUsNTEgMjM1LDUxIDI0MSw1OEMyNTQsNTggMjY1LDY0IDI3OCw2NEMyODcsNTQgMzAwLDQ3IDMxMCwzN0MzMjQsNDIgMzM4LDMkgMzUxLDQ3QzM1Niw1OSAzNzAsNjAgMzc5LDcwQzM4OSw2NSAzOTksNTkgNDEwLDU4QzQyMCw2MiA0MjcsNzIgNDM3LDcyQzQ1NCw3NSA0NzIsNzQgNDg0LDg4QzQ4MCwxMDIgNDkxLDExMCA0OTYsMTIyQzQ4NywxMzIgNDkzLDE0NyA0OTUsMTYwIDQ5MSwxNzcgNDk4LDE4OSA0ODgsMjAwIDQ3NiwyMTEgNDgwLDIyN0M0NzAsMjQ2IDQ2MCwyNTQgNDU3LDI2NkM0NDIsMjcyIDQyNywyNzMgNDE1LDI3NkM0MDUsMjgzIDM5MywyODcgMzg1LDI5OEMzNzMsMjk2IDM2MywyOTIgMzUxLDI5M0MzNDYsMzA1IDMzNSwzMDkgMzMzLDMyMkMzMjEsMzI1IDMxMywzMzMgMzAyLDMzOUMzMDMsMzIxIDI5NSwzMDMgMjg2LDI4OEMyODIsMjc0IDI2OSwyNjggMjcxLDI1MkMyNTgsMjQ4IDI0NywyNDIgMjM5LDIzMEMyNTAsMjE3IDI2NSwyMDcgMjc5LDE5N0MyODcsMTkwIDI5NywxODEgMzA2LDE5NloiIGZpbGw9IiM0NDQiLz48cGF0aCBkPSJNNjQwLDIzNEM2MzYsMjQ3IDYyMCwyNDcgNjA5LDI0MEM2MDAsMjMwIDU5MCwyMjUgNTgyLDIyMEM1NzYsMjI5IDU2MywyMzMgNTYxLDI0NEM1NzIsMjU4IDU4MywyNzIgNTkzLDI4OEM1ODUsMzAwIDU3NSwzMTAgNTU5LDMxMUM1NDgsMzAyIDUzOCwyOTAgNTI2LDI4MkM1MTMsMjc3IDUxMywyNjEgNDk5LDI1OEM0ODcsMjY4IDQ4MiwyODQgNDczLDI5OEM0NzEsMzE3IDQ1NywzMjggNDQzLDMzN0M0MzIsMzI5IDQxNywzMjcgNDA4LDMxNkMzOTksMzAzIDM4NywyOTMgMzc5LDI4MUMzNjcsMjc1IDM1NSwyNjcgMzQxLDI2OEMzMjksMjc3IDMxOSwyOTAgMzA0LDI5MkMyODksMjg3IDMwMCwyNjggMjkzLDI1OUMyOTQsMjQzIDI5MiwyMjcgMjk2LDIxMkMzMDUsMjAxIDMxOSwxOTcgMzMxLDE5MkMzNDMsMTgyIDM1NywxNzUgMzcxLDE2OUMzODUsMTY1IDM5OCwxNzMgNDExLDE3NkM0MjMsMTcxIDQzOCwxNzUgNDUyLDE3NEM0NTUsMTYyIDQ2OCwxNTkgNDc2LDE1MUM0OTEsMTUyIDUwNiwxNDkgNTE5LDE1NEM1MzEsMTYyIDU0MCwxNzYgNTUzLDE4M0M1NjgsMTgzIDU4MywxODMgNTk4LDE4NkM2MTAsMTkzIDYyNiwyMDAgNjMzLDIxM0M2NDUsMjE4IDY0NCwyMzEgNjU3LDIzNUM2NzEsMjQ0IDY4OCwyNDcgNjk5LDI2MEM2OTQsMjczIDY4NCwyODcgNjcyLDI5M0M2NjAsMjkzIDY0OCwyOTQgNjM3LDI4OUM2MjUsMjc5IDYxNSwyNjYgNjAyLDI1OUM1OTMsMjQ3IDU5NiwyMjkgNjA4LDIxOEM2MTgsMjE1IDYzNCwyMTEgNjQwLDIyM0M2NDgsMjI2IDY0NiwyMzMgNjQwLDIzNFoiIGZpbGw9IiM0NDQiLz48cGF0aCBkPSJNNzAsMjA0QzY2LDE5MCA3NCwxNzcgODYsMTcwQzEwMCwxNjYgMTE1LDE2NiAxMjksMTYzQzE0MywxNjkgMTU3LDE3NyAxNzIsMTcxQzE3OSwxNTkgMTg3LDE0NyAxOTgsMTM5QzIxMiwxMzQgMjI3LDEzMCAyNDIsMTMwQzI1NiwxMzYgMjcxLDEzNyAyODIsMTQ3QzI5MiwxNTYgMjk3LDE2OSAzMDgsMTc5QzMxNywxOTEgMzI3LDIwMiAzMzksMjEyQzM1MSwyMTcgMzY2LDIxNiAzNzgsMjI0QzM5MCwyMzAgNDAyLDI0MCA0MTQsMjQ4QzQyNiwyNDQgNDQwLDI0MiA0NTMsMjM5QzQ2MCwyMjggNDY4LDIxNSA0NzksMjA3QzQ5MiwyMDAgNTA2LDE5MiA1MTcsMTgyQzUzMiwxODEgNTQ4LDE4NCA1NjIsMTkyQzU3MywyMDEgNTg0LDIxMSA1OTMsMjI0QzYwNCwyMzYgNjEwLDI1MCA2MjIsMjYyQzYzNCwyNzAgNjQ1LDI4MiA2NTcsMjk0QzY2MSwyODEgNjU4LDI2NSA2NjcsMjUzQzY3NCwyNDIgNjg0LDIzMyA2OTQsMjI1QzcwNywyMTkgNzE5LDIwOSA3MzMsMjEwQzcyOCwyMjMgNzI3LDI0MCA3MTcsMjUyQzcwOCwyNjMgNzAzLDI3OCA3MDAsMjk1QzY5MSwyOTkgNjgxLDMwMSA2NzMsMzA3QzY1OCwzMDkgNjQzLDMwOCA2MjksMzA0QzYxOCwyOTAgNjA1LDI3OCA1OTIsMjY4QzU3OSwyNTggNTY0LDI1NCA1NDksMjUxQzUzNywyNDIgNTI1LDIzMiA1MTQsMjIxQzUwMywyMTggNDkxLDIyNiA0ODEsMjMzQzQ3NCwyNDUgNDY1LDI1OSA0NDcsMjYwQzQyOCwyNTkgNDExLDI1OCAzOTQsMjUyQzM4MSwyNDMgMzcyLDIyOSAzNTcsMjI0QzM0NiwyMzMgMzM2LDI0NCAzMjIsMjUyQzMxMSwyNjcgMzAxLDI4MSAyODQsMjg3QzI2OSwyODEgMjU1LDI3MSAyMzgsMjc0QzIxOSwyNzEgMjAwLDI3NiAxODQsMjg4QzE3MCwyODAgMTUwLDI4MCAxMzYsMjg3QzEyMiwyOTAgMTA5LDI3OSA5NywyNzJDODYsMjYzIDc0LDI1MCA2NSwyMzZDNzQsMjI1IDg0LDIxMSA4OSwxOTlDOTUsMTg3IDEwNiwxNzcgMTE5LDE3OEMxMzIsMTc5IDE0NSwxNzIgMTU2LDE2NEMxNzIsMTU3IDE4OCwxNTEgMjA1LDE0N0MyMTYsMTM2IDIyNiwxMjMgMjM4LDExMUMyNTAsMTA0IDI2Miw5OSAyNzQsOTJDMjkwLDg3IDMwNyw4OSAzMjQsODdDMzM5LDkzIDM1NSwxMDIgMzcyLDEwNEMzODcsOTcgNDAzLDkwIDQxNCw3OEM0MjgsNzYgNDQzLDcwIDQ1Nyw3MUM0NzIsNzQgNDg3LDc5IDUwMSw4NkM1MTQsOTcgNTI1LDExMCA1MzcsMTIzQzU0OSwxMzIgNTY0LDEzNiA1NzgsMTQxQzU5MywxNDYgNjA4LDEU0QzYyNCwxNTkgNjM2LDE1OSA2NDgsMTY1QzY2MSwxNjggNjkwLDE3NCA3MDQsMTgxQzcxMCwxOTYgNzI0LDIwOCA3MzIsMjI0Qzc0NCwyMzcgNzU0LDI1NCA3NjQsMjcxQzc3MywyODYgNzgyLDMwMiA3OTMsMzE3Qzc4MCwzMTggNzY3LDMxMiA3NTQsMzA2Qzc0MywyOTkgNzMyLDI4OCA3MjEsMjc5QzcwOSwyNzMgNjk0LDI3MSA2ODIsMjY1QzY3NCwyNTQgNjc3LDIzOSA2NzIsMjI3QzY2MiwyMTcgNjUxLDIwNSA2NDUsMTkyQzYzMSwxOTAgNjE5LDE4NCA2MDYsMTgwQzU5MSwxNzcgNTc2LDE3NyA1NjEsMTgwQzU0NiwxNzkgNTMxLDE3MSA1MTYsMTY4QzUwMSwxNzYgNDg2LDE4NCA0NzMsMTk1QzQ2MCwyMDIgNDUwLDIxMyA0MzcsMjIwQzQyMSwyMjAgNDA0LDIyMCAzODgsMjE2QzM3NCwyMDkgMzYxLDIwMCAzNDYsMTk0QzMzMywxODMgMzE5LDE3NCAzMDMsMTcxQzI5MywxNjMgMjgzLDEU3IDI3MywxNDRDIDI2MSwxNDEgMjUxLDE0NiAyMzksMTUwQzIyNiwxNTMgMjEzLDE1OCAyMDEsMTY1QzE4OCwxNjcgMTc2LDE3MSAxNjMsMTc1QzE1MSwxODIgMTQxLDE5MSAxMjgsMTk0QzExNCwxOTYgMTAxLDE5NSA4NywyMDBDODEsMjAxIDc0LDIwMiA3MCwyMDRaIiBmaWxsPSIjNDQ0Ii8+PC9zdmc+');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 1;
}

.map-base {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.7) contrast(1.2);
    transition: all 0.5s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Add vignette effect */
.world-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 30%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 2;
    border-radius: 10px;
}

.countries-flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(229, 57, 53, 0.1);
}

.flag-item {
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.flag-item:hover {
    transform: translateY(-5px) scale(1.2);
}

/* Add tooltip effect */
.flag-item::after {
    content: attr(title);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.flag-item:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}