/* AFSN Notice Section */
.afsn-notice-section {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/reality.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.notice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 139, 0.7);
    backdrop-filter: blur(3px);
    z-index: 2;
}

.notice-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
}

.notice-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .afsn-notice-section {
        height: auto;
        padding: 2rem 0;
    }
    
    .notice-text p {
        font-size: 1rem;
        padding: 1rem;
    }
}