/* Custom Styles for GoldKitty Pro */
:root {
    --gold-primary: #f59e0b;
    --gold-dark: #b45309;
    --gold-light: #fcd34d;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Selection Color */
::selection {
    background: rgba(245, 158, 11, 0.3);
    color: inherit;
}

/* Gold Shimmer Effect */
.gold-shimmer {
    background: linear-gradient(90deg, 
        rgba(245, 158, 11, 0) 0%, 
        rgba(245, 158, 11, 0.3) 50%, 
        rgba(245, 158, 11, 0) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.dark ::-webkit-scrollbar-track {
    background: #0f172a;
}

.dark ::-webkit-scrollbar-thumb {
    background: #334155;
}

/* Gradient Text Utility */
.text-gradient-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lucky Draw Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin 3s linear infinite;
}

/* Card Hover Effects */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Button Glow */
.btn-glow {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    transition: box-shadow 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

/* Dashboard Chart Bars Animation */
.chart-bar {
    transition: height 1s ease-out;
}

/* Responsive Typography */
@media (max-width: 640px) {
    .font-serif {
        font-size: 0.9em;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}