:root {
    --color-primary: #FF6B35;
    --color-secondary: #004E89;
    --color-accent: #F7B801;
    --color-dark: #1A1A2E;
    --color-light: #EAEAEA;
    --color-premium: #FFD700;
    --color-success: #4CAF50;
    --color-error: #F44336;
    
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-premium: 0 8px 32px rgba(255, 215, 0, 0.3);
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* Переключатель языков */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.language-switcher:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.lang-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
    min-width: 45px;
    text-align: center;
}

.lang-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
    transform: scale(1.05);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 40px;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Hero */
.hero {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 60px 0;
    margin: 40px 20px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: slideDown 0.8s ease-out;
}

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

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

.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: -2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.logo .accent {
    color: var(--color-primary);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tagline {
    font-size: 1.2rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 184, 1, 0.1));
    border-radius: 16px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
    opacity: 0;
}

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

.free-plan {
    --index: 0;
}

.premium-plan {
    --index: 1;
    border: 3px solid var(--color-premium);
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.premium-plan:hover {
    box-shadow: var(--shadow-premium);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--color-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-badge.premium {
    background: linear-gradient(135deg, var(--color-premium), var(--color-accent));
    color: var(--color-dark);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.plan-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.plan-price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--color-light);
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--color-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #FF8C5A);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-premium {
    background: linear-gradient(135deg, var(--color-premium), var(--color-accent));
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: #eee;
    color: var(--color-dark);
}

.btn-secondary:hover {
    background: #ddd;
}

/* Forms */
.add-form {
    margin-top: 40px;
    animation: slideDown 0.5s ease-out;
}

.form-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.form-container h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 1.05rem;
}

.form-group input[type="text"],
.form-group input[type="url"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 0.9rem;
}

.days-selector {
    background: var(--color-light);
    padding: 25px;
    border-radius: 12px;
}

.days-selector input[type="range"] {
    width: 100%;
    margin-bottom: 15px;
    height: 8px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.days-selector input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.days-display {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--color-primary);
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(247, 184, 1, 0.1));
    border-radius: 12px;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.total-price {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--color-primary);
}

.code-section {
    background: var(--color-dark);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.code-section h4 {
    color: white;
    margin-bottom: 15px;
}

.code-block {
    position: relative;
    background: #2a2a3e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.code-block code {
    color: #a9dc76;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    display: block;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #FF8C5A;
    transform: scale(1.05);
}

.code-section small {
    color: var(--color-accent);
    display: block;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Stats Section */
.stats-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin: 40px 20px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out;
}

.stats-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 30px;
}

.stats-lookup {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.stats-lookup input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--color-light);
    border-radius: 10px;
    font-size: 1rem;
}

.stats-lookup .btn {
    width: auto;
    padding: 14px 30px;
}

/* Стили для статистики */
.stat-box.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 184, 1, 0.15));
    border: 2px solid var(--color-primary);
}

.stat-box.highlight .stat-value {
    color: var(--color-primary);
    font-size: 3rem;
}

/* Кликабельная статистика с dropdown */
.stat-clickable {
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.stat-clickable .stat-label {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

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

.stat-clickable:hover .dropdown-icon {
    transform: translateY(2px);
}

/* Выпадающий список стран */
.countries-dropdown {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 400px;
    max-height: 500px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
}

.countries-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.countries-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 184, 1, 0.05));
}

.countries-dropdown-header h4 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-dark);
}

.close-dropdown {
    cursor: pointer;
    font-size: 2rem;
    color: #999;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-dropdown:hover {
    color: var(--color-primary);
    background: rgba(255, 107, 53, 0.1);
    transform: rotate(90deg);
}

.countries-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
}

.countries-list::-webkit-scrollbar {
    width: 8px;
}

.countries-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.countries-list::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.countries-list::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

.no-data {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .countries-dropdown {
        width: 90vw;
        max-width: 350px;
    }
}

/* География посетителей */
.countries-stats {
    margin: 30px 0;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.countries-stats h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.countries-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.country-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.country-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.country-flag {
    font-size: 1.5rem;
}

.country-name {
    flex: 1;
    font-weight: 600;
    color: var(--color-dark);
}

.country-count {
    font-weight: 700;
    color: var(--color-primary);
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
}

.country-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.country-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* How It Works */
.how-it-works {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin: 40px 20px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease-out;
}

.how-it-works h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 40px;
    text-align: center;
}

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

.step-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 184, 1, 0.05));
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-display);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: white;
}

/* New Button Styles */
.btn-free {
    background: linear-gradient(135deg, #FF6B35, #F7B801) !important;
    color: white !important;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: none;
}

.btn-free:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-premium {
    background: linear-gradient(135deg, #4CAF50, #8BC34A) !important;
    color: white !important;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    text-transform: none;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Plan Card Updates */
.plan-card.free-card {
    border: 2px solid #FF6B35;
}

.plan-card.premium-card {
    border: 2px solid #4CAF50;
}

.plan-card .plan-price {
    margin: 15px 0;
}

.plan-card .plan-price .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
}

.plan-card.premium-card .plan-price .price {
    color: #4CAF50;
}

.plan-card .plan-price .period {
    font-size: 1rem;
    color: #666;
}

/* Progress Bar */
.progress-bar {
    margin: 20px 0;
    background: #f0f0f0;
    border-radius: 25px;
    height: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35, #F7B801);
    border-radius: 25px;
    transition: width 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

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

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

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    z-index: 1;
}

/* Form Message Updates */
.form-message {
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.form-message.success {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: linear-gradient(135deg, #F44336, #E91E63);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .stats-lookup {
        flex-direction: column;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-free, .btn-premium {
        width: 100%;
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .progress-bar {
        height: 35px;
    }
    
    .progress-text {
        font-size: 0.9rem;
    }
    
    /* Widget visibility on mobile */
    #trafficflow-widget {
        width: 80px !important;
        height: 80px !important;
    }
}

/* TrafficFlow Widget Styles */
#trafficflow-widget {
    /* Styled directly in widget.js for full control */
}

/* Widget hover effect */
#trafficflow-widget:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Countries stats list */
.countries-stats {
    list-style: none;
    padding: 10px 0;
    margin: 10px 0;
}

.countries-stats li {
    padding: 5px 10px;
    background: #f5f5f5;
    margin: 5px 0;
    border-radius: 4px;
    font-size: 0.9rem;
}