/* Geo IP Bar Styles */
#tilta-geo-ip-bar {
    display: none; /* Hidden by default, shown by JS */
    position: relative;
    width: 100%;
    background: linear-gradient(0deg, #2c3e45 0%, #000000 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#tilta-geo-ip-bar.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tilta-geo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

#tilta-geo-message {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #f0f4f8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.tilta-geo-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

#tilta-geo-visit-btn {
    background-color: #ffffff;
    color: #2c4a55;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid transparent;
}

#tilta-geo-visit-btn:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: #1a313a;
}

#tilta-geo-visit-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

#tilta-geo-dismiss-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #e2e8f0;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

#tilta-geo-dismiss-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tilta-geo-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .tilta-geo-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    #tilta-geo-visit-btn,
    #tilta-geo-dismiss-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}
