/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg-dark: #070510;
    --card-bg: rgba(18, 14, 36, 0.65);
    --card-border: rgba(212, 175, 55, 0.25);
    --card-border-hover: rgba(243, 200, 122, 0.7);
    --gold-primary: #f3c87a;
    --gold-secondary: #d4af37;
    --gold-glow: rgba(243, 200, 122, 0.35);
    --violet-accent: #9d4edd;
    --text-bright: #ffffff;
    --text-muted: #b8b3d6;
    --element-fire: #ff6b6b;
    --element-earth: #51cf66;
    --element-air: #4cc9f0;
    --element-water: #748ffc;
}

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

/* Background Canvas */
#cosmic-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Top Floating Controls */
.top-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 50;
}

.control-btn {
    background: rgba(20, 16, 42, 0.75);
    border: 1px solid var(--card-border);
    color: var(--gold-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.control-btn:hover {
    transform: scale(1.1);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px var(--gold-glow);
    background: rgba(35, 27, 70, 0.9);
}

.btn-tooltip {
    position: absolute;
    bottom: -32px;
    right: 0;
    background: rgba(10, 8, 23, 0.9);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.control-btn:hover .btn-tooltip {
    opacity: 1;
}

/* Main Linktree Glass Card Container */
.linktree-card {
    width: 100%;
    max-width: 520px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    padding: 36px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                inset 0 1px 1px rgba(255, 255, 255, 0.1),
                0 0 40px rgba(157, 78, 221, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInContainer 1s ease-out;
}

@keyframes fadeInContainer {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header & Avatar */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
}

.avatar-wrapper {
    position: relative;
    width: 124px;
    height: 124px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-avatar {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    z-index: 2;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transition: transform 0.4s ease;
}

.avatar-wrapper:hover .profile-avatar {
    transform: scale(1.05) rotate(2deg);
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--gold-primary) 0%, var(--violet-accent) 70%, transparent 100%);
    opacity: 0.35;
    filter: blur(20px);
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.25; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1.25); }
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--gold-primary);
    opacity: 0.4;
    pointer-events: none;
}

.orbit-ring-1 {
    width: 130px;
    height: 130px;
    animation: spinClockwise 25s linear infinite;
}

.orbit-ring-2 {
    width: 146px;
    height: 146px;
    border: 1px dotted var(--violet-accent);
    animation: spinCounter 35s linear infinite;
}

@keyframes spinClockwise { 100% { transform: rotate(360deg); } }
@keyframes spinCounter { 100% { transform: rotate(-360deg); } }

.zodiac-badge {
    position: absolute;
    bottom: 2px;
    right: 6px;
    background: linear-gradient(135deg, #2b1b4d, #140c26);
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.profile-title {
    font-family: 'Cinzel', serif;
    font-size: 1.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 30%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.sparkle {
    -webkit-text-fill-color: initial;
    display: inline-block;
    animation: sparkleTwinkle 2s infinite ease-in-out;
}

@keyframes sparkleTwinkle {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 1; filter: drop-shadow(0 0 8px var(--gold-primary)); }
}

.profile-subtitle {
    font-size: 0.95rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.9;
}

.profile-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 90%;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* Moon Phase Status Pill */
.moon-phase-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.moon-text strong {
    color: var(--gold-primary);
}

/* Quick Interactive Widgets */
.quick-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
}

.widget-btn {
    background: rgba(25, 20, 50, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text-bright);
    text-decoration: none;
}

.widget-btn:hover {
    background: rgba(45, 35, 90, 0.8);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--gold-glow);
}

.widget-icon {
    font-size: 1.3rem;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.12);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.instagram-widget-icon {
    color: #e1306c;
    background: rgba(225, 48, 108, 0.12);
}

.facebook-widget-icon {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.12);
}

.widget-title {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
}

.widget-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-bottom: 28px;
}

.link-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(22, 17, 44, 0.7);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-bright);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 200, 122, 0.15), transparent);
    transition: left 0.6s ease;
}

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

.link-card:hover {
    transform: translateY(-4px) scale(1.015);
    background: rgba(36, 27, 72, 0.85);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow);
}

.link-card.featured {
    background: linear-gradient(135deg, rgba(45, 30, 85, 0.85), rgba(20, 15, 40, 0.85));
    border: 1.5px solid var(--gold-primary);
    box-shadow: 0 0 15px rgba(243, 200, 122, 0.2);
}

.link-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.link-icon {
    font-size: 1.25rem;
    color: var(--gold-primary);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(253, 224, 171, 0.08);
    border: 1px solid rgba(243, 200, 122, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1) rotate(6deg);
    background: rgba(243, 200, 122, 0.2);
}

.link-content {
    flex-grow: 1;
}

.link-title {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.link-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.link-arrow {
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-left: 12px;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.whatsapp-link .link-icon {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

/* Social Footer */
.social-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-bright);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background: rgba(243, 200, 122, 0.15);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 0 15px var(--gold-glow);
}

.copyright-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
    text-align: center;
}

/* Modals System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 3, 14, 0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(18, 13, 38, 0.95);
    border: 1.5px solid var(--gold-primary);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--gold-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.modal-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--text-bright);
    margin-bottom: 4px;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Zodiac Grid Inside Modal */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.zodiac-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-bright);
}

.zodiac-item:hover, .zodiac-item.selected {
    background: rgba(243, 200, 122, 0.15);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 12px var(--gold-glow);
}

.z-symbol {
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 2px;
}

.z-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.z-date {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Horoscope Result Display */
.reading-result {
    background: rgba(10, 7, 24, 0.9);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    margin-top: 16px;
    animation: fadeIn 0.4s ease;
}

.reading-result.hidden {
    display: none;
}

.result-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.res-symbol {
    font-size: 2.2rem;
    color: var(--gold-primary);
}

.result-head h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
}

.element-tag {
    font-size: 0.72rem;
    background: rgba(243, 200, 122, 0.15);
    color: var(--gold-primary);
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 4px;
}

.res-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e0dcf0;
    margin-bottom: 16px;
}

.lucky-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    color: var(--text-muted);
}

.stat-pill strong {
    color: var(--gold-primary);
}

/* Tarot Card Flip Modal */
.tarot-card-container {
    perspective: 1000px;
    width: 220px;
    height: 330px;
    margin: 0 auto 24px;
}

.tarot-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.tarot-card.flipped {
    transform: rotateY(180deg);
}

.tarot-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tarot-back {
    background: linear-gradient(135deg, #1b1236, #090517);
    color: var(--gold-primary);
}

.tarot-pattern {
    border: 1px dashed var(--gold-primary);
    width: 90%;
    height: 90%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.eye-symbol {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px var(--gold-primary));
}

.flip-hint {
    font-size: 0.8rem;
    margin-top: 10px;
    letter-spacing: 1px;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.tarot-front {
    background: linear-gradient(135deg, #241645, #100a26);
    transform: rotateY(180deg);
    justify-content: space-between;
}

.tarot-glyph {
    font-size: 3.5rem;
}

.tarot-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin: 8px 0;
}

.tarot-meaning {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.tarot-keyword {
    font-size: 0.72rem;
    color: var(--gold-primary);
    font-style: italic;
    margin-top: 6px;
}

.gold-action-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border: none;
    color: #0b071a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.gold-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--gold-glow);
    filter: brightness(1.1);
}

/* Toast */
.toast-notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(20, 15, 45, 0.95);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.88rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--gold-glow);
    z-index: 200;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
}

/* ===================================================
   Ultra-Refined Responsive Breakpoints (Mobile, Tablet, Desktop)
   =================================================== */

/* Image Distortion Safety Guard */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Desktop & Laptop (>769px) */
@media (min-width: 769px) {
    .linktree-card {
        max-width: 540px;
        margin: 40px auto;
    }
}

/* Tablet Screens (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    body {
        padding: 20px 14px;
    }

    .linktree-card {
        max-width: 500px;
        padding: 32px 24px;
    }

    .quick-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* Mobile Screens (<480px) */
@media (max-width: 480px) {
    body {
        padding: 12px 10px;
    }

    .top-controls {
        top: 12px;
        right: 12px;
        gap: 8px;
    }

    .control-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .linktree-card {
        padding: 24px 16px;
        border-radius: 22px;
        max-width: 100%;
    }

    .avatar-wrapper {
        width: 110px;
        height: 110px;
        margin-bottom: 14px;
    }

    .profile-avatar {
        width: 96px;
        height: 96px;
    }

    .orbit-ring-1 {
        width: 114px;
        height: 114px;
    }

    .orbit-ring-2 {
        width: 128px;
        height: 128px;
    }

    .profile-title {
        font-size: 1.55rem;
    }

    .profile-subtitle {
        font-size: 0.85rem;
    }

    .profile-bio {
        font-size: 0.82rem;
    }

    .quick-widgets {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .widget-btn {
        padding: 12px;
    }

    .link-card {
        padding: 14px 16px;
        border-radius: 15px;
    }

    .link-title {
        font-size: 0.9rem;
    }

    .link-desc {
        font-size: 0.74rem;
    }

    .link-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin-right: 12px;
    }

    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .z-symbol {
        font-size: 1.3rem;
    }
    
    .z-name {
        font-size: 0.78rem;
    }

    .z-date {
        display: none;
    }

    .modal-content {
        padding: 20px 16px;
        border-radius: 20px;
    }
}

/* ===================================================
   Coming Soon Landing Page Styles
   =================================================== */

/* Top Nav */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 28px;
    background: rgba(10, 7, 24, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-bright);
    letter-spacing: 0.5px;
}

.brand-sparkle {
    color: var(--gold-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-bio-btn {
    background: linear-gradient(135deg, rgba(243, 200, 122, 0.15), rgba(157, 78, 221, 0.2));
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-bio-btn:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: #0b071a;
    box-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-2px);
}

.nav-control-btn {
    position: static;
    width: 38px;
    height: 38px;
}

.home-nav-btn {
    text-decoration: none;
}

/* Coming Soon Container */
.coming-soon-body {
    padding-top: 80px;
}

.coming-soon-container {
    width: 100%;
    max-width: 680px;
    margin: 20px auto 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 44px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                inset 0 1px 1px rgba(255, 255, 255, 0.1),
                0 0 50px rgba(157, 78, 221, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInContainer 1s ease-out;
}

.hero-avatar-box {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-avatar {
    width: 114px;
    height: 114px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    z-index: 2;
    box-shadow: 0 0 30px rgba(243, 200, 122, 0.4);
}

.coming-badge {
    background: rgba(243, 200, 122, 0.12);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(243, 200, 122, 0.15);
}

.coming-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.25;
}

.gold-gradient {
    background: linear-gradient(135deg, #ffffff 20%, var(--gold-primary) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-subtitle {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Countdown Timer */
.countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    width: 100%;
}

.count-box {
    background: rgba(10, 7, 24, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 14px 18px;
    min-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(243, 200, 122, 0.05);
}

.count-number {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.count-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.count-divider {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-primary);
    opacity: 0.6;
}

/* CTA Buttons Container */
.cta-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-bottom: 36px;
}

.cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-bright);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    text-align: left;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.cta-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 14, 36, 0.9));
    border: 1.5px solid rgba(37, 211, 102, 0.4);
}

.cta-whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp .btn-icon {
    color: #25D366;
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.cta-instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(18, 14, 36, 0.9));
    border: 1.5px solid rgba(225, 48, 108, 0.4);
}

.cta-instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.3);
}

.cta-instagram .btn-icon {
    color: #e1306c;
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.3);
}

.cta-bio {
    background: linear-gradient(135deg, rgba(243, 200, 122, 0.15), rgba(157, 78, 221, 0.15));
    border: 1.5px solid var(--gold-primary);
}

.cta-bio:hover {
    background: linear-gradient(135deg, rgba(243, 200, 122, 0.25), rgba(157, 78, 221, 0.3));
    box-shadow: 0 0 25px var(--gold-glow);
}

.cta-bio .btn-icon {
    color: var(--gold-primary);
    background: rgba(243, 200, 122, 0.15);
    border-color: rgba(243, 200, 122, 0.3);
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    margin-right: 16px;
    flex-shrink: 0;
}

.btn-text {
    flex-grow: 1;
}

.btn-title {
    display: block;
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 3px;
}

.btn-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.btn-arrow {
    font-size: 0.95rem;
    color: var(--gold-primary);
    margin-left: 12px;
    opacity: 0.8;
}

/* Teaser Grid */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    margin-bottom: 32px;
}

.teaser-card {
    background: rgba(10, 7, 24, 0.7);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.teaser-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--gold-glow);
}

.teaser-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
    background: rgba(243, 200, 122, 0.1);
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.teaser-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 6px;
}

.teaser-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Coming Footer */
.coming-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-bright);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Responsive Media Queries for Coming Soon Landing Page */
@media (max-width: 640px) {
    .top-nav {
        padding: 12px 16px;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .nav-bio-btn {
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    .coming-soon-container {
        padding: 32px 18px;
        border-radius: 24px;
    }

    .coming-title {
        font-size: 1.65rem;
    }

    .coming-subtitle {
        font-size: 0.88rem;
    }

    .teaser-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .count-box {
        padding: 10px 12px;
        min-width: 60px;
    }

    .count-number {
        font-size: 1.4rem;
    }

    .count-divider {
        font-size: 1.4rem;
    }
}
