/* --- Stardust Affiliate Platform V3.0 Custom Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0F172A; /* Slate 900 */
    color: #E2E8F0; /* Slate 200 */
}

.glass-pane {
    background: rgba(30, 41, 59, 0.5); /* Slate 800 with 50% opacity */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(51, 65, 85, 0.5); /* Slate 700 with 50% opacity */
    transition: all 0.3s ease;
}
.glass-pane:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(71, 85, 105, 0.7);
}

.glow-on-hover:hover {
    box-shadow: 0 0 15px 2px rgba(139, 92, 246, 0.6), 0 0 30px 5px rgba(22, 163, 74, 0.3); /* Violet & Cyan glow */
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1E293B; /* Slate 800 */ }
::-webkit-scrollbar-thumb { background: #4F46E5; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #6366F1; }

/* Page load animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.5s ease-out forwards; }

/* Input focus glow */
.input-glow:focus-within {
     box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.4);
     border-color: #8B5CF6 !important;
}

/* Background patterns */
.bg-grid {
    background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 2rem 2rem;
}
.bg-hero-pattern {
    background-image: url('/assets/images/ui/hero-bg.svg');
    background-size: cover;
    background-position: center;
}

/* Custom table styles */
.styled-table tbody tr {
    border-bottom: 1px solid #334155; /* Slate 700 */
    transition: background-color 0.2s ease;
}
.styled-table tbody tr:last-child {
    border-bottom: none;
}
.styled-table tbody tr:hover {
    background-color: #1e293b; /* Slate 800 */
}

/* Accordion styles for Alpine.js */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
    