/* Enhanced Multi-Geo Styles for OKLV Casino - FULL RESPONSIVE */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-gradient: linear-gradient(180deg, #1cadfe, #0064e0);
    --secondary-gradient: linear-gradient(180deg, #263f89, #0d243c);
    --primary-dark: #0064e0;
    --primary-light: #1cadfe;
    --accent-orange: #ff6b35;
    --accent-yellow: #ffd700;
    --accent-brown: #8b4513;
    --white: #ffffff;
    --bg-light: #f2f4f7;
    --bg-white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
.promo-banner {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
    z-index: 1001;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(28, 173, 254, 0.2);
}

.payment-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-banner .close-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    background: none;
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-banner .close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1.1);
}

@keyframes glow {
    from { box-shadow: 0 0 5px var(--primary-light), 0 2px 10px rgba(28, 173, 254, 0.2); }
    to { box-shadow: 0 0 15px var(--primary-light), 0 4px 20px rgba(28, 173, 254, 0.4); }
}

.header-enhanced {
    background: var(--primary-gradient);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-dark);
    box-shadow: 0 4px 20px rgba(28, 173, 254, 0.2);
}

.payment-strip .container {
    padding: 0 1rem;
}

/* ===== GEO INFO SECTION - BASE ===== */
.geo-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 40px;
    flex-wrap: nowrap;
    width: max-content;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 15px;
    min-width: 70px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.country-selector:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.currency {
    font-weight: bold;
    color: var(--accent-orange);
    font-size: 16px;
    min-width: 20px;
    flex-shrink: 0;
}

.live-players {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    min-width: 90px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--accent-orange);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 11px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    min-width: 110px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.countdown {
    font-weight: bold;
    color: var(--white);
    display: flex;
    align-items: center;
    font-family: 'Courier New', monospace;
}

.countdown span {
    display: flex;
    align-items: center;
}

.bonus-banner {
    background: var(--accent-yellow);
    padding: 8px 14px;
    border-radius: 20px;
    color: var(--accent-brown);
    font-weight: bold;
    font-size: 13px;
    animation: bounce 2s infinite;
    cursor: pointer;
    border: 2px solid rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-shadow: 0 1px 2px rgba(139, 69, 19, 0.2);
    backdrop-filter: blur(10px);
}

.bonus-banner span {
    color: var(--accent-brown);
}

.bonus-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.bonus-amount {
    font-size: 16px;
    color: var(--accent-brown);
}

.support-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    min-width: 80px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.support-info i {
    color: var(--accent-orange);
    animation: pulse 2s infinite;
}

/* ===== PAYMENT STRIP ===== */
.payment-strip {
    background: var(--primary-gradient);
    padding: 8px 0;
    border-bottom: 2px solid var(--primary-dark);
    box-shadow: 0 2px 8px rgba(28, 173, 254, 0.2);
}

.payment-methods-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 12px;
    flex-wrap: wrap;
}

.payment-method-inline {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--white);
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 70px;
    text-align: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.payment-method-inline:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== FLOATING ELEMENTS ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1003;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(28, 173, 254, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    font-weight: 700;
    min-width: 130px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-2px);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(28, 173, 254, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.floating-bonus {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1002;
    background: var(--accent-yellow);
    color: var(--accent-brown);
    padding: 12px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 215, 0, 0.6);
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-shadow: 0 1px 2px rgba(139, 69, 19, 0.2);
    backdrop-filter: blur(10px);
}

.floating-bonus:hover {
    transform: scale(1.1) translateY(-2px);
    color: var(--accent-brown);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.8);
}

.winner-notification {
    position: fixed;
    top: 100px;
    right: -320px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-light);
    box-shadow: 0 6px 20px rgba(28, 173, 254, 0.4);
    z-index: 998;
    transition: right 0.5s ease;
    max-width: 300px;
    min-width: 250px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.winner-notification.show {
    right: 20px;
}

.winner-notification .winner-text {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.4;
}

.winner-notification .winner-amount {
    color: var(--accent-yellow);
    font-size: 14px;
    font-weight: bold;
}

/* ===== RESPONSIVE BREAKPOINTS - NAVIGATION HIDDEN EARLIER ===== */

/* 4K и выше (2560px+) - навигация видна */
@media (min-width: 2560px) {
    .geo-info {
        gap: 25px;
        padding: 12px 18px;
        border-radius: 25px;
    }
    
    .country-selector {
        min-width: 80px;
        padding: 6px 12px;
    }
    
    .flag-icon {
        width: 28px;
        height: 19px;
    }
    
    .currency {
        font-size: 18px;
        min-width: 25px;
    }
    
    .live-players {
        min-width: 100px;
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .urgency-timer {
        min-width: 130px;
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .bonus-banner {
        min-width: 150px;
        font-size: 15px;
        padding: 8px 16px;
    }
    
    .bonus-amount {
        font-size: 18px;
    }
    
    .support-info {
        min-width: 100px;
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .floating-whatsapp,
    .floating-bonus {
        right: 40px;
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* Large Desktop (1920px-2559px) - навигация видна */
@media (min-width: 1920px) and (max-width: 2559px) {
    .geo-info {
        gap: 20px;
        padding: 10px 15px;
        border-radius: 22px;
    }
    
    .country-selector {
        min-width: 70px;
        padding: 5px 10px;
    }
    
    .flag-icon {
        width: 26px;
        height: 17px;
    }
    
    .currency {
        font-size: 17px;
        min-width: 23px;
    }
    
    .live-players {
        min-width: 90px;
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .urgency-timer {
        min-width: 120px;
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .bonus-banner {
        min-width: 140px;
        font-size: 14px;
        padding: 7px 14px;
    }
    
    .bonus-amount {
        font-size: 17px;
    }
    
    .support-info {
        min-width: 90px;
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .floating-whatsapp,
    .floating-bonus {
        right: 30px;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Standard Desktop (1600px-1919px) - навигация видна */
@media (min-width: 1600px) and (max-width: 1919px) {
    .geo-info {
        gap: 16px;
        padding: 9px 14px;
    }
    
    .country-selector {
        min-width: 65px;
    }
    
    .flag-icon {
        width: 25px;
        height: 17px;
    }
    
    .currency {
        font-size: 16px;
        min-width: 22px;
    }
    
    .live-players {
        min-width: 85px;
        font-size: 12px;
    }
    
    .urgency-timer {
        min-width: 115px;
        font-size: 12px;
    }
    
    .bonus-banner {
        min-width: 135px;
        font-size: 13px;
    }
    
    .support-info {
        min-width: 85px;
        font-size: 12px;
    }
}

/* Medium Desktop (1400px-1599px) - навигация видна */
@media (min-width: 1400px) and (max-width: 1599px) {
    .geo-info {
        gap: 14px;
        padding: 8px 12px;
    }
    
    .country-selector {
        min-width: 60px;
    }
    
    .flag-icon {
        width: 24px;
        height: 16px;
    }
    
    .currency {
        font-size: 16px;
        min-width: 20px;
    }
    
    .live-players {
        min-width: 80px;
        font-size: 12px;
    }
    
    .urgency-timer {
        min-width: 110px;
        font-size: 11px;
    }
    
    .bonus-banner {
        min-width: 130px;
        font-size: 13px;
    }
    
    .support-info {
        min-width: 80px;
        font-size: 12px;
    }
}

/* NAVIGATION HIDDEN - Desktop/Tablet (1024px-1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
    /* Hide navigation, show burger */
    .nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    /* Center header buttons */
    .header-content {
        justify-content: space-between;
        align-items: center;
    }
    
    .geo-info {
        gap: 12px;
        padding: 8px 12px;
        flex-shrink: 1;
    }
    
    .country-selector {
        min-width: 55px;
        padding: 4px 8px;
    }
    
    .flag-icon {
        width: 22px;
        height: 15px;
    }
    
    .currency {
        font-size: 15px;
        min-width: 18px;
    }
    
    .live-players {
        min-width: 75px;
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .urgency-timer {
        min-width: 100px;
        font-size: 11px;
        padding: 4px 8px;
        gap: 4px;
    }
    
    .bonus-banner {
        min-width: 120px;
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .bonus-amount {
        font-size: 14px;
    }
    
    .support-info {
        min-width: 75px;
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .floating-whatsapp,
    .floating-bonus {
        right: 20px;
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Large Tablet (769px-1023px) - geo-info переходит на новую строку */
@media (min-width: 769px) and (max-width: 1023px) {
    .nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .geo-info {
        justify-content: space-between;
        margin-top: 10px;
        gap: 10px;
        padding: 6px 8px;
    }
    
    .country-selector {
        min-width: 50px;
        padding: 3px 6px;
    }
    
    .flag-icon {
        width: 20px;
        height: 14px;
    }
    
    .currency {
        font-size: 14px;
        min-width: 16px;
    }
    
    .live-players {
        min-width: 70px;
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .urgency-timer {
        min-width: 95px;
        font-size: 10px;
        padding: 3px 6px;
        gap: 3px;
    }
    
    .bonus-banner {
        min-width: 115px;
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .bonus-amount {
        font-size: 12px;
    }
    
    .support-info {
        display: none;
    }
    
    .floating-whatsapp,
    .floating-bonus {
        right: 15px;
        padding: 10px 14px;
        font-size: 13px;
        min-width: 100px;
    }
}

/* Mobile (481px-768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .promo-banner {
        font-size: 12px;
        padding: 8px 40px 8px 10px;
        min-height: 36px;
    }
    
    .nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    
    .geo-info {
        margin-top: 10px;
        gap: 8px;
        padding: 5px 6px;
        flex-wrap: wrap;
    }
    
    .country-selector {
        min-width: 45px;
        padding: 2px 4px;
    }
    
    .flag-icon {
        width: 18px;
        height: 12px;
    }
    
    .currency {
        font-size: 12px;
        min-width: 14px;
    }
    
    .live-players {
        min-width: 65px;
        font-size: 9px;
        padding: 2px 4px;
        gap: 3px;
    }
    
    .live-dot {
        width: 6px;
        height: 6px;
    }
    
    .urgency-timer {
        min-width: 85px;
        font-size: 9px;
        padding: 2px 4px;
        gap: 2px;
    }
    
    .bonus-banner {
        min-width: 100px;
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .bonus-amount {
        font-size: 11px;
    }
    
    .support-info {
        display: none;
    }
    
    .payment-methods-inline {
        gap: 8px;
        font-size: 10px;
    }
    
    .payment-method-inline {
        padding: 1px 3px;
        min-width: 30px;
        font-size: 8px;
    }
    
    .floating-whatsapp {
        bottom: 10px;
        right: 5px;
        padding: 4px 6px;
        font-size: 10px;
        min-width: 70px;
        gap: 2px;
    }
    
    .floating-bonus {
        bottom: 50px;
        right: 5px;
        padding: 4px 6px;
        font-size: 9px;
        min-width: 75px;
    }
}

@media (max-width: 768px) {
    
    .payment-strip .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Ultra Small Mobile (<320px) */
@media (max-width: 319px) {
    .geo-info {
        flex-direction: column;
        gap: 3px;
        padding: 3px;
        align-items: stretch;
    }
    
    .geo-info > div {
        justify-content: center;
        min-width: auto;
        width: 100%;
    }
    
    .payment-methods-inline {
        gap: 2px;
        font-size: 8px;
    }
    
    .payment-method-inline {
        padding: 1px 2px;
        min-width: 25px;
        font-size: 7px;
    }
}

/* Small Mobile (320px-480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .promo-banner {
        font-size: 11px;
        padding: 6px 35px 6px 8px;
        min-height: 32px;
    }
    
    .nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    
    .geo-info {
        margin-top: 10px;
        gap: 4px;
        padding: 4px;
    }
    
    .country-selector {
        min-width: 40px;
        padding: 2px 4px;
        gap: 2px;
    }
    
    .flag-icon {
        width: 16px;
        height: 11px;
    }
    
    .currency {
        font-size: 11px;
        min-width: 12px;
    }
    
    .live-players {
        min-width: 55px;
        font-size: 8px;
        padding: 2px 4px;
        gap: 2px;
    }
    
    .live-dot {
        width: 5px;
        height: 5px;
    }
    
    .urgency-timer {
        min-width: 70px;
        font-size: 8px;
        padding: 2px 4px;
        gap: 1px;
    }
    
    .bonus-banner {
        min-width: 80px;
        font-size: 9px;
        padding: 2px 4px;
    }
    
    .bonus-amount {
        font-size: 10px;
    }
    
    .support-info {
        display: none;
    }
    
    .payment-methods-inline {
        gap: 4px;
        font-size: 9px;
    }
    
    .payment-method-inline {
        padding: 1px 3px;
        min-width: 30px;
        font-size: 8px;
    }
    
    .floating-whatsapp {
        bottom: 10px;
        right: 5px;
        padding: 4px 6px;
        font-size: 10px;
        min-width: 70px;
        gap: 2px;
    }
    
    .floating-bonus {
        bottom: 50px;
        right: 5px;
        padding: 4px 6px;
        font-size: 9px;
        min-width: 75px;
    }
}

/* Ultra Small Mobile (<320px) */
@media (max-width: 319px) {
    .geo-info {
        flex-direction: column;
        gap: 3px;
        padding: 3px;
        align-items: stretch;
    }
    
    .geo-info > div {
        justify-content: center;
        min-width: auto;
        width: 100%;
    }
    
    .payment-methods-inline {
        gap: 2px;
        font-size: 8px;
    }
    
    .payment-method-inline {
        padding: 1px 2px;
        min-width: 25px;
        font-size: 7px;
    }
}

/* Accessibility and performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .promo-banner,
    .live-dot,
    .bonus-banner,
    .support-info i,
    .floating-whatsapp,
    .floating-bonus {
        animation: none !important;
    }
    
    .winner-notification {
        transition: none !important;
    }
}

@media (prefers-contrast: high) {
    .geo-info,
    .live-players,
    .urgency-timer,
    .bonus-banner,
    .support-info,
    .payment-method-inline {
        border-width: 2px;
        border-color: var(--primary-light);
    }
}

/* Focus states for accessibility */
.country-selector:focus,
.bonus-banner:focus,
.floating-whatsapp:focus,
.floating-bonus:focus,
.promo-banner .close-btn:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(28, 173, 254, 0.2);
}

/* Print styles */
@media print {
    .promo-banner,
    .geo-info,
    .payment-strip,
    .floating-whatsapp,
    .floating-bonus,
    .winner-notification {
        display: none !important;
    }
}