:root {
    --bg-color: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-gold: #f59e0b;
    --accent-orange: #fb923c;
    --tiktok-color: #00f2fe;
    --ig-color: #e1306c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,0.3) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,0.3) 0, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.glass-container {
    width: 100%;
    max-width: 480px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

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

.profile-section {
    text-align: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    padding: 3px;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.benefit-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.glass-link:hover::before {
    left: 100%;
}

.glass-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tiktok-link:hover {
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--tiktok-color);
}
.tiktok-link:hover i {
    color: var(--tiktok-color);
}

.ig-link:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: var(--ig-color);
}
.ig-link:hover i {
    color: var(--ig-color);
}

.glass-link i {
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.section-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.pricing-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ig-card h3 { color: var(--ig-color); }
.tiktok-card h3 { color: var(--tiktok-color); }

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-card li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.pricing-card .price {
    font-weight: 700;
    color: var(--accent-orange);
}

.package-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-group {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
}

.package-group h4 {
    text-align: center;
    color: #3b82f6;
    margin-bottom: 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-group h4 {
    color: #ef4444;
}

.wa-link {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    color: #25D366;
}
.wa-link:hover {
    background: rgba(37, 211, 102, 0.2);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

html {
    scroll-behavior: smooth;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-btn.tiktok-btn:hover {
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--tiktok-color);
    color: var(--tiktok-color);
}

.nav-btn.ig-btn:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: var(--ig-color);
    color: var(--ig-color);
}
