@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-obsidian: #0D0E11;
    --slate-surface: #161920;
    --card-surface: #1E222D;
    --border-color: #2D3344;
    --accent-cyan: #00E5FF;
    --accent-purple: #9D4EDD;
    --text-primary: #FFFFFF;
    --text-secondary: #9099A8;
    --error-red: #EF5350;
    --success-green: #4CAF50;
    --glow-color: rgba(0, 229, 255, 0.15);
    --glass-bg: rgba(22, 25, 32, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(157, 78, 221, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.08) 0%, transparent 45%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Header Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 14, 17, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo span {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-badge {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    letter-spacing: 0.5px;
}

.footer-company-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-company-link:hover {
    color: var(--accent-cyan);
}

/* Skeleton Loaders */
.skeleton-text {
    display: inline-block;
    height: 1em;
    vertical-align: middle;
    background: linear-gradient(90deg, #1e222d 25%, #2d3344 50%, #1e222d 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s infinite linear;
    border-radius: 4px;
    width: 100%;
    min-width: 60px;
}
.skeleton-text.w-short { width: 35%; }
.skeleton-text.w-medium { width: 65%; }
.skeleton-text.w-long { width: 85%; }

@keyframes skeleton-pulse {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ----------------------------------------------------
   Gorgeous Glassmorphism Cookie/Privacy Banner
---------------------------------------------------- */
.consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    transform: translateY(100px);
    width: calc(100% - 48px);
    max-width: 360px;
    background: rgba(22, 25, 32, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
}

.consent-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.consent-content {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: left;
}

.consent-content strong {
    color: #ffffff;
}

.consent-content a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.consent-content a:hover {
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.btn-consent-decline {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.2s ease;
    font-weight: 500;
    outline: none;
}

.btn-consent-decline:hover {
    color: #ffffff;
}

.btn-consent-accept {
    background: linear-gradient(135deg, var(--accent-cyan), #00B0FF);
    color: var(--bg-obsidian);
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.15);
    outline: none;
}

.btn-consent-accept:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 16px rgba(0, 229, 255, 0.25);
}

.btn-consent-accept:active {
    transform: scale(0.96);
}

@media (max-width: 600px) {
    .consent-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: calc(100% - 32px);
        max-width: none;
        padding: 16px;
        gap: 12px;
    }
}
