body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f3f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.notice-container {
    background: #ffffff;
    max-width: 750px;
    width: 95%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 25px;
    text-align: center;
}
.header i {
    font-size: 40px;
    margin-bottom: 10px;
}
.header h2 {
    margin: 0;
    font-size: 26px;
}
.content {
    padding: 25px;
    text-align: center;
}
.content p {
    color: #555;
    line-height: 1.6;
}
.highlight {
    background: #f1f7ff;
    border-left: 4px solid #2575fc;
    padding: 15px;
    margin: 25px 0;
    text-align: left;
    border-radius: 6px;
}
.highlight h3 {
    margin-top: 0;
    color: #2575fc;
}
.highlight ul {
    padding-left: 20px;
}
.highlight li {
    margin: 8px 0;
}
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}


/* Typing text effect - infinite loop */
.typing-text {
    overflow: hidden; 
    border-right: 3px solid #fff; /* Cursor */
    white-space: nowrap;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    width: 0;
    animation: typingErase 4s steps(30, end) infinite, blink 0.6s step-end infinite;
}

/* Smooth typing + erasing loop */
@keyframes typingErase {
    0% { width: 0; }
    50% { width: 100%; }
    50.1% { width: 100%; } /* Keep fully typed briefly */
    100% { width: 0; }
}

/* Blinking cursor */
@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: #fff; }
}



.notice-container {
    background: #ffffff;
    max-width: 750px;
    width: 95%;
    border-radius: 12px;
    overflow: hidden;
    /* Modern gradient border on all sides */
    border: 4px solid;
    border-image: linear-gradient(45deg, #6a11cb, #2575fc) 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    padding: 0; /* content padding inside header/content */
}

/* Optional: animated glowing border */
.notice-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #6a11cb, #2575fc, #6a11cb);
    background-size: 400% 400%;
    animation: borderGlow 6s linear infinite;
    z-index: -1;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

