/* ============================================================
   Cookie Consent Banner — SAGALID
   ============================================================ */

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1a1a1a;
    border-top: 3px solid #d32525;
    padding: 18px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    font-family: Jost, Arial, sans-serif;
}

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

.cookie-consent-text {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 260px;
}

.cookie-consent-text a {
    color: #d32525;
    text-decoration: underline;
}

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

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

#cookie-accept,
#cookie-decline {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: Jost, Arial, sans-serif;
}

#cookie-accept {
    background: #d32525;
    color: #ffffff;
}

#cookie-accept:hover {
    background: #b01e1e;
}

#cookie-decline {
    background: transparent;
    color: #aaaaaa;
    border: 1px solid #444444;
}

#cookie-decline:hover {
    background: #2a2a2a;
    color: #ffffff;
}

/* YouTube consent gate placeholder */
.yt-consent-gate {
    position: relative;
    width: 100%;
    max-width: 966px;
    background: #111111;
    border: 1px solid #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    box-sizing: border-box;
    min-height: 300px;
    font-family: Jost, Arial, sans-serif;
}

.yt-consent-gate svg {
    width: 60px;
    height: 60px;
    fill: #d32525;
    margin-bottom: 16px;
    opacity: 0.8;
}

.yt-consent-gate p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0 0 20px;
    max-width: 380px;
}

.yt-consent-gate button {
    padding: 10px 28px;
    background: #d32525;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: Jost, Arial, sans-serif;
    transition: background 0.2s ease;
}

.yt-consent-gate button:hover {
    background: #b01e1e;
}

@media (max-width: 600px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-consent-buttons {
        width: 100%;
    }
    #cookie-accept,
    #cookie-decline {
        flex: 1;
        text-align: center;
    }
}
