:root {
    --bg-color: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --primary: #8b5cf6; /* Violet matching Mikrus vibes */
    --primary-hover: #7c3aed;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #f472b6; /* Pinkish accent */
    --success: #34d399;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(244, 114, 182, 0.15) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Profile Section */
.profile-section {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.bio h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #cebdfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Social Links */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 1rem;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

/* Promo Section */
.promo-section {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.promo-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.promo-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.highlight-badge {
    display: inline-block;
    background: rgba(52, 211, 153, 0.1);
    color: var(--success);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(52, 211, 153, 0.2);
    margin-top: 0.5rem;
}

.mikrus-grid {
    display: grid;
    gap: 1rem;
}

.mikrus-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    transition: transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mikrus-card:hover {
    transform: scale(1.01);
    border-color: rgba(255, 255, 255, 0.1);
}

.plan-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.plan-details {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    gap: 1rem;
}

.plan-price-action {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: filter 0.2s;
}

.btn-cta:hover {
    filter: brightness(110%);
}

.bonus-tag {
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 0.25rem;
    display: block;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    .mikrus-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .plan-price-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 1rem;
    }
}
