:root {
    --bg: #050505;
    --primary: #ff00ff;
    --primary-glow: rgba(255, 0, 255, 0.5);
    --secondary: #00ffff;
    --secondary-glow: rgba(0, 255, 255, 0.5);
    --accent: #ffff00;
    --text: #ffffff;
    --text-dim: #888888;
    --card-bg: rgba(20, 20, 20, 0.8);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Orbitron', sans-serif;
    overflow-x: hidden;
    line-height: 1.4;
}

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

/* Background Effects */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 9999;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 10s linear infinite;
}

@keyframes scanline {
    0% {
        bottom: 100%;
    }

    100% {
        bottom: -100px;
    }
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    opacity: 0.05;
    pointer-events: none;
    background-image: url('../images/hero.png');
}

/* Typography */
.neon-text {
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    letter-spacing: 2px;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--secondary);
    text-transform: uppercase;
    border-left: 10px solid var(--primary);
    padding-left: 2rem;
    text-shadow: 0 0 10px var(--secondary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--secondary);
    padding: 1.5rem 0;
    transition: var(--transition);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #000;
    min-width: 200px;
    border: 1px solid var(--primary);
    top: 100%;
    left: 0;
    padding: 1rem 0;
    box-shadow: 0 0 20px var(--primary-glow);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.75rem;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--primary);
    color: #000;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-status {
    font-family: 'Share Tech Mono', monospace;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 8rem;
    line-height: 0.85;
    margin-bottom: 2rem;
    font-weight: 900;
}

.hero-desc {
    font-size: 1.5rem;
    max-width: 650px;
    color: var(--text-dim);
    margin-bottom: 4rem;
}

.hero-actions {
    display: flex;
    gap: 2rem;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }

    20% {
        clip: rect(62px, 9999px, 42px, 0);
    }

    /* ... more frames ... */
    100% {
        clip: rect(67px, 9999px, 62px, 0);
    }
}

/* Buttons */
.cyber-btn {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 3px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cyber-btn::after {
    content: '>>';
    position: absolute;
    right: -20px;
    transition: var(--transition);
}

.cyber-btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 30px var(--primary-glow);
    padding-right: 4.5rem;
}

.cyber-btn:hover::after {
    right: 20px;
}

.cyber-btn.sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
}

.cyber-btn.outline {
    border-color: var(--secondary);
    color: var(--secondary);
}

.cyber-btn.outline:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 30px var(--secondary-glow);
}

.cyber-btn.block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Sections */
section {
    padding: 10rem 0;
}

/* Cyber Grid */
.cyber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.cyber-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.cyber-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.card-id {
    font-family: 'Share Tech Mono', monospace;
    color: var(--primary);
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

.cyber-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.cyber-card p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.card-footer {
    display: flex;
    gap: 1rem;
}

.tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 350px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0) contrast(1.2);
    transition: var(--transition);
}

.gallery-item:hover img {
    filter: saturate(1.5) contrast(1);
    transform: scale(1.1);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
    position: relative;
}

.pricing-card.main {
    border: 2px solid var(--secondary);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: #000;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 900;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text);
}

.price span {
    font-size: 1rem;
    color: var(--primary);
}

.cyber-list {
    list-style: none;
    margin-bottom: 4rem;
}

.cyber-list li {
    margin-bottom: 1rem;
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    align-items: center;
}

.cyber-list li::before {
    content: '[+]';
    color: var(--secondary);
    margin-right: 1rem;
}

.cyber-list li.restricted {
    opacity: 0.3;
}

.cyber-list li.restricted::before {
    content: '[X]';
    color: var(--primary);
}

/* Reviews */
.reviews-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 0, 255, 0.03);
    border-left: 10px solid var(--primary);
    padding: 6rem;
    position: relative;
}

.review-card p {
    font-size: 2.5rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 3rem;
}

.review-card .author {
    font-family: 'Share Tech Mono', monospace;
    color: var(--secondary);
    font-size: 1.2rem;
}

.review-nav {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}

.review-nav button {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.review-nav button:hover {
    background: var(--secondary);
    color: #000;
}

/* Terminal Contact */
.terminal-container {
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.terminal-header {
    background: var(--secondary);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
}

.terminal-header .title {
    color: #000;
    margin-left: 1rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    font-weight: 900;
}

.terminal-body {
    padding: 2.5rem;
}

.prompt {
    font-family: 'Share Tech Mono', monospace;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.terminal-form {
    margin-top: 2rem;
}

.input-line {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.input-line .label {
    font-family: 'Share Tech Mono', monospace;
    color: var(--primary);
    padding-top: 0.8rem;
}

.terminal-form input,
.terminal-form textarea {
    flex-grow: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    padding: 0.8rem 0;
}

.terminal-form input:focus,
.terminal-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Footer */
footer {
    padding: 8rem 0 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.footer-info p {
    margin-top: 1.5rem;
    color: var(--text-dim);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-status {
    text-align: right;
    font-family: 'Share Tech Mono', monospace;
    color: #333;
    font-size: 0.8rem;
}

/* Drawer */
.drawer {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: #000;
    z-index: 2000;
    padding: 4rem 2rem;
    transition: var(--transition);
    border-left: 2px solid var(--primary);
}

.drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
}

.close-drawer {
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.drawer-link {
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 900;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1999;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #000;
    border: 1px solid var(--primary);
    margin: 10% auto;
    padding: 3rem;
    width: 60%;
    max-width: 700px;
    box-shadow: 0 0 50px var(--primary-glow);
}

.close-modal {
    float: right;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
}

.log-list {
    list-style: none;
    margin: 2rem 0;
    font-family: 'Share Tech Mono', monospace;
    color: var(--secondary);
}

.log-list li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .modal-content {
        width: 90%;
    }

    .cyber-grid {
        grid-template-columns: 1fr;
    }
}