:root {
    --neon-purple: #b026ff;
    --neon-purple-dim: rgba(176, 38, 255, 0.2);
    --neon-green: #39ff14;
    --neon-green-dim: rgba(57, 255, 20, 0.2);
    --bg-dark: #050505;
    --card-bg: rgba(10, 10, 15, 0.75);
    --text-main: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Advanced Parallax Cyber Grid */
.cyber-grid {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(176, 38, 255, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 38, 255, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 10s linear infinite;
    z-index: -1;
    pointer-events: none;
    box-shadow: inset 0 0 100px 100px var(--bg-dark);
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple), 0 0 40px var(--neon-purple);
    letter-spacing: 4px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-purple);
    margin-bottom: 20px;
    font-size: 28px;
    border-bottom: 2px solid var(--neon-purple-dim);
    padding-bottom: 10px;
    text-shadow: 0 0 8px var(--neon-purple);
}

.subtitle {
    color: var(--neon-green);
    margin-top: 10px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--neon-green);
}

/* Glassmorphism Cyber Cards */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(176, 38, 255, 0.4);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), inset 0 0 15px var(--neon-purple-dim);
    transition: 0.3s all ease-in-out;
    position: relative;
    overflow: hidden;
}

/* High-tech Mirror Reflection overlay on cards */
.card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: rotate(45deg);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 10px 30px rgba(176, 38, 255, 0.3), inset 0 0 20px var(--neon-purple-dim);
}

/* Grid for Services */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service {
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--neon-green);
    transition: 0.3s;
}

.service:hover {
    background: var(--neon-purple-dim);
    box-shadow: 0 0 15px var(--neon-purple-dim);
    transform: scale(1.02);
}

.service h3 {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px var(--neon-purple);
}

/* 3D Carousel Styles */
.carousel-container {
    perspective: 1000px;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 20px;
    cursor: grab;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel {
    width: 200px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s;
}

.carousel-item {
    position: absolute;
    width: 200px;
    height: 150px;
    left: 0;
    top: 0;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-dim);
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

.carousel-item:hover img {
    opacity: 1;
}

/* Status & Accents */
.status-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.open {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 20px;
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-dim);
}

.glow-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 10px var(--neon-green-dim); }
    50% { box-shadow: 0 0 25px var(--neon-green); text-shadow: 0 0 10px var(--neon-green); }
    100% { box-shadow: 0 0 10px var(--neon-green-dim); }
}

.highlight {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
    font-weight: 600;
}

.text-center { text-align: center; }
.small { font-size: 0.9rem; opacity: 0.8; margin-top: 15px; }

footer {
    text-align: center;
    margin-top: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid var(--neon-purple-dim);
    padding-top: 20px;
}

@media(max-width: 700px) {
    body { padding: 10px; }
    h1 { font-size: 40px; }
    .content-wrapper { padding: 20px 10px; }
    .carousel-container { height: 200px; }
    .carousel { width: 150px; height: 110px; }
    .carousel-item { width: 150px; height: 110px; }
}