@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;600;900&display=swap');

:root {
    --of-blue: #008fdb;
    --of-bg: #000000;
    --prm-gold: #c5a059;
    --dmnd-cyan: #00e5ff;
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    background-color: var(--of-bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

body.menu-open { overflow: hidden; }

/* 🍔 HAMBURGER UI */
.main-header-nav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.menu-trigger {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; /* Cuadrado redondeado elegante */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-trigger:active { transform: scale(0.9); }

.bar {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-trigger .bar:nth-child(2) { width: 12px; margin-left: 6px; }

/* 📱 SIDE MENU DRAWER */
.side-menu-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(25px);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.83, 0, 0.17, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.side-menu-drawer.active { right: 0; }

.drawer-header {
    padding: 40px 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-logo { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.2rem; letter-spacing: 2px; color: #fff; }
.close-drawer { font-size: 2.5rem; color: #fff; cursor: pointer; opacity: 0.5; }

.drawer-content { padding: 40px 25px; flex: 1; }
.drawer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #888;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 35px;
    transition: color 0.3s;
}

.drawer-link i { font-size: 1.2rem; width: 25px; }
.drawer-link.active { color: #fff; }
.drawer-link:hover { color: #fff; }

.drawer-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 20px 0 40px; }

.drawer-footer {
    padding: 30px 25px;
    font-size: 0.65rem;
    color: #444;
    letter-spacing: 2px;
}

/* 🖼️ FONDO GENERAL */
.full-bg-overlay {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.2) blur(5px);
    z-index: -1;
}

.app-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.85);
    min-height: 100vh;
    border-left: 0.5px solid var(--border);
    border-right: 0.5px solid var(--border);
}

/* 📱 HEADER / PORTADA GIGANTE (Para verte completa) */
.of-header {
    position: relative;
    width: 100%;
    height: 90vh; /* Ocupa casi toda la pantalla */
    background: #000;
}

.of-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.of-nav-top {
    position: absolute;
    top: 15px; left: 15px;
    z-index: 100;
}

.back-btn {
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

/* 📱 PROFILE SECTION */
.of-profile-container {
    padding: 20px 16px;
    margin-top: -120px;
    position: relative;
    background: linear-gradient(to top, #000 80%, transparent);
}

.of-avatar-wrapper {
    display: inline-block;
}

.of-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #000;
    object-fit: cover;
}

.of-profile-info { margin-top: 12px; }

/* 🎖️ VERIFIED BADGE REAL (CERTIFICATE STYLE) */
.of-name { 
    font-size: 1.4rem; 
    font-weight: 800; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.of-verified-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--of-blue);
}

.of-verified-badge .fa-certificate {
    font-size: 1.4rem;
}

.of-verified-badge .fa-check {
    position: absolute;
    color: #000; /* Solo la palomita es negra/transparente sobre el azul */
    font-size: 0.65rem;
    font-weight: 900;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.of-username { color: #8a96a3; font-size: 0.95rem; margin-top: 2px; }

.of-stats {
    display: flex; gap: 20px; margin-top: 15px;
}
.stat-item { font-size: 0.85rem; font-weight: 700; }
.stat-item span { color: #8a96a3; font-weight: 400; margin-right: 4px; }

.of-bio {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #efefef;
    border-bottom: 0.5px solid var(--border);
    padding-bottom: 15px;
}

/* 💳 SUBSCRIPTION PLANS */
.of-subscription-section {
    padding: 20px 16px;
}

.of-section-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #8a96a3;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.plan-card {
    background: #000;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 15px;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.plan-tier { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; }
.plan-price { font-size: 0.9rem; font-weight: 700; color: #8a96a3; }

.plan-specs {
    list-style: none;
    margin: 10px 0 15px;
}

.plan-specs li {
    font-size: 0.8rem;
    color: #8a96a3;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-specs i { font-size: 0.7rem; color: #fff; opacity: 0.5; }

.subscribe-btn {
    width: 100%;
    padding: 14px;
    border-radius: 100px;
    border: none;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: block;
}

.btn-std { background: var(--of-blue); color: #fff; }
.btn-prm { background: var(--prm-gold); color: #000; }
.btn-dmnd { background: var(--dmnd-cyan); color: #000; }

.demo-btn {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 0.7rem;
    color: #555;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
}

.of-lock-box {
    margin-top: 25px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
}
.of-lock-box i { font-size: 2rem; color: #222; margin-bottom: 10px; }
.of-lock-box h3 { font-size: 1rem; font-weight: 800; color: #888; }

footer {
    text-align: center;
    padding: 30px;
    font-size: 0.7rem;
    color: #333;
}

@media (max-width: 500px) {
    .app-container { border: none; }
}
/* === VIP CUSTOM MODAL === */
.vip-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}
.vip-modal-overlay.active { display: flex; }

.vip-modal-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    width: 100%;
    max-width: 380px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vip-modal-overlay.active .vip-modal-card { transform: scale(1); }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
