/* FakeBuster.online - Ultra Modern Web 3D & Glassmorphism Stylesheet */
:root {
    --bg-dark: #050C1B;
    --bg-card: rgba(14, 22, 42, 0.65);
    --bg-card-border: rgba(0, 229, 255, 0.25);
    --primary-cyan: #00E5FF;
    --primary-glow: rgba(0, 229, 255, 0.4);
    --secondary-purple: #8B5CF6;
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --accent-gold: #FFD700;
    --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    overflow-x: hidden;
}

body {
    background: radial-gradient(circle at 50% 0%, #0B182B 0%, #050C1B 70%);
    min-height: 100vh;
    line-height: 1.6;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--bg-card-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 20px;
}

.glass-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-cyan);
}

.lang-select-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
}

.lang-select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.lang-select option {
    background: #0B182B;
    color: #fff;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-purple));
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    height: 420px;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.24) 0%, rgba(139, 92, 246, 0.16) 48%, transparent 72%);
    filter: blur(65px);
    z-index: 1;
    pointer-events: none;
    animation: heroPulseAura 8s ease-in-out infinite alternate;
}

@keyframes heroPulseAura {
    0% { transform: translate(-50%, -50%) scale(0.88); opacity: 0.65; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1.0; }
}

#hero-webgl-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

.badge-tag {
    display: inline-block;
    background: rgba(0, 229, 255, 0.10);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

/* Interactive Phone Simulator */
.demo-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-head p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-cyan);
    color: #000;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px var(--primary-glow);
}

.phone-wrapper {
    position: relative;
    width: 320px;
    height: 640px;
    margin: 0 auto;
    border: 10px solid #1E293B;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--primary-glow);
    background: #000;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-header {
    height: 30px;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    align-items: center;
    font-size: 0.75rem;
    color: #fff;
}

.phone-body {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Floating Avatar Overlay in Mockup */
.mock-overlay-avatar {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    z-index: 100;
    cursor: pointer;
    animation: floatAnim 3s infinite ease-in-out;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(-50%) translateY(0px); }
    50% { transform: translateY(-50%) translateY(-10px); }
}

.verdict-popup {
    position: absolute;
    bottom: 20px;
    left: 12px;
    right: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--primary-cyan);
    box-shadow: 0 10px 25px rgba(0,229,255,0.3);

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.verdict-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.verdict-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.verdict-fake { background: rgba(239, 68, 68, 0.2); color: #EF4444; border: 1px solid #EF4444; }
.verdict-true { background: rgba(16, 185, 129, 0.2); color: #10B981; border: 1px solid #10B981; }

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.bento-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    padding: 40px 28px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 30px var(--primary-glow);
}

.price-title { font-size: 1.5rem; margin-bottom: 10px; }
.price-amount { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; color: var(--primary-cyan); }
.price-features { list-style: none; margin-bottom: 30px; text-align: left; }
.price-features li { margin-bottom: 12px; color: var(--text-muted); font-size: 0.95rem; }

/* Subpage Containers */
.subpage-container {
    max-width: 900px;
    margin: 140px auto 60px;
    padding: 40px;
}

.subpage-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary-cyan);
}

.policy-block {
    margin-bottom: 28px;
}

.policy-block h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
}

.policy-block p, .policy-block ul {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-block ul {
    padding-left: 20px;
    margin-top: 10px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--primary-cyan);
    text-decoration: none;
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .glass-nav { flex-direction: column; gap: 16px; border-radius: 20px; }
    .nav-links { gap: 12px; flex-wrap: wrap; justify-content: center; }
}
