/* Cookie Consent Banner — Geta.Team
   Adapted from elest.io with the Geta cyan brand. */

#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0a0a1a;
    border-top: 1px solid rgba(0, 229, 255, 0.18);
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    animation: ccSlideUp 0.3s ease-out;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@keyframes ccSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

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

.cookie-consent-text { flex: 1; min-width: 300px; }

.cookie-consent-text h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #cbd5e1;
}

.cookie-consent-text a {
    color: #00E5FF;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-text a:hover { color: #5ff0ff; }

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-consent-btn-accept {
    background-color: #00E5FF;
    color: #0a0a1a;
}

.cookie-consent-btn-accept:hover {
    background-color: #5ff0ff;
    transform: translateY(-1px);
}

.cookie-consent-btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-consent-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    #cookie-consent-banner { padding: 16px; }
    .cookie-consent-container { flex-direction: column; align-items: stretch; gap: 14px; }
    .cookie-consent-text { min-width: auto; }
    .cookie-consent-text h3 { font-size: 15px; }
    .cookie-consent-text p { font-size: 12.5px; }
    .cookie-consent-buttons { justify-content: stretch; }
    .cookie-consent-btn { flex: 1; padding: 11px 18px; }
}
