.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f1218 0%, #1a1d26 100%);
    border-top: 1px solid rgba(79, 110, 247, 0.2);
    padding: 24px;
    z-index: 999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.cookie-banner-text h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-weight: 600;
    font-family: 'Sora', -apple-system, sans-serif;
}

.cookie-banner-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    font-family: 'DM Sans', -apple-system, sans-serif;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sora', -apple-system, sans-serif;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #4f6ef7 0%, #7c5cff 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 110, 247, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(79, 110, 247, 0.4);
}

.cookie-accept:active {
    transform: translateY(0);
}

.cookie-reject {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-reject:active {
    background: rgba(255, 255, 255, 0.12);
}

.cookie-link {
    color: rgba(79, 110, 247, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    cursor: pointer;
    font-family: 'DM Sans', -apple-system, sans-serif;
}

.cookie-link:hover {
    color: #4f6ef7;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cookie-banner-buttons {
        justify-content: stretch;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }

    .cookie-link {
        order: 3;
        grid-column: 1 / -1;
        text-align: center;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner-text h3 {
        font-size: 1rem;
    }

    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .cookie-banner-buttons {
        gap: 8px;
    }
}
