/* Cookie Consent Banner - August 2026 */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#cookie-consent-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-text a {
    color: #4ecdc4;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #45b7aa;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

#cookie-agree-btn {
    background: #4ecdc4;
    color: #1a1a2e;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

#cookie-agree-btn:hover {
    background: #45b7aa;
    transform: translateY(-1px);
}

#cookie-agree-btn:active {
    transform: translateY(0);
}

#cookie-dismiss-btn {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

#cookie-dismiss-btn:hover {
    color: #fff;
    border-color: #888;
}

.cookie-learn-more {
    color: #4ecdc4;
    text-decoration: none;
    font-size: 14px;
    padding: 12px 16px;
}

.cookie-learn-more:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    #cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-text {
        font-size: 14px;
    }
}