/* ===================================================
   AIM AI PREMIUM PURPLE DESIGN SYSTEM (CLEAN & ELEGANT)
   =================================================== */

:root {
    --primary: #7e22ce;
    --primary-light: #9333ea;
    --primary-accent: #a855f7;
    --primary-glow: rgba(168, 85, 247, 0.35);
    
    --bg-darkest: #0a0612;
    --bg-card: #120c1f;
    --bg-card-hover: #19112a;
    --border-card: #261940;
    
    --wa-green: #25d366;
    --wa-green-hover: #1ebd54;
    
    --text-primary: #ffffff;
    --text-secondary: #c084fc;
    --text-muted: #94a3b8;
    
    --font-heading: 'Space Grotesk', 'Montserrat', sans-serif;
    --font-sans: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

/* ---------------- TOP PURPLE HEADER ---------------- */
header.site-header {
    background: #7e22ce;
    height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(16px, 4vw, 36px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(126, 34, 206, 0.35);
    box-sizing: border-box;
    width: 100%;
}

.site-header .menu-trigger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    user-select: none;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.site-header .menu-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
}

.site-header .menu-icon-svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    display: block;
    flex-shrink: 0;
}

.site-header #menu-text {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
}

/* Header Logo */
.site-header .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-header .header-logo img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.site-header .header-logo:hover img {
    transform: scale(1.08);
}

.site-header .shop-link {
    background: #ffffff;
    color: #000000 !important;
    padding: 8px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    border: none;
}

.site-header .shop-link:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

/* ---------------- SIDE NAVIGATION DRAWER ---------------- */
.sidenav {
    height: 100%;
    width: 360px;
    max-width: 88vw;
    position: fixed;
    z-index: 99995;
    top: 0;
    left: 0;
    background: #0e0918;
    background-image: radial-gradient(rgba(168, 85, 247, 0.15) 1px, transparent 1px);
    background-size: 16px 16px;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    visibility: hidden;
    border-right: 2px solid #7e22ce;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    font-family: var(--font-sans);
    will-change: transform;
}

.sidenav.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    visibility: visible;
}

.sidenav-content {
    padding: 24px 20px 36px;
    width: 100%;
    box-sizing: border-box;
}

.sidenav .closebtn {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: #94a3b8;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 10;
}

.sidenav .closebtn:hover {
    transform: rotate(90deg);
    color: #a855f7;
}

.s1-hud-header {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.s1-hud-badge {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: #c084fc;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

.s1-hud-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.s1-box {
    background: #140d22;
    border: 1px solid #281a42;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
}

.s1-box h4 {
    font-size: 12px;
    font-weight: 800;
    color: #c084fc;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.s1-box p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 10px;
}

.s1-about-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(126, 34, 206, 0.2);
    border: 1px solid #7e22ce;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.s1-about-btn:hover {
    background: #7e22ce;
}

.s1-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.s1-link-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.s1-link-btn:hover {
    background: rgba(126, 34, 206, 0.25);
    border-color: #a855f7;
    color: #ffffff;
    transform: translateX(4px);
}

.s1-report-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    font-weight: 800;
    font-size: 13.5px;
    padding: 13px 16px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 18px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all 0.2s ease;
}

.s1-report-btn:hover {
    background: #1ebd54;
    transform: translateY(-1px);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99990;
    display: none;
}

/* ---------------- UNIVERSAL FOOTER STYLING ---------------- */
footer.site-footer {
    background: #090510;
    border-top: 1px solid #23163a;
    padding: 40px 20px 35px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-nav-links {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-nav-links a {
    color: #c084fc;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-nav-links a:hover {
    color: #ffffff;
}

.footer-nav-links span.bullet {
    color: #64748b;
    font-size: 12px;
}

.legal-disclaimer-box {
    margin: 16px auto 14px;
    padding: 14px 20px;
    background: rgba(20, 13, 34, 0.75);
    border: 1px solid #281a42;
    border-radius: 10px;
    font-size: 11.5px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 860px;
    text-align: center;
    box-sizing: border-box;
}

.legal-disclaimer-box strong {
    color: #c084fc;
    display: inline-block;
    margin-bottom: 4px;
}

.footer-copy {
    color: #64748b;
    font-size: 12px;
    margin-top: 8px;
}

