/* WHMCS Themes - Main Stylesheet */

* {
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.theme-card {
    background: white;
    transition: all 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.icon-gradient-purple {
    background: linear-gradient(to bottom right, #a855f7, #9333ea);
}

.icon-gradient-blue {
    background: linear-gradient(to bottom right, #3b82f6, #4f46e5);
}

.icon-gradient-cyan {
    background: linear-gradient(to bottom right, #06b6d4, #0891b2);
}

.icon-gradient-pink {
    background: linear-gradient(to bottom right, #ec4899, #e11d48);
}

.icon-gradient-green {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.icon-gradient-orange {
    background: linear-gradient(to bottom right, #f59e0b, #d97706);
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.carousel-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 400px;
}

.price-tag {
    background: linear-gradient(to bottom right, #10b981, #059669);
}
