body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: auto;
    background: #1f2937;
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

.cookie-popup h2 {
    margin-top: 0;
    font-size: 22px;
}

.cookie-popup p {
    font-size: 15px;
    line-height: 1.5;
    color: #d1d5db;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.accept-btn {
    background: #22c55e;
    color: white;
}

.accept-btn:hover {
    background: #16a34a;
}

.reject-btn {
    background: #374151;
    color: white;
}

.reject-btn:hover {
    background: #4b5563;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}