:root {
    --bg1: #0f1724;
    --bg2: #09111a;
    --neon: #7ef9b8;
    --accent: #6ee7ff;
    --muted: #98a0b3;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-strong: rgba(255, 255, 255, 0.06);
    --glow: 0 8px 30px rgba(110, 231, 255, 0.06), 0 0 40px rgba(126, 249, 184, 0.06);
    --mono: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: var(--mono);
    background: radial-gradient(1200px 600px at 10% 10%, rgba(110, 231, 255, 0.03), transparent),
        radial-gradient(800px 400px at 90% 90%, rgba(126, 249, 184, 0.02), transparent),
        linear-gradient(180deg, var(--bg1), var(--bg2));
    color: #eaf6f2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Big centered hero */
.wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 48px 24px;
    position: relative;
}

/* huge ghost server icon in background */
.bg-server-icon {
    position: absolute;
    inset: -10% -10% auto auto;
    width: 70vmin;
    height: 70vmin;
    max-width: 880px;
    max-height: 880px;
    opacity: 0.06;
    transform: rotate(-8deg);
    filter: blur(10px);
    pointer-events: none;
}

/* floating particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--neon));
    opacity: 0.9;
    filter: blur(2px);
    mix-blend-mode: screen;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0)
    }

    50% {
        transform: translateY(-40px) translateX(30px)
    }

    100% {
        transform: translateY(0) translateX(0)
    }
}

/* card grid */
.grid {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 28px;
    width: 100%;
    max-width: 1200px;
    align-items: start;
}

/* left column: badge + big title */
.left {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--glow);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

/* tiny pfp above the big title */
.pfp {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), 0 0 18px rgba(110, 231, 255, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.06);
    transform: translateY(-6px);
    width: 100%;
    height: 100%;
    object-fit: cover; /* crops instead of squishing */
    border-radius: 50%;

}

.pfp svg {
    width: 64px;
    height: 64px
}

h1.title {
    text-align: center;
    margin: 0;
    font-size: 34px;
    letter-spacing: 0.8px;
    font-weight: 900;
    color: linear-gradient(90deg, #fff, #dbefff);
    text-transform: none;
    text-shadow: 0 6px 24px rgba(16, 24, 40, 0.7), 0 0 18px rgba(110, 231, 255, 0.06);
}

.tag {
    display: inline-block;
    margin: 10px auto 18px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    background: linear-gradient(90deg, #0b1220, rgba(255, 255, 255, 0.02));
    color: var(--accent);
    border: 1px solid rgba(110, 231, 255, 0.12);
    box-shadow: 0 6px 18px rgba(110, 231, 255, 0.02);
    text-align: center;
}

.subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    margin-top: 6px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.02);
    font-weight: 700;
    color: var(--neon);
    font-size: 13px;
}

/* invite button neon */
.invite-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
    align-items: center
}

.btn {
    background: linear-gradient(90deg, #22c1ff, #7ef9b8);
    color: #062126;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.6px;
    box-shadow: 0 10px 30px rgba(34, 193, 255, 0.12);
    transform: translateY(0);
    transition: transform .12s ease, box-shadow .12s ease;
}

.btn:active {
    transform: translateY(2px)
}

.btn.secondary {
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: none;
    font-weight: 700;
}

/* right column: big content area */
.right {
    min-height: 420px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: var(--glow);
    overflow: hidden;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.section-title h2 {
    margin: 0;
    font-size: 18px
}

.section-title small {
    color: var(--muted);
    font-weight: 700;
    font-size: 12px
}

/* funny moments box */
.funny-box {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 12px;
    align-items: start;
}

.quotes {
    background: linear-gradient(180deg, rgba(6, 0, 47, 0.701), rgba(74, 1, 1, 0.619));
    border-radius: 12px;
    padding: 14px;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(255, 255, 255, 0.02);
}

.quote {
    font-weight: 800;
    font-size: 15px;
    line-height: 1.3;
    margin: 0;
    opacity: 0;
    transform: translateY(14px) scale(.99);
    transition: all .45s cubic-bezier(.2, .9, .3, 1);
}

.quote.show {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.quote small {
    display: block;
    color: var(--muted);
    font-weight: 700;
    margin-top: 8px;
    font-size: 12px
}

/* meme column */
.memes {
    border-radius: 12px;
    padding: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.mcard {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
}

.mcard:focus,
.mcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6)
}

.mthumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    flex: 0 0 64px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: linear-gradient(135deg, #e42a2a, #000000);
    color: #061219;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.mtext {
    font-weight: 800;
    color: #fff;
    font-size: 13px
}

/* features / paragraphs feed */
.feed {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.card {
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.00));
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.card p {
    margin: 6px 0;
    color: #dff9ee
}

footer {
    background: rgba(15, 32, 39, 0.8);
    padding: 2rem 5vw;
    text-align: center;
    color: #bbb;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s cubic-bezier(.77, 0, .175, 1) 0.5s both;
}

/* small sticky footer in right column */
.right-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    align-items: center
    
}

.spark {
    font-weight: 800;
    color: var(--accent);
    font-size: 12px
}

/* tiny animations */
.pulse {
    animation: pulse 2.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }

    100% {
        transform: scale(1)
    }
}

/* responsive */
@media(max-width:980px) {
    .grid {
        grid-template-columns: 1fr;
        max-width: 920px
    }

    .funny-box {
        grid-template-columns: 1fr
    }

    .memes {
        order: 2
    }
}

.quote {
  opacity: 0.3;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease; /* smooth glow up/down */
  text-align: center;
}

.quote.active {
  opacity: 1;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
