:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #FFD700;
    /* Gold */
    --accent-glow: rgba(255, 215, 0, 0.6);
    --secondary-accent: #FF4500;
    /* Fire Red */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo .highlight {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav {
    border: 1px solid var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: var(--accent);
}

.btn-nav:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay for text readability */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;

    /* Gradient Text */
    background: linear-gradient(to right, #fff, var(--accent), var(--secondary-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.scroll-hint {
    margin-top: 3rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-hint i {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    color: var(--accent);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    /* Matches background to hide main text */
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(70px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(20px, 9999px, 50px, 0);
    }

    15% {
        clip: rect(80px, 9999px, 10px, 0);
    }

    20% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 80px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    5% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    10% {
        clip: rect(30px, 9999px, 90px, 0);
    }

    15% {
        clip: rect(80px, 9999px, 50px, 0);
    }

    20% {
        clip: rect(20px, 9999px, 40px, 0);
    }

    100% {
        clip: rect(60px, 9999px, 10px, 0);
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent), var(--secondary-accent));
    color: #000;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-2px);
    background: linear-gradient(45deg, var(--secondary-accent), var(--accent));
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Reason Section */
.reason-section {
    padding: 6rem 10%;
    background: #0a0a0a;
}

.highlight-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-right: 3px solid var(--accent);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.reason-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.reason-item i {
    font-size: 2rem;
    color: var(--secondary-accent);
    margin-bottom: 1rem;
}

.reason-item h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.reason-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-invoice {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.btn-invoice:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-2px);
}

/* Specs Section */
.specs-section {
    padding: 6rem 10%;
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: var(--accent);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--accent);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid #222;
    border-radius: 8px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
}

.spec-card.show {
    opacity: 1;
    transform: translateY(0);
}

.spec-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
    transform: translateY(-5px);
}

.spec-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.spec-card h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.spec-card .spec-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.spec-card .spec-detail {
    font-size: 0.85rem;
    color: #666;
}

/* Rolling Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: #080808;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding: 1rem 0;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    height: 300px;
    width: 450px;
    /* Fixed width for consistency */
    flex-shrink: 0;
    border-radius: 8px;
    border: 2px solid #333;
    overflow: hidden;
    cursor: zoom-in;
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes track is duplicated */
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    border: 2px solid var(--accent);
    box-shadow: 0 0 50px var(--accent-glow);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary-accent);
}

/* Video Section */
.video-section {
    padding: 6rem 10%;
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
}

iframe {
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(var(--bg-color), #0f0f0f);
    text-align: center;
}

.contact-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-container p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #333;
}

.contact-btn i {
    font-size: 1.2rem;
}

.contact-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.contact-btn.whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.price-tag {
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    margin-top: 1rem;
}

.price-tag .amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    /* Make it stack on mobile/desktop for emphasis */
    margin: 0.5rem 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.price-tag .note {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: normal;
    font-family: 'Inter', sans-serif;
}

footer {
    padding: 2rem;
    text-align: center;
    background: #000;
    color: #444;
    font-size: 0.8rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    animation: bounce-in 1s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        background: rgba(5, 5, 5, 0.95);
        /* More opaque for readability */
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .nav-links a {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .btn-nav {
        padding: 0.4rem 1rem;
    }

    .hero-content {
        padding: 0 1.5rem;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        /* Smaller font for mobile */
        line-height: 1.2;
        margin-bottom: 1.5rem;
        /* Disable complex gradient/clip on mobile for cleaner look if needed, or keep it. 
           Let's keep the gradient but reduce the glitch intensity or font size. */
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-group {
        flex-direction: column;
        /* Stack buttons */
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        /* Full width buttons */
        display: block;
    }

    .specs-grid,
    .reason-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reason-section {
        padding: 3rem 1.5rem;
    }

    .highlight-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .reason-item {
        padding: 1.5rem;
    }

    .specs-section {
        padding: 3rem 1.5rem;
    }

    .spec-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .section-title::after {
        width: 100px;
    }

    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-item {
        width: 280px;
        /* Slightly smaller for better fit on narrow screens */
        height: 200px;
        /* Adjust height to maintain aspect ratio */
    }

    .video-section {
        padding: 3rem 1.5rem;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }

    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}