:root {
    --bg-dark: #0f0f10;
    --accent-green: #4ade80; /* Vibrant lime green like the character */
    --accent-gold: #fbbf24;
    --accent-purple: #a855f7;
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Premium Mesh Background */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 10% 10%, rgba(74, 222, 128, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(251, 191, 36, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(168, 85, 247, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(15, 15, 16, 1) 0%, rgba(25, 25, 28, 1) 100%);
    background-size: cover;
}

.container {
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    z-index: 1;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    color: var(--accent-green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.header h1 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.header p {
    color: var(--text-dim);
    font-size: 16px;
}

/* Content List & Cards */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px currentColor;
}

.card-icon.download {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-green);
}

.card-icon.play {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.card-icon.gift {
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent-gold);
}

.card-info {
    flex-grow: 1;
}

.card-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-info p {
    font-size: 13px;
    color: var(--text-dim);
}

.card-arrow {
    color: var(--text-dim);
    transition: transform 0.3s ease;
}

.card:hover .card-arrow {
    transform: translateX(5px);
    color: var(--text-white);
}

/* Bonus Elements */
.bonus-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0 10px 10px;
    color: #a855f7;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.star-icon {
    width: 16px;
}

.label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.8;
}

.label.gold {
    color: var(--accent-gold);
}

.super-bonus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.super-bonus:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: scale(1.02);
}

.super-bonus-content {
    display: flex;
    align-items: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
}

.footer p {
    color: var(--text-dim);
    font-size: 14px;
}

.footer a {
    color: var(--text-white);
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
    }
    
    .header h1 {
        font-size: 28px;
    }
    
    .card {
        padding: 16px;
    }
    
    .card-icon {
        width: 44px;
        height: 44px;
        margin-right: 15px;
    }
    
    .card-info h3 {
        font-size: 16px;
    }
}
