

.demo-content {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.demo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.demo-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Cookie Consent Banner */
#cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
                0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 28px 32px;
    z-index: 9999;
    /* max-width: 480px; */
    width:100%;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.cookie-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-text {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 24px;
    text-align: center;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 100px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-reject {
    background: rgba(108, 122, 137, 0.1);
    color: #6c7a89;
    border: 2px solid rgba(108, 122, 137, 0.2);
}

.btn-reject:hover {
    background: rgba(108, 122, 137, 0.15);
    border-color: rgba(108, 122, 137, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 122, 137, 0.2);
}

.btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-accept:active,
.btn-reject:active {
    transform: translateY(0);
}

/* Sparkle animation */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 2s infinite;
}

.sparkle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 80%; right: 15%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { top: 30%; right: 25%; animation-delay: 1s; }
.sparkle:nth-child(4) { bottom: 20%; left: 10%; animation-delay: 1.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Responsive design */
@media (max-width: 480px) {
    #cookie-consent {
        margin: 0 16px;
        padding: 24px;
        bottom: 16px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Close animation */
.cookie-consent-closing {
    animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
    to {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
}
