/* ================================
   ArunAI – style.css (FINAL)
   ================================ */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

/* BODY */
body {
    background: radial-gradient(circle at top, #1f2a44, #0b0f19);
    color: #ffffff;
    height: 100vh;
    overflow-x: hidden;
}

/* ================================
   HOME PAGE
   ================================ */
.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeIn 1.2s ease forwards;
    /* 🔥 floating REMOVED */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO CARD */
.hero-card {
    max-width: 760px;
    width: 100%;
    padding: 52px 56px;
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .45),
        inset 0 0 18px rgba(79, 195, 247, .03);
}

/* TITLE */
h1 {
    font-size: 56px;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

h1 span {
    color: #4fc3f7;
    text-shadow: 0 0 10px rgba(79, 195, 247, .5);
}

.tagline {
    color: #9aa4bf;
    font-size: 15px;
    margin-bottom: 22px;
}

/* DOTS */
.hero-dots {
    margin: 20px 0 26px;
}

.hero-dots span {
    width: 6px;
    height: 6px;
    background: #4fc3f7;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    opacity: 0.5;
}

/* STATUS TEXT – WIDTH CONTROL (KEY FIX) */
.status {
    max-width: 520px;
    margin: 0 auto 28px auto;
    font-size: 14.5px;
    line-height: 1.6;
    color: #cfd8dc;
}

.status a {
    color: #7cdbff;
    text-decoration: none;
}

.status a:hover {
    text-shadow: 0 0 6px rgba(79, 195, 247, .6);
}

/* SIGNUP */
.signup {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 6px;
}

.signup input {
    width: 260px;
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
    background: rgba(255, 255, 255, .95);
}

/* NOTIFY BUTTON */
.notify-btn {
    height: 42px;
    padding: 0 26px;
    border-radius: 8px;
    border: none;
    cursor: pointer;

    background: linear-gradient(135deg, #4fc3f7, #7cdbff);
    color: #0b0f19;
    font-weight: 600;

    animation: softGlow 4.5s ease-in-out infinite;
}

@keyframes softGlow {
    0% {
        box-shadow: 0 0 6px rgba(79, 195, 247, .25);
    }

    50% {
        box-shadow: 0 0 14px rgba(79, 195, 247, .45);
    }

    100% {
        box-shadow: 0 0 6px rgba(79, 195, 247, .25);
    }
}

#msg {
    margin-top: 10px;
    font-size: 13px;
    color: #9aa4bf;
}

/* ================================
   ABOUT PAGE (UNCHANGED – GOOD)
   ================================ */
.about-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.about-card {
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(14px);
    animation: fadeUp 1.2s ease forwards;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.about-box {
    background: rgba(79, 195, 247, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.15);
    border-radius: 14px;
    padding: 25px;
}

.about-box h3 {
    color: #7cdbff;
    margin-bottom: 10px;
}

/* ================================
   CONTACT PAGE (UNCHANGED – GOOD)
   ================================ */
.contact-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.contact-card {
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 50px;
    text-align: center;
    animation: fadeUp 1.2s ease forwards;
}

.contact-box {
    background: rgba(79, 195, 247, .08);
    border: 1px solid rgba(79, 195, 247, .2);
    border-radius: 14px;
    padding: 20px;
    margin: 30px 0;
}

.contact-email {
    color: #7cdbff;
    text-decoration: none;
}

/* ================================
   BACK LINK
   ================================ */
.back-home {
    display: inline-block;
    margin-top: 20px;
    color: #4fc3f7;
    text-decoration: none;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.footer-links a {
    color: #4fc3f7;
    text-decoration: none;
}

.footer-copy {
    color: #9aa4bf;
}

/* ================================
   COOKIE BANNER
   ================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #11162a;
    padding: 14px;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

#cookie-banner button {
    background: #4fc3f7;
    border: none;
    padding: 6px 14px;
    cursor: pointer;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 600px) {
    h1 {
        font-size: 42px;
    }

    .hero-card,
    .about-card,
    .contact-card {
        padding: 36px 24px;
    }

    .signup {
        flex-direction: column;
    }

    .signup input {
        width: 100%;
    }

    .status {
        max-width: 100%;
    }
}