*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    overflow: hidden;
    height: 100vh;
}

/* ── App ── */
#app {
    position: fixed;
    inset: 0;
    transition: background 0.6s ease;
}

#screenContent {
    position: absolute;
    inset: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── Profile click zones (start screen) ── */
.profile-zones {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 1;
}

.profile-zone {
    flex: 1;
    cursor: pointer;
}

.profile-zone--placed {
    position: absolute;
    flex: unset;
}

.profile-zone:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ── Screen header ── */
.screen-header {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 22px 28px 10px;
}

.screen-name {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
}

.screen-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.22);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

/* ── Screen body ── */
.screen-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0 20px 14px;
    gap: 12px;
}

/* ── Screen images ── */
.screen-images-bg {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 3px;
    background: #000;
    z-index: 0;
}

.screen-img {
    flex: 1;
    min-width: 0;
    height: 100%;
    object-fit: cover;
}

/* ── Weekly schedule button inside daily card ── */
.sch-weekly-btn {
    margin-top: 8px;
    width: 100%;
    background: rgba(0, 0, 0, 0.07);
    border: none;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
    flex-shrink: 0;
}
.sch-weekly-btn:hover {
    background: rgba(0, 0, 0, 0.14);
}

/* ── Weekly schedule modal ── */
.weekly-overlay {
    display: none;
    position: fixed;
    inset: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(20, 20, 40, 0.6);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.weekly-overlay.active {
    display: flex;
}
.weekly-modal {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px 32px;
    width: min(1200px, 96vw);
    max-height: 94vh;
    overflow: auto;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    animation: pop-in 0.18s ease;
}
.weekly-close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    cursor: pointer;
    color: #555;
}
.weekly-close-btn:hover {
    background: rgba(0, 0, 0, 0.14);
    color: #111;
}
.weekly-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.weekly-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.weekly-table-wrap {
    overflow-x: auto;
}
.weekly-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}
.weekly-table thead th {
    background: #f0f0ee;
    padding: 10px 12px;
    font-weight: 700;
    text-align: center;
    color: #333;
    border-bottom: 2px solid #ddd;
}
.weekly-table thead th:first-child {
    width: 90px;
    text-align: left;
}
.weekly-table tbody tr:nth-child(even):not(.weekly-lunch) {
    background: #fafaf8;
}
.weekly-table tbody tr:hover:not(.weekly-lunch) {
    background: #f0f0ec;
}
.weekly-table td {
    padding: 9px 12px;
    border-bottom: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
    color: #222;
    line-height: 1.35;
}
.weekly-time {
    text-align: left !important;
    font-size: 0.75rem;
    color: #999;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.weekly-lunch td {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #bbb;
    padding: 6px;
    background: #f8f6f0;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}

/* ── Board triggers (classroom screen) ── */
.board-triggers {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    gap: 3px;
}

.board-trigger {
    flex: 1;
    min-width: 0;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.board-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.board-hint {
    margin-top: 24px;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 9px 20px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
    transition:
        background 0.15s,
        transform 0.15s;
}

.board-trigger:hover .board-hint {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.04);
}

/* ── Board modal ── */
.board-overlay {
    display: none;
    position: fixed;
    inset: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(20, 20, 20, 0.62);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.board-overlay.active {
    display: flex;
}

.board-modal {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    width: min(1280px, 94vw);
    max-height: 94vh;
    overflow: auto;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    animation: pop-in 0.18s ease;
}

.board-grid {
    display: flex;
    justify-content: center;
}

.board-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.board-stage {
    position: relative;
    width: 100%;
    max-height: 82vh;
    overflow: hidden;
    line-height: 0;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}

/* Full image, scaled up and offset so the cropped board fills the stage */
.board-canvas {
    position: absolute;
}

.board-img {
    display: block;
    width: 100%;
    height: 100%;
}

/* Scrollable text overlay sitting on the board area of the image */
.board-text {
    position: absolute;
    overflow-y: auto;
    line-height: 1.5;
    padding: clamp(8px, 1.4vw, 22px);
    border-radius: 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.board-text-title {
    font-size: clamp(0.85rem, 1.5vw, 1.25rem);
    margin-bottom: 0.6em;
    line-height: 1.25;
}

.board-text p {
    font-size: clamp(0.7rem, 1.15vw, 1rem);
    margin-bottom: 0.55em;
}

.board-text p:last-child {
    margin-bottom: 0;
}

/* Chalkboard: white chalky text */
.board-text--chalk {
    color: #f2f0e6;
    font-family: 'Segoe Print', 'Comic Sans MS', 'Segoe UI', cursive;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.35);
}
.board-text--chalk .board-text-title {
    color: #fff7d6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 0.3em;
}
.board-text--chalk::-webkit-scrollbar {
    width: 7px;
}
.board-text--chalk::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 4px;
}

/* Whiteboard: dark marker text */
.board-text--marker {
    color: #1f2a44;
    font-family: 'Segoe Print', 'Comic Sans MS', 'Segoe UI', cursive;
}
.board-text--marker .board-text-title {
    color: #1a3aa0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    padding-bottom: 0.3em;
}
.board-text--marker::-webkit-scrollbar {
    width: 7px;
}
.board-text--marker::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}

.board-caption {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
}

.board-close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    color: #555;
    z-index: 2;
}
.board-close-btn:hover {
    background: rgba(0, 0, 0, 0.14);
    color: #111;
}

/* ── Schedule overlay ── */
.sch-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: 20px;
}

.sch-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 20px 22px;
    flex: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
}

.sch-card {
    display: flex;
    flex-direction: column;
}

.sch-rows {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sch-header {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.sch-city {
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
}

.sch-row {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 0 8px;
    border-radius: 8px;
    flex: 1;
}

.sch-row--current {
    background: rgba(255, 200, 0, 0.25);
    font-weight: 700;
}

.sch-time {
    font-size: 0.85rem;
    color: #999;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    width: 44px;
}

.sch-row--current .sch-time {
    color: #c88020;
}

.sch-subject {
    font-size: 1rem;
    color: #222;
}

/* ── Visual placeholder ── */
.visual-area {
    flex-shrink: 0;
    height: 108px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.35);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 16px;
}

/* ── START SCREEN ── */
.start-screen-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 16px;
}

.start-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #7eb8d4 0%, #a8d0e8 28%, #c4dca8 55%, #9cbf88 75%, #7ca068 100%);
    pointer-events: none;
}

.start-title {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 1;
}

.characters {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px;
}

.character {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.character:hover .figure {
    transform: scale(1.05);
}

.character-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    line-height: 1.5;
    text-align: center;
}

.character-label strong {
    display: block;
    color: #fff;
    font-weight: 600;
}

.figure {
    display: block;
    transition: transform 0.2s ease;
    transform-origin: center bottom;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── ENDE ── */
.ending-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ending-card {
    background: rgba(255, 255, 255, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 36px 40px;
    text-align: center;
    backdrop-filter: blur(8px);
    max-width: 440px;
}

.quiz-btn {
    display: inline-block;
    margin-top: 24px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 12px 32px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.15s, transform 0.15s;
}
.quiz-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.04);
}

.ending-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.6;
}

/* ── Smartphone overlay ── */
.phone-overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.phone-overlay.active {
    display: flex;
}

.phone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: phone-in 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.phone-overlay.dismissing .phone-container {
    animation: phone-out 0.25s ease forwards;
}

@keyframes phone-in {
    from {
        transform: translateY(90px) scale(0.88);
        opacity: 0;
    }
    to {
        transform: none;
        opacity: 1;
    }
}

@keyframes phone-out {
    from {
        transform: none;
        opacity: 1;
    }
    to {
        transform: translateY(60px) scale(0.93);
        opacity: 0;
    }
}

.phone-wrapper {
    position: relative;
    width: 400px;
    height: 800px; /* 260 × 640/320 */
}

.phone-frame {
    position: absolute;
    width: 100%;
    height: 100%;
}

.phone-group-avatar {
    position: absolute;
    left: 67.5px; /* (70-16) * 400/320 */
    top: 106.25px; /* (101-16) * 800/640 */
    width: 40px; /* 32 * 400/320 */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 25% 50%;
}

/* Overlaid on the SVG's chat content area (x=22,y=128,w=276,h=420 in 320×640) */
.phone-chat {
    position: absolute;
    left: 6.875%; /* 22/320 */
    top: 20%; /* 128/640 */
    width: 86.25%; /* 276/320 */
    height: 70.625%; /* 420/640 */
    background: #e5ddd5;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 8px;
    scrollbar-width: none;
}
.phone-chat::-webkit-scrollbar {
    display: none;
}

/* Chat bubble entrance animation */
@keyframes p-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p-animate {
    animation: p-fade-up 0.6s ease both;
}

/* Time separator */
.p-sep {
    display: flex;
    justify-content: center;
    margin: 2px 0 6px;
}
.p-sep span {
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    font-size: 10px;
    padding: 3px 12px;
    border-radius: 999px;
}

/* Message rows */
.p-msg {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.p-msg.out {
    justify-content: flex-end;
}

.p-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    object-fit: cover;
}

.p-msg-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p-name {
    font-size: 11px;
    font-weight: 700;
    padding-left: 2px;
}

.p-name.out {
    text-align: right;
    padding-left: 0;
    padding-right: 2px;
}

.p-bubble {
    padding: 9px 14px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.45;
    max-width: 190px;
    word-break: break-word;
}
.p-bubble.in {
    background: #fff;
    color: #111;
    border-bottom-left-radius: 3px;
}
.p-bubble.out {
    background: #d4f4dd;
    color: #111;
    border-bottom-right-radius: 3px;
}

.p-anon {
    text-align: center;
    font-size: 11px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.45);
    margin: 2px 0;
}

.phone-continue-btn {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 999px;
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
    transition:
        background 0.15s,
        transform 0.15s;
}
.phone-continue-btn:hover {
    background: #fff;
    transform: scale(1.04);
}

/* ── Next button ── */
#nextBtn {
    position: fixed;
    bottom: 24px;
    right: 28px;
    z-index: 50;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(0, 0, 0, 0.6);
    border-radius: 999px;
    padding: 11px 26px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.04em;
    transition:
        background 0.15s,
        transform 0.15s;
}
#nextBtn:hover {
    background: rgba(0, 0, 0, 0.62);
    transform: scale(1.04);
}
#nextBtn:disabled {
    opacity: 0.2;
    cursor: default;
    transform: none;
}

/* ── Overlay (profile + info popup) ── */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(250, 250, 247, 0.55);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.overlay.active {
    display: flex;
}

.speech-bubble {
    position: relative;
    background: #fff;
    border: 2px solid #2a2a2a;
    border-radius: 22px;
    width: 640px;
    max-width: 94vw;
    max-height: 92vh;
    overflow: hidden;
    box-shadow: 5px 5px 0 #2a2a2a;
    animation: pop-in 0.18s ease;
}

@keyframes pop-in {
    from {
        transform: scale(0.88);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 30px solid #2a2a2a;
}
.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid #fff;
    z-index: 1;
}

.flag-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.bubble-inner {
    position: relative;
    z-index: 1;
    padding: 30px 34px 34px;
    overflow-y: auto;
    max-height: 88vh;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    color: #aaa;
    z-index: 2;
    padding: 4px;
}
.close-btn:hover {
    color: #333;
}

/* Popup content */
.popup-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.popup-header-text {
    flex: 1;
}

.popup-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.popup-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 6px;
}

.popup-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.popup-meta {
    font-size: 0.88rem;
    color: #888;
    margin-top: 4px;
}

.popup-section {
    margin-bottom: 16px;
}

.popup-section h3 {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 7px;
}

.popup-section ul {
    list-style: none;
}

.popup-section li {
    font-size: 0.9rem;
    color: #333;
    padding: 3px 0 3px 16px;
    position: relative;
    line-height: 1.4;
}

.popup-section li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: #ccc;
}

.popup-items {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-item {
    background: #f8f8f6;
    border-radius: 10px;
    padding: 10px 14px;
}

.popup-item-key {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 3px;
}

.popup-item-desc {
    font-size: 0.88rem;
    color: #333;
    line-height: 1.4;
}

/* ── Support / Credits modal — shown on load, reachable via info button ── */
.support-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 300;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(250, 250, 247, 0.55);
    align-items: center;
    justify-content: center;
}
.support-overlay.closed { display: none; }

.support-card {
    position: relative;
    background: #fff;
    border: 2px solid #2a2a2a;
    border-radius: 22px;
    box-shadow: 5px 5px 0 #2a2a2a;
    padding: 30px 34px 32px;
    width: min(90%, 420px);
    max-height: 90vh;
    overflow: auto;
    text-align: center;
    animation: pop-in 0.18s ease;
}

.support-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
}

.support-logo {
    display: block;
    margin: 14px auto 0;
    min-width: 150px;
    max-width: 260px;
    max-height: 110px;
    width: auto;
    height: auto;
}

.support-rule {
    border: none;
    height: 2px;
    background: #2a2a2a;
    opacity: 0.15;
    margin: 22px auto;
    width: 65%;
}

.support-credits-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.support-credits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    color: #555;
    font-size: 0.92rem;
    line-height: 1.85;
}
.support-credits-list li::before { content: "– "; }

.support-cta {
    background: rgba(0, 0, 0, 0.85);
    border: 1.5px solid rgba(0, 0, 0, 0.6);
    border-radius: 999px;
    padding: 11px 26px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}
.support-cta:hover {
    background: #000;
    transform: scale(1.04);
}

.support-info-btn {
    position: fixed;
    bottom: 24px;
    left: 28px;
    z-index: 250;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.15s ease, background 0.15s ease;
}
.support-info-btn:hover {
    background: rgba(0, 0, 0, 0.62);
    transform: scale(1.06);
}
