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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B0F0C;  
    color: #F5F5DC;             
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* ========== BACKGROUND IMAGE (USER REPLACES URL) ========== */
.landing-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 👇 REPLACE THIS URL WITH YOUR BACKGROUND IMAGE LINK 👇 */
    background-image: url('../shikamaru.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Dark overlay for readability (using charcoal tone) */
.overlay-dark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 12, 0.75);  /* #0B0F0C with opacity */
    backdrop-filter: blur(3px);
    z-index: -1;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 2;
}

/* ========== NAVBAR ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(245, 245, 220, 0.15);
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 2rem;
    color: #7BA46E;  
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 700;
    font-family: 'Kanit', sans-serif;
    background: linear-gradient(135deg, #F5F5DC, #7BA46E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-center a {
    position: relative;
    color: #F5F5DC;
    text-decoration: none;
}

.nav-center a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #7BA46E;
    transition: 0.3s;
}

.nav-center a:hover {
    color: #7BA46E;
}

.nav-center a:hover::after {
    width: 100%;
}
.nav-center {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.nav-signin {
    background: transparent;
    border: 1px solid #7BA46E;
    padding: 0.4rem 1rem;
    border-radius: 40px;
}

.btn-primary-small {
    background: #1B4332;  
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    color: #F5F5DC !important;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary-small:hover {
    background: #3A5A40;   
    transform: scale(1.02);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #F5F5DC;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0B0F0C;
    border: 1px solid #3A5A40;
    border-radius: 20px;
    padding: 1rem;
    margin: 0.5rem 0;
    gap: 1rem;
}

.mobile-menu a {
    color: #F5F5DC;
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
}

.btn-primary-mobile {
    background: #1B4332;
    text-align: center;
    padding: 0.7rem;
    border-radius: 40px;
    margin-top: 0.5rem;
}

/* ========== DESKTOP LAYOUT - SIDE BY SIDE, NO BORDER, SEPARATE BG ========== */
.desktop-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin: 2rem 0 4rem;
}

/* LEFT SIDE - NO BORDER, ITS OWN BG */
.hero-left {
    flex: 1;
    text-align: left;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* RIGHT SIDE - NO EXTRA BORDER, ITS OWN BG */
.ninja-right {
    flex: 1;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(58, 90, 64, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #7BA46E;
    margin-bottom: 1.5rem;
}

/* Hero Title */
.hero-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-highlight {
    background: linear-gradient(120deg, #F5F5DC, #7BA46E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    color: #D4D4C8;
    max-width: 550px;
    margin: 0 0 2rem 0;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #1B4332;
    color: #F5F5DC;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    border: 1px solid #7BA46E;
}

btn-primary:hover {
    background: #3A5A40;
    transform: scale(1.5);
    border-color: #7BA46E;
    box-shadow: 0 0 8px #7BA46E,
                0 0 20px rgba(123, 164, 110, 0.5),
                0 0 35px rgba(58, 90, 64, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #6C757D;
    color: #F5F5DC;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-secondary:hover {
    border-color: #7BA46E;
    background: rgba(123, 164, 110, 0.15);
    transform: scale(1.02);
    box-shadow: 0 0 10px #7BA46E,
                0 0 20px rgba(123, 164, 110, 0.4);
    color: #F5F5DC;
}

/* Trust Badge */
.trust-badge {
    font-size: 0.9rem;
    color: #C0C0B0;
    background: rgba(11, 15, 12, 0.5);
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    backdrop-filter: blur(2px);
}

/* RIGHT SIDE - IFRAME STYLES (NO EXTRA BORDER) */
.ninja-label {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #7BA46E;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ninja-iframe {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    border: none;
    background: transparent;
    box-shadow: none;
}

.iframe-note {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0.8rem;
    color: #6C757D;
}


/* ========== FEATURES GRID ========== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(27, 67, 50, 0.5);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 1.8rem;
    transition: 0.25s;
    border: 1px solid rgba(58, 90, 64, 0.6);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(27, 67, 50, 0.75);
    border-color: #7BA46E;
}

.feature-icon {
    font-size: 2.2rem;
    color: #7BA46E;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: #F5F5DC;
}

.feature-card p {
    color: #D4D4C8;
    font-size: 0.9rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: rgba(11, 15, 12, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #3A5A40;
}

.cta-content h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-think {
    color: #7BA46E;
    font-style: italic;
}

.cta-content p {
    margin-bottom: 1.8rem;
    color: #CECEC0;
}

/* ========== FOOTER ========== */
.footer {
    border-top: 1px solid rgba(58, 90, 64, 0.5);
    padding: 2rem 0 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #9E9E8E;
}

.footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

.footer-links a {
    color: #9E9E8E;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #7BA46E;
}

/* ========== RESPONSIVE (MOBILE) ========== */
@media (max-width: 760px) {
    .container {
        padding: 1rem 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    .nav-center {
        display: none;
    }

    .nav-right {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    .desktop-layout {
    flex-direction: column;
    gap: 2rem;
}

/* Order fix */
.hero-left {
    order: 1;
    width: 100%;
    text-align: left;
}

.ninja-right {
    order: 2;
    width: 100%;
}

/* Thoda spacing */
.ninja-label {
    margin-top: 1rem;
}
    .ninja-iframe {
        height: auto;
        max-height: 300px;
        object-fit: contain;
        
    }
    
    .features {
        gap: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .ninja-iframe {
        height: auto;
        max-height: 300px;
    }
}