/* style.css */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Body */
body {
    background-color: #0a1a1a; /* Dark background for hype look */
    color: #ffffff;
    line-height: 1.6;
    padding: 40px 20px;
}

/* Container */
.announcement-container {
    max-width: 900px;
    margin: 0 auto;
    background: #111f2a;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    animation: fadeIn 1s ease-in-out;
}

/* Title */
.announcement-title {
    font-size: 2.5rem;
    color: #1ce0c7; /* Highlight color */
    text-align: center;
    margin-bottom: 30px;
}

/* Subtitles */
.announcement-subtitle {
    font-size: 1.8rem;
    color: #1ce0c7;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #1ce0c7;
    padding-left: 10px;
}

/* Paragraphs */
.announcement-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Lists */
.announcement-list {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.announcement-list li {
    font-size: 1.1rem;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: #172633;
    border-left: 5px solid #1ce0c7;
    border-radius: 8px;
}

/* Emphasis */
strong {
    color: #1ce0c7;
}

em {
    font-style: italic;
    color: #ffd166;
}

/* Fade-in Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
