:root {
    --primary-glow: radial-gradient(rgba(255, 166, 0, 0.4), rgba(255, 166, 0, 0));
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background: #0a0a0c;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.red-ticker {
    background: linear-gradient(90deg, #991b1b, #7f1d1d);
    box-shadow: 0 0 20px rgba(185, 28, 28, 0.4);
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 150s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-glow);
    filter: blur(60px);
    z-index: -1;
}

.card-title {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
    transform: scale(1.02);
}

.profile-img {
    border: 2px solid #f59e0b;
    padding: 3px;
    border-radius: 50%;
}