/* === VIVIANWARE ULTIMATE THEME === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

:root {
    --bg-deep: #050507;
    --bg-surface: rgba(20, 20, 25, 0.4); /* Glassy transparency */
    --primary: #B228F2;
    --primary-glow: rgba(178, 40, 242, 0.5);
    --text-main: #ffffff;
    --text-muted: #9CA3AF;
    --border: rgba(255, 255, 255, 0.08);
    --glass: blur(20px);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* === ALIVE BACKGROUND === */
.bg-ambience {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;
    background: #050507;
    overflow: hidden;
}

/* Moving blobs for premium feel */
.bg-ambience::before, .bg-ambience::after {
    content: ''; position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.3;
    animation: float 10s infinite alternate ease-in-out;
}

.bg-ambience::before {
    width: 600px; height: 600px; background: var(--primary);
    top: -100px; left: -100px;
}
.bg-ambience::after {
    width: 500px; height: 500px; background: #4c1d95; /* Deep purple */
    bottom: -100px; right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* === NAVBAR === */
.navbar {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1200px; height: 70px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 30px;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 16px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.brand {
    font-size: 18px; font-weight: 800; letter-spacing: -0.5px;
    display: flex; align-items: center; gap: 12px; color: white; text-decoration: none;
}
.brand-icon {
    width: 32px; height: 32px; background: var(--primary);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 20px var(--primary-glow);
    font-weight: 900;
}

.nav-links { display: flex; gap: 40px; }
.nav-link {
    color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500;
    transition: 0.3s; position: relative;
}
.nav-link:hover, .nav-link.active { color: white; }

/* Underline animation */
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -4px; left: 0; background: var(--primary);
    transition: 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* === HERO SECTION === */
.hero {
    height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 0 20px;
    animation: fadeUp 1s ease-out;
}

.hero h1 {
    font-size: 80px; font-weight: 900; margin-bottom: 20px; line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    text-shadow: 0 0 50px rgba(255,255,255,0.1);
}

.hero p { 
    color: var(--text-muted); font-size: 20px; max-width: 600px; 
    margin-bottom: 50px; font-weight: 400;
}

.cta-btn {
    padding: 18px 45px; background: var(--primary); color: white;
    text-decoration: none; border-radius: 50px; font-weight: 700;
    box-shadow: 0 0 30px var(--primary-glow);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
}
.cta-btn:hover { 
    transform: scale(1.05); 
    box-shadow: 0 0 50px var(--primary-glow);
    background: #c34bf6;
}

/* === GRID LAYOUTS === */
.container { max-width: 1200px; margin: 140px auto 100px; padding: 0 30px; }
.page-title { 
    font-size: 42px; font-weight: 800; margin-bottom: 60px; 
    text-align: center; letter-spacing: -1px;
}

.grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
}

/* === PRODUCT CARD STYLES === */
.card {
    display: flex; flex-direction: column; height: 100%;
    background: linear-gradient(180deg, rgba(20,20,25,0.6) 0%, rgba(10,10,12,0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 24px; padding: 40px; transition: 0.4s;
    position: relative; overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Hover Effect: Lift & Glow */
.card:hover { 
    transform: translateY(-10px); 
    border-color: var(--primary); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Internal Glow Gradient (Requires JS mouse tracking) */
.card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(178, 40, 242, 0.06), transparent 40%);
    opacity: 0; transition: 0.4s; z-index: -1;
}
.card:hover::before { opacity: 1; }

.card h2 { font-size: 24px; margin-bottom: 10px; }

/* Glowing Badge */
.card-tag {
    position: absolute; top: 20px; right: 20px;
    background: rgba(178, 40, 242, 0.15); color: #d8b4fe;
    padding: 6px 12px; border-radius: 6px; font-size: 11px; font-weight: 800;
    border: 1px solid rgba(178, 40, 242, 0.3);
    box-shadow: 0 0 10px rgba(178, 40, 242, 0.1);
    letter-spacing: 1px;
}

/* Product Icon */
.product-icon {
    width: 50px; height: 50px; background: rgba(255,255,255,0.05);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px; border: 1px solid var(--border);
}

/* Feature List (Checkmarks) */
.feature-list {
    list-style: none; padding: 0; margin: 20px 0 30px 0;
    flex-grow: 1; /* Pushes button to bottom */
}

.feature-item {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px; color: #d1d5db; font-size: 14px;
}

.check-icon {
    width: 18px; height: 18px; background: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: white; flex-shrink: 0;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Card Buttons */
.card-btn {
    width: 100%; padding: 16px; border-radius: 12px;
    font-weight: 700; cursor: pointer; border: none;
    transition: 0.3s; margin-top: auto;
}

.btn-primary {
    background: var(--primary); color: white;
    box-shadow: 0 4px 20px rgba(178, 40, 242, 0.3);
}
.btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 30px rgba(178, 40, 242, 0.5); 
}

.btn-outline {
    background: transparent; border: 1px solid var(--border); color: white;
}
.btn-outline:hover {
    border-color: var(--primary); background: rgba(178, 40, 242, 0.1);
}

/* === STATUS ROWS === */
.status-row {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.02); padding: 25px 35px;
    border: 1px solid var(--border); border-radius: 16px;
    margin-bottom: 15px; transition: 0.3s;
}
.status-row:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.15); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 15px #22c55e; }
.status-dot.down { background: #ef4444; box-shadow: 0 0 15px #ef4444; }

/* === PRICING MODAL === */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(15px);
    z-index: 2000; display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: 0.4s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-card {
    background: #0f0f13; border: 1px solid var(--border);
    width: 480px; padding: 50px; border-radius: 24px;
    text-align: center; transform: scale(0.9); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.modal-overlay.active .modal-card { transform: scale(1); }

.modal-title { font-size: 24px; font-weight: 800; margin-bottom: 10px; color: white; }
.modal-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 30px; }

/* Modal Prices */
.price-list { display: flex; flex-direction: column; gap: 12px; }

.price-btn {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border);
    padding: 20px 30px; border-radius: 14px; margin-bottom: 10px;
    color: white; font-weight: 600; cursor: pointer; transition: 0.2s;
}
.price-btn:hover {
    background: var(--primary); border-color: var(--primary);
    transform: scale(1.02); color: white;
}
.price-tag { font-weight: 800; font-size: 16px; }

/* Close Button */
.close-modal {
    position: absolute; top: 20px; right: 20px;
    background: transparent; border: none; color: #555;
    font-size: 24px; cursor: pointer; transition: 0.2s;
}
.close-modal:hover { color: white; }

/* ANIMATIONS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


/* === HERO STATS === */
.hero-stats {
    display: flex; align-items: center; gap: 30px;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.03);
    padding: 15px 30px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-item { text-align: center; }

.stat-num {
    display: block; font-weight: 900; font-size: 18px; color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }


/* === FLOATING DISCORD BUTTON === */
.floating-discord {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #5865F2; /* Discord Blue */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1500;
}

.floating-discord:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
}

.floating-discord svg { width: 32px; height: 32px; }

/* Add this to style.css */
.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(178, 40, 242, 0.6)); /* Nice purple glow */
}