/* Cookie Consent Banner Styling */
.ssh-cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 440px;
    width: calc(100% - 48px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 22px 24px;
    z-index: 999999;
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.ssh-cookie-banner.ssh-cookie-visible {
    transform: translateY(0);
    opacity: 1;
}

.ssh-cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ssh-cookie-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
    border-radius: 8px;
    font-size: 16px;
}

.ssh-cookie-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.ssh-cookie-text {
    font-size: 13.5px;
    line-height: 1.55;
    color: #94a3b8;
    margin: 0 0 18px 0;
}

.ssh-cookie-text a {
    color: #38bdf8;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.ssh-cookie-text a:hover {
    color: #7dd3fc;
}

.ssh-cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ssh-cookie-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.ssh-cookie-accept {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.ssh-cookie-accept:hover {
    background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.45);
    color: #ffffff;
}

.ssh-cookie-decline {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ssh-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

@media (max-width: 576px) {
    .ssh-cookie-banner {
        bottom: 12px;
        right: 12px;
        left: 12px;
        width: auto;
        padding: 18px;
        border-radius: 12px;
    }
    .ssh-cookie-actions {
        flex-direction: column;
    }
    .ssh-cookie-btn {
        width: 100%;
    }
}
