/* Rainy Night Glass City Style - Bottom Dock & Diagonal Sections */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Noto+Sans+SC:wght@300;400;700;900&display=swap');

:root {
    --city-dark: #05050a;
    --city-light: #12121a;
    --neon-cyan: #00f3ff;
    --neon-magenta: #ff003c;
    --neon-purple: #b000ff;
    --glass-bg: rgba(15, 15, 25, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f0f0f5;
    --text-muted: #8a8a9e;
    --font-en: 'Rajdhani', sans-serif;
    --font-cn: 'Noto Sans SC', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--city-dark);
    color: var(--text-main);
    font-family: var(--font-cn);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Rain Effect Background */
.rain-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -2;
    background: 
        radial-gradient(circle at 15% 30%, rgba(0, 243, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255, 0, 60, 0.08) 0%, transparent 40%);
}
.rain-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    background-size: 2px 100px;
    animation: rainFall 0.8s linear infinite;
    opacity: 0.3;
}
@keyframes rainFall {
    0% { background-position: 0 -100px, 20px -50px, 40px -80px; }
    100% { background-position: 0 100vh, 20px calc(100vh + 50px), 40px calc(100vh + 20px); }
}

h1, h2, h3, h4, .font-en { font-family: var(--font-en); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 15px; }

/* 1. Bottom Dock Navigation */
.dock-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1);
}

.dock-brand {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    padding-right: 15px;
    border-right: 1px solid var(--glass-border);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.dock-links { display: flex; gap: 10px; }
.dock-item {
    padding: 8px 15px;
    border-radius: 15px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}
.dock-item:hover, .dock-item.active {
    background: rgba(255,255,255,0.1);
    color: var(--text-main);
}

.dock-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--glass-border);
}
.dock-lang { color: var(--text-muted); font-size: 0.85rem; }
.btn-neon {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 8px 20px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2), inset 0 0 10px rgba(0, 243, 255, 0.1);
    transition: 0.3s;
}
.btn-neon:hover {
    background: var(--neon-cyan);
    color: var(--city-dark);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

.btn-magenta {
    background: var(--neon-magenta);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    transition: 0.3s;
    display: inline-block;
}
.btn-magenta:hover {
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.8);
    transform: translateY(-2px);
}

/* 2. Diagonal Sections */
.diag-section {
    padding: 120px 5%;
    position: relative;
    z-index: 1;
}
.diag-bg-1 {
    background: var(--city-light);
    clip-path: polygon(0 5vw, 100% 0, 100% calc(100% - 5vw), 0 100%);
    margin: -5vw 0;
    padding: 150px 5%;
}
.diag-bg-2 {
    background: var(--city-dark);
    clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 calc(100% - 5vw));
    margin: -5vw 0;
    padding: 150px 5%;
}

.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.5rem; margin-bottom: 50px; text-align: center; text-transform: uppercase; letter-spacing: 2px; }
.section-title span { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0, 243, 255, 0.5); }

/* 3. Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 80vh;
    padding-top: 80px;
}
.hero-content { flex: 1; }
.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}
.hero-content h1 span { color: var(--neon-magenta); text-shadow: 0 0 15px rgba(255, 0, 60, 0.5); }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; }
.hero-actions { display: flex; gap: 20px; margin-bottom: 40px; }

.trust-info { display: flex; gap: 20px; font-size: 0.9rem; color: var(--text-muted); }
.trust-info span { display: flex; align-items: center; gap: 5px; }
.trust-info span::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--neon-cyan); border-radius: 50%; box-shadow: 0 0 8px var(--neon-cyan); }

.hero-visual { flex: 1; position: relative; }
.hero-visual::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80%; height: 80%; background: var(--neon-purple); filter: blur(100px); opacity: 0.3; z-index: -1;
}
.glass-hero-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* 4. Stats Floating Pills */
.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.stat-pill {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.stat-pill h3 { font-size: 2.5rem; color: var(--neon-cyan); line-height: 1; margin-bottom: 5px; }
.stat-pill p { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* 5. Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.feature-glass::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transform: scaleX(0); transform-origin: left; transition: 0.4s;
}
.feature-glass:hover { transform: translateY(-10px); background: rgba(30, 30, 45, 0.8); }
.feature-glass:hover::before { transform: scaleX(1); }
.feature-glass img { width: 60px; height: 60px; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5)); }
.feature-glass h3 { font-size: 1.5rem; margin-bottom: 15px; }
.feature-glass p { color: var(--text-muted); }

/* 6. Marquee Nodes */
.nodes-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}
.nodes-marquee::before, .nodes-marquee::after {
    content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.nodes-marquee::before { left: 0; background: linear-gradient(to right, var(--city-dark), transparent); }
.nodes-marquee::after { right: 0; background: linear-gradient(to left, var(--city-dark), transparent); }

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}
.node-neon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--neon-cyan);
    padding: 10px 25px;
    border-radius: 30px;
    margin: 0 15px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}
.node-neon .city { font-weight: 700; }
.node-neon .ping { color: var(--neon-cyan); font-family: var(--font-en); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 7. Reviews Masonry */
.reviews-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.review-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}
.review-glass:nth-child(2) { transform: translateY(30px); }
.r-stars { color: var(--neon-magenta); margin-bottom: 15px; font-size: 1.2rem; letter-spacing: 2px; }
.r-text { font-size: 1.05rem; color: var(--text-main); margin-bottom: 20px; font-style: italic; }
.r-author { font-family: var(--font-en); font-weight: 700; color: var(--neon-cyan); }
.r-author span { display: block; font-family: var(--font-cn); font-weight: 400; color: var(--text-muted); font-size: 0.85rem; }

/* 8. Pricing Panels */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}
.price-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: 0.3s;
}
.price-glass.pro {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
    transform: scale(1.05);
    background: rgba(255, 0, 60, 0.05);
}
.price-name { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.price-amount { font-size: 3.5rem; font-weight: 900; color: #fff; margin-bottom: 30px; line-height: 1; }
.price-amount span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.price-features { list-style: none; text-align: left; margin-bottom: 40px; }
.price-features li { padding: 10px 0; border-bottom: 1px solid var(--glass-border); color: var(--text-muted); font-size: 0.95rem; }
.price-features li::before { content: '>'; color: var(--neon-cyan); margin-right: 10px; font-family: var(--font-en); font-weight: bold; }

/* 9. FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--neon-purple);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}
.faq-q { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.faq-a { color: var(--text-muted); font-size: 0.95rem; }

/* 10. Footer */
.footer-glass {
    background: rgba(5, 5, 10, 0.9);
    border-top: 1px solid var(--glass-border);
    padding: 60px 5% 120px; /* Extra padding for dock */
}
.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.foot-brand { font-size: 1.8rem; font-weight: 900; color: var(--neon-cyan); margin-bottom: 20px; }
.foot-desc { color: var(--text-muted); font-size: 0.95rem; }
.foot-col h4 { color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { color: var(--text-muted); transition: 0.3s; }
.foot-col a:hover { color: var(--neon-magenta); }
.foot-copy { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--glass-border); }

/* Subpages */
.sub-hero { padding: 150px 5% 80px; text-align: center; }
.sub-hero h1 { font-size: 3.5rem; margin-bottom: 20px; text-transform: uppercase; }
.sub-hero h1 span { color: var(--neon-cyan); }
.sub-hero p { color: var(--text-muted); font-size: 1.1rem; }

.dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; padding-bottom: 100px; }
.dl-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 40px; text-align: center; transition: 0.3s; }
.dl-card:hover { border-color: var(--neon-cyan); box-shadow: 0 0 20px rgba(0, 243, 255, 0.1); }
.dl-icon { font-size: 3.5rem; margin-bottom: 20px; }
.dl-card h3 { font-size: 1.8rem; margin-bottom: 15px; }
.dl-card p { color: var(--text-muted); margin-bottom: 30px; }

.help-layout { display: grid; grid-template-columns: 250px 1fr; gap: 50px; max-width: 1200px; margin: 0 auto; padding-bottom: 100px; }
.help-nav { display: flex; flex-direction: column; gap: 10px; position: sticky; top: 50px; }
.help-nav a { padding: 12px 20px; border-radius: 10px; color: var(--text-muted); border: 1px solid transparent; }
.help-nav a.active, .help-nav a:hover { background: rgba(255,255,255,0.05); border-color: var(--glass-border); color: var(--neon-cyan); }
.help-doc { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 40px; margin-bottom: 30px; }
.help-doc h3 { font-size: 1.8rem; color: var(--neon-magenta); margin-bottom: 20px; border-bottom: 1px solid var(--glass-border); padding-bottom: 10px; }
.help-doc p, .help-doc li { color: var(--text-muted); margin-bottom: 15px; }
.help-doc ul { padding-left: 20px; }

/* Responsive */
@media (max-width: 1024px) {
    .dock-links { display: none; } /* Hide text links on tablet/mobile, keep icons or just brand and buttons */
    .hero-container { flex-direction: column; text-align: center; }
    .trust-info { justify-content: center; flex-wrap: wrap; }
    .stats-wrapper { flex-wrap: wrap; margin-top: 40px; }
    .features-grid, .reviews-masonry, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .review-glass:nth-child(2) { transform: none; }
    .price-glass.pro { transform: none; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .help-layout { grid-template-columns: 1fr; }
    .help-nav { position: static; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .stats-wrapper { flex-direction: column; }
    .features-grid, .reviews-masonry, .pricing-grid, .dl-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; text-align: center; }
    .dock-nav { width: 90%; justify-content: space-between; }
    .diag-bg-1, .diag-bg-2 { clip-path: none; margin: 0; padding: 80px 5%; }
}
