:root {
    --bg-dark: #050505;
    --bg-card: #0f1215;
    --neon-green: #00ff41;
    --neon-dim: #008f11;
    --text-main: #e0e0e0;
    --text-muted: #888;
    --font-head: 'Orbitron', sans-serif;
    --font-code: 'Fira Code', monospace;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-code);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.text-center { text-align: center; }

.section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn.primary {
    background-color: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.btn.primary:hover {
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.8);
}

.btn.secondary {
    background-color: transparent;
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.btn.secondary:hover {
    background-color: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

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

.btn.outline:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* Navbar */
.navbar {
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid #222;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-family: var(--font-code);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--neon-green);
}

.btn-nav {
    border: 1px solid var(--neon-green);
    padding: 8px 20px;
    color: var(--neon-green);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,1));
    z-index: -1;
}

.terminal-window {
    background: rgba(15, 18, 21, 0.9);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-top: 2px solid var(--neon-green);
}

.terminal-header {
    background: #1a1d21;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-title {
    margin-left: 10px;
    font-size: 0.8rem;
    color: #888;
}

.terminal-body {
    padding: 40px;
    text-align: center;
}

.code-line {
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-align: left;
    font-family: 'Fira Code', monospace;
    opacity: 0.8;
}

.code-line.success {
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 10px 0 20px;
    color: #fff;
}

.hero-sub {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Stats Ticker */
.stats-bar {
    background: #0f1215;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 15px 0;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    color: var(--neon-green);
    font-family: var(--font-code);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Services Grid */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--neon-green);
    margin: 15px auto 0;
}

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

.card {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid #222;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.1);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--neon-green);
    font-size: 0.8rem;
}

/* Split Section (Features) */
.dark-alt {
    background: #0a0c0e;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lead {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
}

.feature-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.f-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 65, 0.1);
    color: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    flex-shrink: 0;
}

.f-content h4 {
    color: #fff;
    margin-bottom: 5px;
}

.f-content p {
    color: #888;
    font-size: 0.9rem;
}

.image-wrapper {
    position: relative;
    border: 1px solid var(--neon-green);
    padding: 10px;
    background: rgba(0, 255, 65, 0.05);
}

.glow-border {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.image-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(20%) contrast(120%);
}

.code-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    padding: 15px;
    border-left: 3px solid var(--neon-green);
    color: var(--neon-green);
    font-size: 0.8rem;
    font-family: 'Fira Code', monospace;
}

/* Pricing/Hosting */
.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 1px solid var(--neon-green);
    background: linear-gradient(145deg, #0f1215, #151a1f);
    transform: scale(1.05);
    z-index: 2;
}

.tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--neon-green);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 10px;
}

.card-header {
    text-align: center;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    font-family: var(--font-head);
}

.price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body ul {
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-body li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body li i {
    color: var(--neon-green);
}

.card-body .btn {
    width: 100%;
    text-align: center;
}

/* CTA Section */
.cta-section {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 120px 0;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.85);
    z-index: -1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.big-btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* Footer */
footer {
    background: #020202;
    border-top: 1px solid #222;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #666;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #111;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--neon-green);
    color: #000;
    border-color: var(--neon-green);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 20px;
    color: #444;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    .image-wrapper {
        margin-top: 30px;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        border-top: 1px solid #222;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .terminal-window {
        margin: 0 15px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
/* Vibitely Responsive Safety Fixes */
img, video, iframe, embed, object { max-width: 100%; height: auto; }
.vibitely-hidden { display: none !important; }
