body {
    background-color: #f8f9fa;
    overflow: hidden;
}

h1, p {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

h1 {
    animation-delay: 0.5s;
}

p {
    animation-delay: 1s;
}

.animated-button {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.animated-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.notice-board, .terms {
    margin-top: 30px;
}

.notice-item {
    background-color: #e7f3fe; /* Light blue background for notices */
    color: #31708f; /* Dark blue text */
    animation: slideInUp 0.5s forwards;
}

.terms-item {
    background-color: #f9f9f9; /* Light gray background for terms */
    color: #333; /* Dark text */
    animation: slideInUp 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}