:root {
    --bg: #080608;
    --bg-soft: #120d11;
    --panel: rgba(255, 255, 255, 0.05);
    --panel-border: rgba(255, 255, 255, 0.10);
    --text: #f6f1eb;
    --muted: rgba(246, 241, 235, 0.68);
    --gold: #c7a46a;
    --gold-strong: #f2d19a;
    --wine: #6b1831;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --container: 1280px;
}

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

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(107, 24, 49, 0.25), transparent 28%),
        linear-gradient(180deg, #070507 0%, #0d090d 100%);
    color: var(--text);
}

/* 🔥 IMPORTANTE PER NAVBAR FIXED */
.page-content {
    padding-top: 110px;
    min-height: calc(100vh - 110px);
}

/* layout base */
.site-shell {
    min-height: 100vh;
}

.simple-page {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
    padding: 40px 0 100px;
}

a {
    color: inherit;
    text-decoration: none;
}

.guest-link {
    text-decoration: none !important;
    color: rgba(246, 241, 235, 0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
}

.guest-link:hover {
    color: #fff;
}

.guest-button {
    text-decoration: none !important;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f2d19a, #c7a46a);
    color: #160d06;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(199, 164, 106, 0.22);
}