body {
    background: linear-gradient(to bottom, #000033, #1a1a5a);
    color: white;
    font-family: 'Shippori Mincho', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.farewell-container {
    text-align: center;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.farewell-title, .message-display {
    text-shadow: 0 0 8px #fff, 0 0 10px #fff, 0 0 12px #00aaff, 0 0 15px #00aaff;
}

.farewell-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 20px auto;
    max-width: 500px;
    min-height: 175px; 
}

.farewell-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 15px;
    color: #000033;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px #fff, 0 0 10px #fff, 0 0 12px #00aaff;
}

.farewell-button:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 0 12px #fff, 0 0 15px #fff, 0 0 20px #00aaff;
}

.message-display {
    margin-top: 40px;
    font-size: 1.5rem;
    min-height: 50px;
    padding: 0 20px;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.pagination-button {
    background: none;
    border: 1px solid white;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 15px;
    margin: 0 20px;
    border-radius: 5px;
}

.pagination-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

#page-info {
    font-size: 1.2rem;
}