/**
 * Cookie Consent Banner Styles
 * GDPR-compliant cookie banner with smooth animations
 */

.groovy-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 16px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.groovy-cookie-banner-visible {
    transform: translateY(0);
}

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

.groovy-cookie-content {
    flex: 1;
    min-width: 0;
}

.groovy-cookie-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
}

.groovy-cookie-text a {
    color: #4ade80;
    text-decoration: underline;
    transition: color 0.2s;
}

.groovy-cookie-text a:hover {
    color: #22c55e;
}

.groovy-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.groovy-cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.groovy-cookie-accept {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #0a0a0a;
}

.groovy-cookie-accept:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.groovy-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.groovy-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.groovy-cookie-btn:active {
    transform: translateY(0);
}

/* Footer Cookie Settings button */
.footer-cookie-settings {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-cookie-settings:hover {
    color: #4ade80;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .groovy-cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .groovy-cookie-text {
        font-size: 13px;
    }

    .groovy-cookie-actions {
        flex-direction: column;
    }

    .groovy-cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* Dark mode support (if using dark mode toggle) */
@media (prefers-color-scheme: dark) {
    /* Banner is already dark, no changes needed */
}
