/* Cookie Consent Banner */
.scc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #f1f1f1;
    padding: 20px;
    z-index: 999999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    box-sizing: border-box;
}

.scc-banner.scc-hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.scc-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .scc-banner-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.scc-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.scc-link {
    color: #66b3ff;
    text-decoration: underline;
    transition: color 0.2s;
}

.scc-link:hover {
    color: #99ccff;
}

.scc-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .scc-banner-buttons {
        width: auto;
    }
}

.scc-btn {
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .scc-btn {
        width: auto;
    }
}

.scc-btn-accept {
    background-color: #2e8b57;
    color: white;
}
.scc-btn-accept:hover {
    background-color: #3cb371;
    transform: translateY(-1px);
}

.scc-btn-decline {
    background-color: transparent;
    color: #ccc;
    border: 1px solid #666;
}
.scc-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: #999;
}

/* Floating Settings Button */
.scc-floating-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background-color: #1a1a1a;
    color: #f1f1f1;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scc-floating-btn:hover {
    transform: scale(1.08);
    background-color: #2a2a2a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scc-floating-btn.scc-hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
}
