.safety-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.safety-notice-overlay.show {
    display: flex;
    opacity: 1;
}

.safety-notice-modal {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    width: 95%;
    height: 90vh;
    overflow-y: auto;
    position: relative;
}

.safety-notice-modal h2 {
    color: #ff4444;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.notice-intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.safety-content {
    font-size: 14px;
    line-height: 1.6;
}

.safety-sections section {
    margin-bottom: 25px;
}

.safety-sections h4 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.safety-disclaimer {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
}

.safety-agreements {
    margin: 30px 0;
}

.checkbox-wrapper {
    display: block;
    margin-bottom: 15px;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-wrapper span {
    font-size: 14px;
}

.checkbox-wrapper a {
    color: #0066cc;
    text-decoration: none;
}

.checkbox-wrapper a:hover {
    text-decoration: underline;
}

#safety-notice-accept {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 20px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

#safety-notice-accept:not(:disabled) {
    opacity: 1;
} 