body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'MinecraftFont', 'VT323', monospace;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    color: #000000;
    overflow-x: hidden;
}

.subtitle {
    text-align: center;
    font-size: 30px;
    color: #FF1493;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.book-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.book {
    background: rgba(255, 240, 245, 0.9);
    border: 8px solid #FF69B4;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    position: relative;
}

.book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
}

.month-entry {
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 192, 203, 0.3);
    border: 2px solid #FF69B4;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
}

.month-title {
    font-size: 24px;
    color: #DB1F8C;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.month-content {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.section-title {
    color: #FF1493;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
}

.messages-book {
    margin: 40px auto;
}

.messages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px;
}

.message-entry {
    background: rgba(255, 192, 203, 0.3);
    padding: 15px;
    border: 2px solid #FF69B4;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
}

.message-title {
    font-size: 20px;
    color: #DB1F8C;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.message-content {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    min-height: 50px;
}

.message-entry {
    position: relative;
}

.message-content.censored {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    cursor: pointer;
    transition: filter 0.18s ease;
}

.message-content.censored.revealed {
    filter: none;
    -webkit-filter: none;
}

.censor-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.censor-overlay .reveal-btn {
    pointer-events: auto;
    background: rgba(255, 105, 180, 0.95);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.35);
}

.censor-overlay.hidden { display: none; }

.video-section {
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    background: rgba(255, 192, 203, 0.3);
    border: 2px solid #FF69B4;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(255, 105, 180, 0.3);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f326b2;
}

::-webkit-scrollbar-thumb {
    background: #f75fc7;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff00fb;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: #FF69B4;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-button:hover {
    background: #FF1493;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.5);
}

.back-arrow {
    font-size: 20px;
}

.main-title {
    text-align: center;
    font-size: 50px;
    color: #FF1493;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    font-weight: bold;
}