:root {
    --primary-color: #00ff9d;
    --secondary-color: #ff0055;
    --bg-color: #050505;
    --card-bg: #111;
    --text-color: #eee;
    --accent-blue: #00d4ff;
}

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

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

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
    transition: color 0.3s;
    font-size: 0.9rem;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('./assets/images/hero-bg.png') no-repeat center center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-color) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

h1.glitch {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    position: relative;
    margin-bottom: 1rem;
    text-shadow: 2px 2px var(--secondary-color), -2px -2px var(--primary-color);
    animation: glitch 1s infinite alternate;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #ccc;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-color);
}

/* Feature Sections */
.feature-section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.reverse .container {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    position: relative;
}

.image-content img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.image-content img:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.feature-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-left: 5px solid var(--secondary-color);
    padding-left: 20px;
}

.reverse h2 {
    border-left: none;
    border-right: 5px solid var(--primary-color);
    padding-left: 0;
    padding-right: 20px;
    text-align: right;
}
.reverse .text-content {
    text-align: right;
}
.reverse .feature-list li {
    align-items: flex-end;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #aaa;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.feature-list strong {
    color: var(--accent-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

/* Gallery */
.gallery-section {
    padding: 100px 20px;
    background: #080808;
}

.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #fff;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #333;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Final CTA */
.final-cta {
    padding: 150px 20px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('./assets/images/hero-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.final-cta p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Footer */
footer {
    padding: 40px 20px;
    text-align: center;
    background: #000;
    border-top: 1px solid #222;
    color: #666;
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes glitch {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    
    .reverse .container {
        flex-direction: column;
    }

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

    .feature-section h2, .reverse h2 {
        border: none;
        padding: 0;
        text-align: center;
        margin-bottom: 1rem;
    }

    .reverse .feature-list li {
        align-items: center;
    }

    h1.glitch {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 20px;
    }
    
    .nav-links {
        display: none; /* Simple hide for mobile for now, or could implement hamburger */
    }
}
