/* ================= GLOBAL ================= */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f9fc;
    color: #222;
    text-align: center;
}

a {
    text-decoration: none;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    padding: 90px 20px 120px;
    background: linear-gradient(135deg, #5674ff, #2c3dc4, #10166d);
    background-size: 350% 350%;
    animation: gradientShift 9s ease infinite;
    color: white;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* PARTICLE BACKGROUND */
.particle-layer,
.particle-layer-2 {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.particle-layer {
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0, transparent 40%),
        radial-gradient(circle at 75% 50%, rgba(255,255,255,0.12) 0, transparent 40%);
    opacity: 0.25;
    animation: float1 12s infinite ease-in-out;
}

.particle-layer-2 {
    background-image:
        radial-gradient(circle at 40% 70%, rgba(255,255,255,0.18) 0, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(255,255,255,0.14) 0, transparent 40%);
    opacity: 0.20;
    animation: float2 14s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0,0); }
    50% { transform: translate(10px,20px); }
    100% { transform: translate(0,0); }
}

@keyframes float2 {
    0% { transform: translate(0,0); }
    50% { transform: translate(-15px,-25px); }
    100% { transform: translate(0,0); }
}

/* AI MATRIX OVERLAY */
.ai-matrix {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.06;
    pointer-events: none;
}

.drift {
    animation: driftMatrix 20s linear infinite;
}

@keyframes driftMatrix {
    from { transform: translateY(0); }
    to { transform: translateY(40px); }
}

/* FADE ANIMATIONS */
.fade-in { animation: fadeIn 1.2s ease forwards; }
.fade-in-delay { opacity: 0; animation: fadeIn 1.5s ease forwards; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-stagger > div {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}
.fade-in-stagger > div:nth-child(1) { animation-delay: 0.25s; }
.fade-in-stagger > div:nth-child(2) { animation-delay: 0.4s; }
.fade-in-stagger > div:nth-child(3) { animation-delay: 0.55s; }
.fade-in-stagger > div:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}

/* LOGO + HALO HOVER EFFECT */
.header-logo img {
    max-width: 460px;
    width: 97%;
    height: auto;
    margin: 0 auto;
    filter:
        drop-shadow(0 0 18px rgba(255,215,0,1))
        drop-shadow(0 0 32px rgba(255,195,0,0.55))
        drop-shadow(0 0 55px rgba(255,160,0,0.42));
}

.halo img:hover {
    filter:
        drop-shadow(0 0 28px rgba(255,230,120,1))
        drop-shadow(0 0 55px rgba(255,200,0,0.7));
    transition: 0.4s ease;
}

/* TITLE — MAKE WHITE TEXT THICKER */
.title-gradient {
    background: linear-gradient(90deg, #ffffff, #e2e8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 52px;
    font-weight: 900;
}

.glow-title {
    animation: glowPulse 4s infinite alternate;
}

@keyframes glowPulse {
    from { text-shadow: 0 0 14px rgba(255,255,255,0.45); }
    to { text-shadow: 0 0 26px rgba(195,210,255,1); }
}

/* SUBTEXT — ALSO THICKER */
.subtext {
    font-size: 21px;
    margin: 16px auto 40px;
    max-width: 760px;
    line-height: 1.5;
    opacity: 0.98;
    font-weight: 700;
    color: #ffffff;
}

/* CTA BUTTONS */
.cta-group {
    margin-bottom: 20px;
}

.cta-btn {
    background: #00c3ff;
    color: #000;
    padding: 24px 54px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 0 26px rgba(0,194,255,0.95);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin: 8px;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 45px rgba(0,194,255,1);
}

/* SECONDARY CTA */
.cta-btn.secondary {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.55);
    font-weight: 800;
}

/* NEON CTA */
.neon {
    border: 2px solid rgba(0,194,255,0.85);
    box-shadow:
        0 0 14px rgba(0,194,255,0.75),
        inset 0 0 14px rgba(0,194,255,0.65);
}

/* RIPPLE EFFECT */
.ripple:hover {
    animation: rippleGlow 0.65s ease-out;
}

@keyframes rippleGlow {
    from { box-shadow: 0 0 24px rgba(0,194,255,0.7); }
    to { box-shadow: 0 0 52px rgba(0,194,255,1); }
}

/* MAKE POWERED BY AI MORE GOLD + BIGGER */
.gold {
    background: linear-gradient(90deg, #ffdf8f, #ffba34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 16px rgba(255,200,0,0.65);
    font-weight: 900;
}

.gold-boost {
    font-size: 26px;
}

.gold-flicker {
    animation: flicker 3.5s infinite alternate;
}

@keyframes flicker {
    from { filter: brightness(1); }
    to { filter: brightness(1.35); }
}

/* TRUST BADGE */
.trust-badge {
    margin-top: 24px;
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    opacity: 0.9;
}

/* SECTION TRANSITION */
.section-transition {
    width: 100%;
    height: 110px;
    background: linear-gradient(to bottom, rgba(16,22,109,1), #f8f9fc);
}

/* FEATURES SECTION */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 70px 20px;
    gap: 34px;
}

/* FEATURE CARDS */
.feature-card {
    background: #ffffff;
    padding: 36px;
    width: 305px;
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.neon-edge:hover {
    transform: translateY(-12px);
    box-shadow:
        0 0 26px rgba(0,150,255,0.38),
        0 0 46px rgba(0,120,255,0.3);
}

.feature-card h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 900;
}

/* FOOTER */
.footer {
    padding: 55px;
    background: #111111;
    color: #eeeeee;
    font-size: 16px;
    margin-top: 40px;
}

.footer-content a {
    color: #00c3ff;
    font-weight: 800;
}
