/* ===========================
   $EINSTEIN | Zero Brain Cell Cat
   style.css
=========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated background */

#particles {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, .15), transparent 30%),
        radial-gradient(circle at 80% 60%, rgba(255, 165, 0, .10), transparent 30%),
        #0d0d0d;
    z-index: -1;
}

/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(12px);
}

.logo {
    color: #ff9f1c;
    font-size: 2rem;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar a {
    color: white;
    text-decoration: none;
    transition: .3s;
}

.navbar a:hover {
    color: #ff9f1c;
}

/* Buttons */

.buyBtn,
.btnPrimary,
.btnSecondary {
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.buyBtn,
.btnPrimary {
    background: #ff8c00;
    color: #fff;
}

.btnSecondary {
    border: 2px solid #ff8c00;
    color: #ff8c00;
}

.buyBtn:hover,
.btnPrimary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px #ff8c00;
}

.btnSecondary:hover {
    background: #ff8c00;
    color: #fff;
}

/* Hero */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 100px 8%;
}

.hero h2 {
    font-size: 4rem;
    color: #ff9f1c;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 35px;
}

.hero img {
    width: 100%;
    max-width: 450px;
    animation: float 5s ease-in-out infinite;
}

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sections */

section {
    padding: 90px 8%;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff9f1c;
}

/* Cards */

.statusBox,
.tokenCard,
.phase,
.faqItem {
    background: #161616;
    border: 1px solid rgba(255, 140, 0, .25);
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    transition: .3s;
}

.statusBox:hover,
.tokenCard:hover,
.phase:hover,
.faqItem:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
    box-shadow: 0 0 20px rgba(255, 140, 0, .3);
}

/* Roadmap */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff9f1c;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.roadmap-card {
    position: relative;
    background: #161616;
    border: 1px solid rgba(255, 140, 0, .25);
    border-radius: 20px;
    padding: 35px 25px 25px;
    transition: .3s;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
    box-shadow: 0 0 20px rgba(255, 140, 0, .3);
}

.phase-number {
    position: absolute;
    top: -22px;
    left: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ff8c00;
    color: #0d0d0d;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 18px rgba(255, 140, 0, .5);
}

.roadmap-card h3 {
    color: #ff9f1c;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.phase-quote {
    color: #aaa;
    font-style: italic;
    margin-bottom: 18px;
}

.roadmap-card ul {
    list-style: none;
}

.roadmap-card li {
    margin-bottom: 12px;
    color: #ddd;
}

.vision-box {
    margin-top: 50px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 140, 0, .12), rgba(255, 165, 0, .05));
    border: 1px solid rgba(255, 140, 0, .35);
    border-radius: 24px;
    padding: 50px 30px;
}

.vision-box h2 {
    color: #ff9f1c;
    margin-bottom: 20px;
}

.vision-box p {
    max-width: 720px;
    margin: 0 auto;
    color: #ddd;
    font-size: 1.15rem;
}

/* Token list */

.tokenCard ul {
    margin-top: 20px;
    padding-left: 20px;
}

.tokenCard li {
    margin-bottom: 12px;
}

/* Social links */

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.socials a {
    padding: 14px 24px;
    border-radius: 40px;
    background: #ff8c00;
    color: white;
    text-decoration: none;
    transition: .3s;
}

.socials a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff8c00;
}

/* Socials grid */

#socials {
    text-align: center;
}

#socials h2 {
    color: #ff9f1c;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 35px 20px;
    font-size: 2.5rem;
    text-decoration: none;
    color: #fff;
    background: #161616;
    border: 1px solid rgba(255, 140, 0, .25);
    border-radius: 20px;
    transition: .3s;
}

.social-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #ddd;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
    box-shadow: 0 0 20px rgba(255, 140, 0, .3);
}

.social-card:hover span {
    color: #ff9f1c;
}

/* Footer */

footer {
    text-align: center;
    padding: 60px 20px;
    background: #080808;
    color: #888;
}

/* Chaos Gallery */

#chaos-gallery {
    padding: 100px 8%;
    text-align: center;
}

#chaos-gallery h2 {
    font-size: 3rem;
    color: #ff9900;
    margin-bottom: 20px;
}

#chaos-gallery p {
    color: #bbb;
    margin-bottom: 50px;
}

#chaosContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.chaos-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #ff9900;
    transition: .35s;
    box-shadow: 0 0 25px rgba(255, 153, 0, .2);
}

.chaos-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 0 35px orange;
}

.chaos-card img {
    width: 100%;
    display: block;
}

.chaos-card h3 {
    padding: 20px;
    font-size: 1.3rem;
    color: #fff;
}

.chaos-card p {
    padding: 0 20px 20px;
    color: #aaa;
}

/* Floating animation */

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}

/* Mobile */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero img {
        margin: auto;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 2.8rem;
    }
}
