/* --- Ignite Page Specific Styles --- */
.ignite-body {
    background-color: #030303; /* Deep space black */
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* =========================================
   HEADER OVERRIDES FOR DARK THEME
   ========================================= */
/* Because style.css turns the header white on scroll, we override it here */
.ignite-body .site-header.scrolled {
    background: rgba(5, 5, 5, 0.95) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Keep main logo white */
.ignite-body .site-header.scrolled .nav-logo-img {
    filter: brightness(0) invert(1) !important;
}
/* Hide the dark secondary logo on this dark page */
.ignite-body .second-logo {
    display: none !important; 
}

/* Keep Call Button white/teal */
.btn-ignite-call {
    color: white !important; 
    border-color: rgba(255,255,255,0.5) !important; 
    background: transparent !important;
}
.ignite-body .site-header.scrolled .btn-ignite-call {
    color: var(--accent-color, #00d2d3) !important;
    border-color: rgba(255,255,255,0.2) !important;
}
.ignite-body .btn-call:hover {
    background: var(--accent-color, #00d2d3) !important;
    color: #000 !important;
    border-color: var(--accent-color, #00d2d3) !important;
}

/* Keep Hamburger Menu white */
.ignite-body .site-header.scrolled .menu-toggle {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.3) !important;
}
.ignite-body .site-header.scrolled .menu-toggle .bar {
    background-color: white !important;
}
.ignite-body .site-header.scrolled .menu-toggle:hover {
    background: var(--accent-color, #00d2d3) !important;
    border-color: var(--accent-color, #00d2d3) !important;
}

/* Overlay Active Link Highlight (if not already globally defined) */
.main-nav ul li a.current {
    color: var(--accent-color, #00d2d3);
    position: relative;
}
.main-nav ul li a.current::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color, #00d2d3);
}

/* =========================================
   HERO SECTION
   ========================================= */
.ignite-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    padding: 150px 20px 80px; 
    overflow: hidden; 
}

/* Cyber Grid Background */
.ignite-grid-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    transform: perspective(500px) rotateX(60deg) translateY(-100px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* Floating Elements */
.floating-icons {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
}

.float-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    animation: floatUpDown 6s ease-in-out infinite alternate;
}

.float-icon-1 { top: 20%; left: 15%; font-size: 3rem; animation-delay: 0s; color: rgba(0, 210, 211, 0.1); }
.float-icon-2 { top: 60%; left: 10%; font-size: 5rem; animation-delay: -2s; }
.float-icon-3 { top: 25%; right: 15%; font-size: 4rem; animation-delay: -4s; color: rgba(255, 94, 0, 0.1); }
.float-icon-4 { top: 70%; right: 10%; font-size: 3.5rem; animation-delay: -1s; }

@keyframes floatUpDown {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(15deg); }
}

/* Ambient Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
    animation: drift 10s infinite alternate ease-in-out;
}

.orb-top {
    width: 400px;
    height: 400px;
    background: rgba(0, 210, 211, 0.4); 
    top: 5%;
    left: 15%;
}

.orb-bottom {
    width: 500px;
    height: 500px;
    background: rgba(138, 43, 226, 0.2); 
    bottom: -10%;
    right: 5%;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Content Container */
.ignite-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    width: 100%;
    position: relative;
}

.badge-container { margin-bottom: 30px; }

.ignite-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ignite-badge i {
    color: #ff5e00;
    margin-right: 8px;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.ignite-title {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Glowing Scan-Line Text Effect */
.coming-soon-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 0 30px 0;
}

.glowing-text {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.3),
        0 0 40px rgba(0, 210, 211, 0.4),
        0 0 80px rgba(0, 210, 211, 0.4);
}

/* Shiny sweep overlay */
.glowing-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-color, #00d2d3);
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    animation: sweep 4s ease-in-out infinite;
    text-shadow: 0 0 20px var(--accent-color, #00d2d3);
}

@keyframes sweep {
    0%, 10% { clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%); }
    50% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    90%, 100% { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
}

.ignite-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ignite-desc strong {
    color: var(--accent-color, #00d2d3);
}

/* Buttons */
.ignite-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ignite-home {
    padding: 15px 35px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.btn-ignite-home:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-ignite-notify {
    padding: 15px 35px;
    background: var(--accent-color, #00d2d3);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(0, 210, 211, 0.4);
}

.btn-ignite-notify:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 210, 211, 0.8);
    background: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ignite-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-ignite-home, .btn-ignite-notify {
        width: 100%;
        justify-content: center;
    }

    .orb-top {
        width: 250px;
        height: 250px;
        top: 0;
        left: -10%;
    }

    .orb-bottom {
        width: 300px;
        height: 300px;
        bottom: 0;
        right: -20%;
    }
    
    .float-icon { display: none; }
}
/* Keep BOTH logos white on the dark Ignite page */
.ignite-body .site-header .nav-logo-img {
    filter: brightness(0) invert(1) !important;
}

/* Ensure the second logo is sized correctly and visible */
.ignite-body .second-logo {
    display: block !important;
    height: 50px; 
    width: auto;
    object-fit: contain;
}
.ignite-body .site-header.scrolled .second-logo {
    height: 40px; 
}
/* Nav Overlay (Sidebar Style) */
.nav-overlay { 
    position: fixed; 
    top: 0; 
    right: -400px; 
    left: auto;
    width: 100%; 
    max-width: 400px; 
    height: 100vh; 
    background-color: rgba(5, 5, 5, 0.95); 
    backdrop-filter: blur(10px); 
    z-index: 1000; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    visibility: hidden; 
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s; 
    pointer-events: none;
    box-shadow: -15px 0 40px rgba(0,0,0,0.4); 
}

.nav-overlay.active { 
    right: 0; 
    visibility: visible; 
    pointer-events: auto; 
}

.close-btn { 
    position: absolute; 
    top: 30px; 
    right: 30px; 
    background: white; 
    border: none; 
    color: black; 
    font-size: 2.5rem; 
    line-height: 1; 
    cursor: pointer; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    transition: 0.3s; 
}

.close-btn:hover { 
    background: var(--accent-color); 
    color: white; 
    transform: rotate(90deg); 
}

.main-nav ul { 
    list-style: none; 
    text-align: center; 
    padding: 0; 
}

.main-nav ul li { 
    margin: 15px 0; 
    transform: translateX(50px); 
    opacity: 0; 
    transition: all 0.5s ease; 
    transition-delay: calc(0.1s * var(--i)); 
}

.nav-overlay.active .main-nav ul li { 
    transform: translateX(0); 
    opacity: 1; 
}

.main-nav ul li a { 
    text-decoration: none; 
    color: white; 
    font-size: 2.5rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: color 0.3s; 
}

.main-nav ul li a:hover { color: var(--accent-color); }

/* Highlight the current page in the overlay */
.main-nav ul li a.current {
    color: var(--accent-color);
    position: relative;
}
.main-nav ul li a.current::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}
@media (max-width: 768px) {
    /* Mobile Sidebar Width */
    .nav-overlay { max-width: 300px; right: -300px; }
    .nav-overlay.active { right: 0; }
    /* ... your other mobile CSS ... */
}