/* TikBoost Custom Styles */

/* Gradient utilities */
.gradient-neon {
    background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
}

.gradient-neon-text {
    background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-card {
    background: linear-gradient(180deg, #1A1A2E 0%, #16162A 100%);
}

/* Glow effects */
.glow-cyan {
    box-shadow: 0 0 20px rgba(37, 244, 238, 0.15);
}

.glow-magenta {
    box-shadow: 0 0 20px rgba(254, 44, 85, 0.15);
}

.glow-cyan-strong {
    box-shadow: 0 0 30px rgba(37, 244, 238, 0.25), 0 0 60px rgba(37, 244, 238, 0.1);
}

/* Neon border */
.neon-border {
    border: 1px solid rgba(37, 244, 238, 0.2);
}

.neon-border:hover {
    border-color: rgba(37, 244, 238, 0.4);
}

/* Animations */
@keyframes slide-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-neon {
    0%, 100% { box-shadow: 0 0 10px rgba(37, 244, 238, 0.2); }
    50% { box-shadow: 0 0 25px rgba(37, 244, 238, 0.4); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.animate-slide-in {
    animation: slide-in 0.3s ease-out;
}

.animate-fade-in {
    animation: fade-in 0.4s ease-out;
}

.animate-pulse-neon {
    animation: pulse-neon 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #2A2A45;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3A3A55;
}

/* Package card hover */
.package-card {
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 244, 238, 0.3);
    box-shadow: 0 8px 30px rgba(37, 244, 238, 0.1);
}

/* Step wizard */
.step-item {
    position: relative;
}

.step-item.active .step-circle {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
    color: white;
}

.step-item.completed .step-circle {
    background: #25F4EE;
    color: #121212;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2A2A45;
    color: #6B6B80;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-line {
    height: 2px;
    flex: 1;
    background: #2A2A45;
    transition: background 0.3s ease;
}

.step-line.active {
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
}

/* FAQ Accordion */
.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-toggle.open {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

/* Progress bar */
.progress-bar {
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
    transition: width 0.5s ease;
    border-radius: 9999px;
}

/* Badge pulse */
.badge-popular {
    position: relative;
}

.badge-popular::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
    opacity: 0.3;
    z-index: -1;
    animation: pulse-neon 2s ease-in-out infinite;
}

/* Admin sidebar */
.sidebar-link {
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background: rgba(37, 244, 238, 0.05);
}

.sidebar-link.active {
    background: rgba(37, 244, 238, 0.1);
    border-right: 3px solid #25F4EE;
    color: #25F4EE;
}

/* Form inputs */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #25F4EE !important;
    box-shadow: 0 0 0 3px rgba(37, 244, 238, 0.1);
}

/* Table */
.admin-table tr {
    transition: background 0.2s ease;
}

.admin-table tr:hover {
    background: rgba(37, 244, 238, 0.03);
}
