﻿@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&family=My+Soul&family=Quattrocento+Sans:ital,wght@0,400;1,400&display=swap');

/* ── Reset ──────────────────────────────────────────────────────────────────── */

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

/* ── Base ───────────────────────────────────────────────────────────────────── */

body {
    background: #F2C2FF fixed center / cover;
    color: rgba(116, 218, 232, 0.85);
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    min-height: 100vh;
}

/* ── Page panel ─────────────────────────────────────────────────────────────── */

.page {
    max-width: max(600px, 50%);
    margin: 4em auto;
    padding: 4em 2em;
    background: radial-gradient(58% 48% at 50% 54%, rgba(213, 92, 247, 0.9) 0%, rgba(47, 44, 51, 0.97) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 1.75rem 7.625rem 0 rgba(0, 0, 0, 0.2);
}

/* ── Typography ─────────────────────────────────────────────────────────────── */

h1 {
    font-family: 'My Soul', cursive;
    font-size: 2.75em;
    font-weight: 400;
    line-height: 1;
    color: rgba(116, 218, 232, 0.85);
    margin-bottom: 0.5em;
}

h2 {
    font-family: 'My Soul', cursive;
    font-size: 2.75em;
    font-weight: 400;
    line-height: 1;
    color: rgba(116, 218, 232, 0.85);
    margin: 1.5em 0 0.5em;
}

h3 {
    font-family: 'My Soul', cursive;
    font-size: 2em;
    font-weight: 400;
    line-height: 1;
    color: rgba(116, 218, 232, 0.671);
    margin: 1.25em 0 0.4em;
}

p {
    color: rgba(116, 218, 232, 0.671);
    margin-bottom: 1.25em;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
    color: inherit;
}

hr {
    border: none;
    border-top: 1px solid rgba(116, 218, 232, 0.15);
    margin: 2em 0;
}

a {
    color: rgba(116, 218, 232, 0.85);
    text-decoration: underline;
    transition: color 0.25s ease;
}

a:hover {
    color: #fff;
}

ul, ol {
    margin: 0 0 1.25em 1.5em;
}

li {
    margin-bottom: 0.4em;
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */

.button {
    display: inline-block;
    padding: 0.9375em 1.5em;
    border-radius: 0.75em;
    border: none;
    text-decoration: none;
    font-family: 'Inconsolata', monospace;
    font-size: 1em;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    background: var(--member-color, #FFBA52);
    transition: transform 0.375s ease;
    cursor: pointer;
}

.button:hover {
    transform: scale(1.0425);
    color: rgba(0, 0, 0, 0.6);
}

.button.full {
    display: block;
    width: 100%;
}

/* ── Avatar buttons (member links) ──────────────────────────────────────────── */

.button.button--avatar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75em;
    padding: 0.5em 0.5em 0.5em 1.4em;
    font-size: 1.1em;
    text-align: left;
}

.button.button--avatar img {
    width: 2.2em;
    height: 2.2em;
    min-width: 2.2em;
    min-height: 2.2em;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ── Social buttons (group socials) ─────────────────────────────────────────── */

.button.full.button--social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75em;
    padding: 0.9375em 0.75em 0.9375em 1.4em;
    font-size: 1.1em;
    text-align: left;
}

/* Icon container — sized to match button text height */
.social-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.4em;
    height: 1.4em;
}

.social-btn-icon svg {
    width: 100%;
    height: 100%;
}