/* =========================
   GOOGLE FONT (FUTURISTIC)
========================= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&family=Rajdhani:wght@400;600&display=swap');

/* =========================
   GLOBAL DARK STYLE
========================= */
body {
    background: #08080c !important;
    color: #f5f7ff !important;
    font-family: 'Rajdhani', sans-serif !important;
}

/* Background glow */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 15%, rgba(157,78,221,0.20), transparent 32%),
        radial-gradient(circle at 80% 35%, rgba(59,130,246,0.16), transparent 28%),
        radial-gradient(circle at 50% 90%, rgba(236,72,153,0.12), transparent 30%);
    z-index: -1;
}

/* =========================
   HEADER + LOGO (SOLOSTREAM STYLE)
========================= */
.site-header,
header {
    background: #08080c !important;
}

.site-title,
.site-title a {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 5px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    text-shadow:
        0 0 8px rgba(178,107,255,0.6),
        0 0 16px rgba(178,107,255,0.4),
        0 0 30px rgba(178,107,255,0.25);
}

/* Subtitle */
.site-description {
    color: #9ca3af !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
}

/* Navigation */
.site-header a {
    color: #d1d5db !important;
    font-weight: 600 !important;
}

.site-header a:hover {
    color: #b26bff !important;
}

/* =========================
   TITLES
========================= */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #ffffff !important;
}

/* =========================
   AI TOOL PAGE LAYOUT
========================= */
.single-ai_tool .site-main,
.single-ai_tool main {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 40px 24px !important;
}

/* Main title */
.single-ai_tool h1 {
    font-size: 52px !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
}

/* =========================
   MAIN TOOL CARD (GLASS DARK)
========================= */
.aih-tool-box {
    max-width: 980px !important;
    margin: 40px 0 70px 0 !important;
    padding: 36px !important;
    background: linear-gradient(145deg, rgba(18,18,28,0.96), rgba(8,8,12,0.96)) !important;
    border: 1px solid rgba(178,107,255,0.35) !important;
    border-radius: 28px !important;
    box-shadow:
        0 0 50px rgba(140, 82, 255, 0.18),
        inset 0 0 35px rgba(255,255,255,0.03) !important;
    backdrop-filter: blur(16px) !important;
}

/* =========================
   META BADGES
========================= */
.aih-tool-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    margin-bottom: 28px !important;
}

.aih-tool-meta span {
    display: inline-flex !important;
    align-items: center !important;
    padding: 10px 16px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(178,107,255,0.35) !important;
    border-radius: 999px !important;
    color: #f5f7ff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* =========================
   TEXT
========================= */
.aih-tool-box p {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #cbd5e1 !important;
    margin: 16px 0 !important;
}

.aih-tool-box strong {
    color: #ffffff !important;
}

/* =========================
   BUTTONS (NEON STYLE)
========================= */
.aih-tool-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-top: 32px !important;
}

.aih-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 170px !important;
    padding: 15px 24px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: all 0.22s ease !important;
}

/* Primary */
.aih-button.primary {
    background: linear-gradient(135deg, #9d4edd, #6c2bd9) !important;
    color: #ffffff !important;
    box-shadow:
        0 0 22px rgba(157,78,221,0.55),
        0 12px 34px rgba(108,43,217,0.35) !important;
}

.aih-button.primary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 0 34px rgba(157,78,221,0.75),
        0 16px 42px rgba(108,43,217,0.45) !important;
}

/* Secondary */
.aih-button.secondary {
    background: rgba(255,255,255,0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
}

.aih-button.secondary:hover {
    background: rgba(178,107,255,0.18) !important;
    border-color: rgba(178,107,255,0.55) !important;
}

/* =========================
   LINKS
========================= */
a {
    color: #b26bff !important;
}

a:hover {
    color: #ffffff !important;
}

/* =========================
   FOOTER
========================= */
footer,
.site-footer {
    background: #08080c !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    color: #9ca3af !important;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .single-ai_tool h1 {
        font-size: 38px !important;
    }

    .aih-tool-box {
        padding: 24px !important;
        border-radius: 22px !important;
    }

    .aih-button {
        width: 100% !important;
    }
}

