/* 
   CHEAT Orbit Premium Theme - NEON BLUE Sci-Fi
*/

:root {
    --bg-dark: #0a0e27; /* Deep midnight navy */
    --bg-panel: rgba(10, 18, 50, 0.75); /* Glassmorphism panels */
    --bg-card: rgba(12, 22, 55, 0.6);
    --primary: #00D4FF; /* Electric Cyan */
    --primary-hover: #33e0ff; 
    --accent: #0ea5e9; /* Sky Blue */
    --accent-hover: #38bdf8;
    --text-main: #f0f6ff;
    --text-muted: #7b93b3;
    --border-color: rgba(0, 212, 255, 0.15);
    --danger: #f43f5e;
    --warning: #fbbf24;
    --success: #10b981;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background: radial-gradient(circle at 50% 0%, #0c1a3a 0%, var(--bg-dark) 50%, #060a1a 100%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Star Particles */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    z-index: -1;
    opacity: 0.25;
    animation: stars 100s linear infinite;
}

@keyframes stars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

/* Ambient Glowing Orbs */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: floatOrb 25s infinite alternate ease-in-out;
    pointer-events: none;
}
.orb-1 { width: 600px; height: 600px; background: rgba(0, 212, 255, 0.12); top: -200px; left: -200px; }
.orb-2 { width: 700px; height: 700px; background: rgba(14, 165, 233, 0.08); bottom: -300px; right: -200px; animation-delay: -10s; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.2); }
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: #fff; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-muted) !important; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.main-content { min-height: calc(100vh - 250px); padding: 50px 0; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    outline: none;
    backdrop-filter: blur(5px);
}

.btn-primary {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
}

.btn-primary:hover {
    background: var(--primary);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    color: var(--bg-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: rgba(0, 212, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-block { display: block; width: 100%; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-muted); font-size: 0.95rem; }
.form-control {
    width: 100%; padding: 12px 16px;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px; color: var(--text-main);
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    background-color: rgba(0,0,0,0.5);
}

/* Navbar capsule design matching the mockup */
.navbar {
    background: rgba(10, 14, 39, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15), inset 0 0 15px rgba(0, 212, 255, 0.05);
    padding: 15px 30px;
    position: sticky;
    top: 20px; 
    z-index: 1000;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 20px auto 0;
    border-radius: 15px;
}

.navbar .container { display: flex; justify-content: space-between; align-items: center; }

/* BRANDING & ANIMATION: CHEATORBIT with flying planets */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    display: inline-flex;
    align-items: center;
}
.navbar-brand .orbit-text { color: var(--primary); margin-left: 2px;}

.planet-system {
    position: absolute;
    width: 100%; height: 100%;
    left: 0; top: 0;
    pointer-events: none;
}
.flying-planet {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    top: 50%; left: 50%;
}
.planet-1 { animation: orbit1 4s linear infinite; }
.planet-2 { background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: orbit2 6s linear infinite; }

@keyframes orbit1 {
    0% { transform: rotate(0deg) translateX(70px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
}
@keyframes orbit2 {
    0% { transform: rotate(180deg) translateX(90px) rotate(-180deg); }
    100% { transform: rotate(540deg) translateX(90px) rotate(-540deg); }
}

.navbar-nav { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-link { color: var(--text-muted); font-weight: 500; }
.nav-link:hover, .nav-link.active { color: var(--primary); text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }

/* Forum Sparkling Button */
.forum-btn {
    position: relative;
    color: #fff !important;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.8);
    animation: pulseGlow 2s infinite alternate;
}
@keyframes pulseGlow {
    0% { text-shadow: 0 0 8px rgba(0, 212, 255, 0.8); }
    100% { text-shadow: 0 0 15px rgba(14, 165, 233, 1), 0 0 20px rgba(14, 165, 233, 0.8); color: var(--accent-hover) !important;}
}
.forum-btn::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 0.9rem;
    animation: sparkle 1.5s infinite;
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}

/* Hero Section with 3D Blueprint Perspective Grid and Floating Screens */
.hero {
    position: relative;
    padding: 140px 0 110px;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -50%;
    width: 200%;
    height: 350px;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(600px) rotateX(65deg);
    transform-origin: center bottom;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 80%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 5;
}

.hero h1 { 
    font-size: 4.8rem; 
    margin-bottom: 20px; 
    font-weight: 900; 
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

.hero h1 span { 
    background: linear-gradient(to right, var(--primary), #38bdf8, var(--primary));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
    text-shadow: 0 0 35px rgba(0, 212, 255, 0.5);
}
@keyframes shine {
    to { background-position: 200% center; }
}
.hero p { 
    font-size: 1.3rem; 
    color: var(--text-muted); 
    max-width: 700px; 
    margin: 0 auto; 
    line-height: 1.8; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
}

/* Floating Hologram Screens */
.hologram-screen {
    position: absolute;
    width: 180px;
    height: 120px;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1), inset 0 0 10px rgba(0, 212, 255, 0.05);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(0, 212, 255, 0.7);
    pointer-events: none;
    animation: floatHologram 6s infinite ease-in-out alternate;
    z-index: 1;
}

.screen-left {
    left: 8%;
    top: 35%;
}

.screen-right {
    right: 8%;
    top: 35%;
    animation-delay: -3s;
}

.hologram-grid {
    width: 80%;
    height: 60%;
    background-image: linear-gradient(rgba(0, 212, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.15) 1px, transparent 1px);
    background-size: 15px 15px;
    margin-bottom: 8px;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.hologram-grid::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    top: 0;
    animation: scanLine 3s infinite linear;
}

@keyframes scanLine {
    0% { top: 0; }
    100% { top: 100%; }
}

@keyframes floatHologram {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(2deg); }
}

/* Products Grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px; overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}
.product-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 212, 255, 0.1), transparent);
    transform: skewX(-20deg); transition: 0.5s; pointer-events: none; z-index: 10;
}
.product-card:hover::before { left: 150%; }
.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(0, 212, 255, 0.25);
}
.product-image { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid var(--border-color); }
.product-content { padding: 25px; }
.product-title { font-size: 1.3rem; margin-bottom: 10px; }

/* Status Badges */
.status-badge { padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}
.status-undetected { background: rgba(16, 185, 129, 0.15); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.3); }
.status-detected { background: rgba(244, 63, 94, 0.15); color: var(--danger); border: 1px solid rgba(244, 63, 94, 0.3); }
.status-updating { background: rgba(251, 191, 36, 0.15); color: var(--warning); border: 1px solid rgba(251, 191, 36, 0.3); }

/* Panels */
.panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 15px; padding: 30px; margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.85);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px; margin-top: 50px;
}
.footer-content { display: flex; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 30px;}
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.9rem; }

/* Utilities */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* Alerts */
.alert { padding: 15px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; }
.alert-success { background: rgba(16, 185, 129, 0.1); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.2); }
.alert-danger { background: rgba(244, 63, 94, 0.1); color: var(--danger); border: 1px solid rgba(244, 63, 94, 0.2); }

/* Product Details Grid */
.product-detail-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.product-gallery { border-radius: 15px; overflow: hidden; border: 1px solid var(--border-color); }
.product-gallery img { width: 100%; height: auto; display: block; }
.product-info-panel { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 15px; padding: 30px; backdrop-filter: blur(10px); }
.pricing-plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
.plan-card {
    background: rgba(0,0,0,0.3); border: 1px solid var(--border-color);
    border-radius: 10px; padding: 20px; text-align: center; cursor: pointer; transition: all 0.3s ease;
}
.plan-card.selected { border-color: var(--primary); background: rgba(0, 212, 255, 0.1); box-shadow: 0 0 15px rgba(0, 212, 255, 0.2); }
.plan-card:hover { border-color: var(--primary); }

@media (max-width: 768px) {
    .product-detail-layout { grid-template-columns: 1fr; }
    .navbar .container { flex-direction: column; gap: 15px; }
}

/* Featured Products - 1-1 Mockup Replica Styles */
.featured-outer-container {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.featured-hud-frame {
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 50px 40px 40px;
    background: rgba(10, 18, 50, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.1), inset 0 0 25px rgba(0, 212, 255, 0.05);
    position: relative;
}

/* Custom corner decors for fütüristik HUD look */
.featured-hud-frame::before {
    content: '';
    position: absolute;
    top: -2px; left: 15%; width: 70%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    box-shadow: 0 0 12px var(--primary);
}

.featured-title-wrap {
    text-align: center;
    position: relative;
    margin-top: -75px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-title-wrap h2 {
    background: #0a0e27;
    padding: 8px 30px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cyber-card {
    background: rgba(12, 24, 60, 0.55);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 15px rgba(0, 212, 255, 0.02);
}

/* Diagonal cut corner notch simulations */
.cyber-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 15px; height: 15px;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
    border-top-left-radius: 4px;
}

.cyber-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; width: 15px; height: 15px;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    border-bottom-right-radius: 4px;
}

.cyber-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 212, 255, 0.4);
}

.cyber-badge-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.cyber-meta h3 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-meta p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* 1-1 Hexagon shape clipping */
.cyber-hexagon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.5);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    color: var(--primary);
    font-size: 1.6rem;
}

.cyber-checklist {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.cyber-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.cyber-checklist li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.1rem;
    text-shadow: 0 0 8px var(--primary);
}

.cyber-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.cyber-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: normal;
}

.cyber-btn-featured {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15) 0%, rgba(14, 165, 233, 0.15) 100%);
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cyber-btn-featured::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.cyber-btn-featured:hover::before {
    left: 150%;
}

.cyber-btn-featured:hover {
    background: var(--primary);
    color: #050a18;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

