/* style.css (Updated with new class names) */

/* CHANGED: Renamed classes to avoid ad-blocker triggers */
.safety-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: #fff;
    text-align: center;
}

.notice-panel {
    background: #111;
    padding: 30px 40px;
    border: 1px solid #555;
    border-radius: 10px;
    max-width: 500px;
}

.notice-panel h2 {
    color: #FFD700;
    margin-top: 0;
}

.notice-panel button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
}

/* --- The rest of your styles are unchanged --- */
body {
    background-color: #000;
    font-family: Arial, sans-serif;
    margin: 0;
    overflow: hidden;
}

.storm-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lightning {
    position: absolute;
    opacity: 0;
    box-shadow: 0 0 12px 6px #ffffff,
                0 0 25px 12px #7DF9FF,
                0 0 60px 25px #00529B;
    background-color: #fff;
    border-radius: 5px;
    animation: flash 0.05s ease-in, fadeOut 0.3s ease-in forwards 0.05s;
}

.sky-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    animation: flash 0.1s ease-out;
}

@keyframes flash {
    to {
        opacity: 0.7;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 100vw;
    background-color: #1C39BB;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.content-container h1 {
    font-size: 3rem;
    color: #B9D9EB;
}