/* ============================================
   AETHROC Cookie Consent Banner
   Minimal Bottom Banner Design
   ============================================ */

/* Local Font Fallbacks - Always loaded */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: local('Inter'), local('Inter-Regular');
}

@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: local('Space Grotesk'), local('SpaceGrotesk-Regular');
}

/* ============================================
   BOTTOM BANNER STYLE
   ============================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: linear-gradient(145deg, rgba(15, 15, 22, 0.98) 0%, rgba(8, 8, 12, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-banner.hide {
    transform: translateY(100%);
    opacity: 0;
}

/* Banner Container */
.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

/* Banner Content */
.cookie-banner-content {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner-title-icon {
    color: #ff6b00;
}

.cookie-banner-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cookie-banner-text a {
    color: #ff6b00;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
    color: #ff8533;
    text-decoration: underline;
}

/* Banner Actions */
.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 16px 20px;
    }

    .cookie-banner-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner-content {
        min-width: unset;
        text-align: center;
    }

    .cookie-banner-title {
        justify-content: center;
    }

    .cookie-banner-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 14px 16px;
    }

    .cookie-banner-title {
        font-size: 15px;
    }

    .cookie-banner-text {
        font-size: 12px;
    }

    .cookie-banner-actions {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
}