/* ==========================================================================
   1. CORE FONTS, RESETS & VARIABLE SCHEMES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

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

:root {
    --bg: #060914;
    --bg2: #0b1022;
    --primary: #6E6BFF;
    --secondary: #1BE7FF;
    --accent: #FF4D94;
    --glass: rgba(255, 255, 255, .07);
    --glass2: rgba(255, 255, 255, .04);
    --border: rgba(255, 255, 255, .08);
    --text: #ffffff;
    --muted: #bfc9d8;
    --shadow: 0 15px 40px rgba(0, 0, 0, .45);
    --radius: 18px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Premium Animated Space Gradient Background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -5;
    background: radial-gradient(circle at 15% 15%, rgba(95, 73, 255, .30), transparent 42%), 
                radial-gradient(circle at 85% 15%, rgba(0, 255, 255, .16), transparent 42%), 
                radial-gradient(circle at 50% 85%, rgba(255, 45, 120, .14), transparent 45%), 
                linear-gradient(180deg, #08111d, #070d18, #05080f);
    animation: bgMove 18s ease-in-out infinite alternate;
}

@keyframes bgMove {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

/* Ambient Floating Background Glows */
.bg-glow {
    position: fixed;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    z-index: -4;
    pointer-events: none;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.glow-left { background: #7c5cff; top: -180px; left: -160px; }
.glow-right { background: #00f7ff; top: -180px; right: -180px; }
.glow-bottom { background: #ff3d80; bottom: -250px; left: 50%; transform: translateX(-50%); }

@keyframes floatGlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(35px); }
}

#particles {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
}

/* Global Content Wrap */
.container {
    width: 92%;
    max-width: 1350px;
    margin: auto;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   2. HEADER, ANIMATED BRAND TEXT & GLOWING SCROLLABLE NAV
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 9, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0 4px 0;
}

/* Top Row: Brand Text Left, Discord Button Right */
.brand-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
}

/* Professional Animated Branding Typography */
.brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ffffff, #1be7ff, #6e6bff, #ffffff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 6s linear infinite;
    filter: drop-shadow(0 0 10px rgba(27, 231, 255, 0.3));
    transition: 0.3s;
}

.brand-text:hover {
    filter: drop-shadow(0 0 18px rgba(110, 107, 255, 0.7));
    transform: scale(1.02);
}

@keyframes shineText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header Discord Integration Hook */
.discord-btn {
    padding: 8px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5865F2, #6e6bff);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discord-btn i {
    font-size: 15px;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(110, 107, 255, 0.7);
}

/* Scrollable Horizontal Navigation System */
.navbar {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 6px 0 8px 0;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

/* Glowing Indicator Strip beneath navbar */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6e6bff, #1be7ff, transparent);
    box-shadow: 0 1px 12px rgba(27, 231, 255, 0.8);
    pointer-events: none;
}

.nav-links {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding-bottom: 4px;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-links a:hover {
    color: #fff;
    background: rgba(27, 231, 255, 0.08);
    border-color: rgba(27, 231, 255, 0.3);
    box-shadow: 0 0 15px rgba(27, 231, 255, 0.2);
}

.nav-links a.active {
    background: linear-gradient(135deg, rgba(110, 107, 255, 0.2), rgba(27, 231, 255, 0.2));
    border-color: #1be7ff;
    color: #fff;
    box-shadow: 0 0 15px rgba(27, 231, 255, 0.35);
}

/* Custom Minimal Scrollbar for the Navigation Stream */
.navbar::-webkit-scrollbar {
    height: 3px;
}
.navbar::-webkit-scrollbar-track {
    background: transparent;
}
.navbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.navbar:hover::-webkit-scrollbar-thumb {
    background: rgba(27, 231, 255, 0.4);
}

/* ==========================================================================
   3. HERO AREA VIEWPORT STYLING
   ========================================================================== */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 50px 20px;
}

.hero-content { max-width: 800px; }

.hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #6e6bff, #1be7ff, #ff4d94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(110, 107, 255, 0.3);
}

.hero h1 span {
    display: block;
    font-size: 56px;
    margin-top: 5px;
}

.hero-subtitle {
    font-size: 18px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.65);
}

.typing-box {
    margin-top: 20px;
    font-size: 20px;
    color: #1be7ff;
    min-height: 28px;
    font-weight: 600;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #6e6bff, #1be7ff);
    color: white;
    box-shadow: 0 0 25px rgba(110, 107, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(110, 107, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ==========================================================================
   4. SECTIONS & CARDS METRICS
   ========================================================================== */
section {
    padding: 80px 0;
    position: relative;
    animation: fadeUp 0.8s ease-in-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, #6e6bff, #1be7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title p { color: rgba(255, 255, 255, 0.6); margin-top: 8px; }

.glass-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(0, 247, 255, .35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45), 0 0 25px rgba(0, 247, 255, .18);
}

/* About Module Grid */
.about-section .about-card { 
    padding: 30px; 
    display: flex; 
    gap: 20px; 
    align-items: center; 
}
.about-icon { font-size: 40px; color: #1be7ff; }
.about-content h3 { font-family: 'Orbitron', sans-serif; }
.about-content p { color: rgba(255, 255, 255, 0.65); margin-top: 10px; line-height: 1.6; }

/* Features Utility Matrix Grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card { padding: 25px; text-align: center; }
.feature-icon { font-size: 30px; margin-bottom: 10px; }
.feature-card h3 { margin-bottom: 10px; font-family: 'Orbitron', sans-serif; }
.feature-card p { color: rgba(255, 255, 255, 0.6); font-size: 14px; }

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    padding: 8px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6e6bff, #1be7ff);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}
.card-btn:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(27, 231, 255, 0.4); }

/* Why Parameters Grid */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.why-card { padding: 25px; text-align: center; }
.why-card i { font-size: 28px; color: #1be7ff; margin-bottom: 10px; }
.why-card h3 { font-family: 'Orbitron', sans-serif; margin-bottom: 8px; }

/* Community Dashboard Grid Layouts */
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.community-card { padding: 30px; }
.community-card h3 { font-family: 'Orbitron', sans-serif; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.community-card ul { list-style: none; margin-bottom: 20px; }
.community-card li { margin: 10px 0; color: rgba(255, 255, 255, 0.7); display: flex; align-items: center; }
.community-card i { color: #1be7ff; margin-right: 8px; }

.stats-card { padding: 30px; }
.stats-card h3 { font-family: 'Orbitron', sans-serif; margin-bottom: 15px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.stat-box { padding: 20px; border-radius: 14px; background: rgba(255, 255, 255, 0.03); text-align: center; }
.stat-box h2 { font-family: 'Orbitron', sans-serif; font-size: 28px; color: #1be7ff; }
.stat-box span { color: rgba(255, 255, 255, 0.6); font-size: 14px; }

/* ==========================================================================
   5. INTERACTIVE ACCORDIONS (FAQ) & CTA PANELS
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 15px; }
.faq-item { padding: 5px; }
.faq-question { width: 100%; background: none; border: none; color: #fff; font-size: 16px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 15px; text-align: left; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s; padding: 0 15px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }
.faq-item.active .faq-answer { max-height: 200px; padding: 15px; }

.cta-card { padding: 40px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cta-card h2 { font-family: 'Orbitron', sans-serif; font-size: 28px; }
.cta-card p { color: rgba(255, 255, 255, 0.6); margin-top: 6px; }
.cta-buttons { display: flex; gap: 12px; }

/* ==========================================================================
   6. PREMIUM METRICS SYSTEM FOOTER (TEXT BRAND FIXED)
   ========================================================================== */
.footer {
    background: rgba(5, 8, 15, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 25px; margin-bottom: 30px; }
.footer-brand { display: flex; align-items: center; }

.footer-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #6e6bff, #1be7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(27, 231, 255, 0.2));
}

.footer-column h4 { margin-bottom: 12px; font-family: 'Orbitron', sans-serif; font-size: 15px; color: #1be7ff; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin: 8px 0; }
.footer-column ul li a { color: rgba(255, 255, 255, 0.65); font-size: 14px; transition: 0.3s; }
.footer-column ul li a:hover { color: #fff; padding-left: 5px; }

.footer-bottom { text-align: center; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.5); font-size: 13px; }

/* ==========================================================================
   7. FLOATING INTERFACES & RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
#topBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e6bff, #1be7ff);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(110, 107, 255, 0.4);
    transition: 0.3s;
    z-index: 999;
}
#topBtn:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(110, 107, 255, 0.6); }

/* Responsive Scale Checks */
@media(max-width: 768px) {
    .brand-text { font-size: 21px; letter-spacing: 1px; }
    .discord-btn { padding: 6px 12px; font-size: 11px; }
    .community-grid { grid-template-columns: 1fr; }
    .cta-card { flex-direction: column; text-align: center; padding: 30px; }
    .cta-buttons { margin-top: 10px; }
    .hero h1 { font-size: 36px; }
    .hero h1 span { font-size: 40px; }
}

/* Scrollbar and Custom Selection Overlays */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #05080f; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #6e6bff, #1be7ff); border-radius: 10px; }
::selection { background: #1be7ff; color: #000; }

/* ==========================================================================
   8. ANTI-COPY & CONTENT PROTECTION (PC & MOBILE)
   ========================================================================== */
body, html {
    /* Disables text selection across all desktop browsers */
    -webkit-user-select: none;  
    -moz-user-select: none;     
    -ms-user-select: none;      
    user-select: none;          

    /* CRITICAL FOR PHONES: Disables the magnifying glass/long-press menu on iOS and Android */
    -webkit-touch-callout: none; 
}

/* Keeps interactive inputs functioning normally if you ever add them */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
}
