﻿/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #000000 url('bg.jpg') no-repeat center top fixed;
    background-size: cover;
    color: #e2e8f0;
    font-family: 'Crimson Text', 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 0.5rem;
}

.char-img {
    max-width: 260px;
    width: 30%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    border: 3px solid #c4a265;
    border-radius: 8px 8px 0 0;
}

.note {
    max-width: 800px;
    width: 90%;
    margin: 0 auto 0;
    border-radius: 8px;
    padding: 1.5rem 2.5rem;
    background: #f0e4c8;
    border: 2px solid #c4a265;
}

.note h1 {
    font-family: 'Cinzel', 'Palatino Linotype', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 1.2rem;
    text-align: center;
}

.note p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #2c2c2c;
    text-align: justify;
}

/* === ANTI-COPY === */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

img {
    pointer-events: none;
}

.yt-btn {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    pointer-events: auto;
}

.yt-btn img {
    width: 40px;
    height: auto;
    pointer-events: auto;
    transition: transform 0.2s;
}

.yt-btn img:hover {
    transform: scale(1.15);
}


