body {
    background-color: #080808;
    color: #FFFFFF;
    scroll-behavior: smooth;
}
.glass {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.gradient-gold {
    background: linear-gradient(135deg, #C8A200 0%, #E6BC00 100%);
}
.text-gradient {
    background: linear-gradient(135deg, #C8A200 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-btn-active {
    background: #C8A200 !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(200, 162, 0, 0.3) !important;
    border-color: #C8A200 !important;
}
.no-scrollbar::-webkit-scrollbar { display: none; }

.platform-active-tiktok { background-color: #000000 !important; color: white !important; border-color: rgba(255,255,255,0.2) !important; }
.platform-active-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important; color: white !important; border-color: transparent !important; }
.platform-active-youtube { background-color: #FF0000 !important; color: white !important; border-color: transparent !important;}
.platform-active-facebook { background-color: #1877F2 !important; color: white !important; border-color: transparent !important;}
.platform-active-spotify { background-color: #1DB954 !important; color: white !important; border-color: transparent !important;}
.platform-active-kick { background-color: #53FC18 !important; color: black !important; border-color: transparent !important;}
.platform-active-otros { background-color: #C8A200 !important; color: black !important; border-color: transparent !important;}

.payment-form-enter { animation: slideIn 0.3s ease-out forwards; }
@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.card-animate {
    animation: fadeInCard 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* Animaci¨Žn de la notificaci¨Žn desde la izquierda */
#order-notification {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateX(-120%);
}
#order-notification.show { transform: translateX(0); }

.modal-overlay {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.checkout-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.checkout-wrapper.open {
    max-height: 400px;
    opacity: 1;
    margin-top: 0.5rem;
}
.buy-btn-wrapper {
    max-height: 60px;
    opacity: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.buy-btn-wrapper.closed {
    max-height: 0;
    opacity: 0;
    transform: scale(0.95);
}