*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

body{
    background:radial-gradient(circle at top,#ff6b81,#2b2b3a 40%,#050509);
    color:#fff;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    position:fixed;
    inset:0;
    opacity:0.17;
    background-image:linear-gradient(-45deg,rgba(255,230,0,0.2) 25%,transparent 25%,transparent 50%,rgba(255,230,0,0.2) 50%,rgba(255,230,0,0.2) 75%,transparent 75%);
    background-size:40px 40px;
    animation:move 14s linear infinite;
}

@keyframes move{
    0%{background-position:0 0;}
    100%{background-position:400px 400px;}
}

.wrapper{
    width:92%;
    max-width:830px;
    position:relative;
    z-index:3;
}

.header-alert{
    width:max-content;
    padding:6px 14px;
    border-radius:40px;
    background:rgba(255,193,7,0.15);
    border:1px solid rgba(255,193,7,0.5);
    margin:0 auto 20px auto;
    font-size:12px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:8px;
}

.header-alert .dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ffc107;
    box-shadow:0 0 10px #ffc107;
}

.box{
    background:rgba(10,10,15,0.92);
    border:1px solid rgba(255,255,255,0.16);
    border-radius:20px;
    padding:32px;
    backdrop-filter:blur(20px);
    box-shadow:0 20px 45px rgba(0,0,0,0.7);
}

.icon-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:18px;
}

.warn-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:radial-gradient(circle,#fff3cd,#ff9800);
    color:#2b1b0b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    font-weight:900;
    box-shadow:0 0 10px rgba(255,153,0,0.6),0 15px 30px rgba(0,0,0,0.7);
}

h1{
    text-align:center;
    font-size:28px;
    margin-bottom:10px;
}

.domain-line{
    text-align:center;
    margin-bottom:16px;
    font-size:15px;
}
.domain-line span{
    color:#ffb3c8;
    font-weight:bold;
}

.intro{
    font-size:15px;
    line-height:1.6;
    margin-bottom:20px;
    color:#e8e8e8;
}

.reason-box{
    background:rgba(255,255,255,0.06);
    padding:18px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.14);
    margin-bottom:22px;
}

.reason-box h2{
    font-size:15px;
    margin-bottom:10px;
    color:#ffd54f;
}

.reason-box ul{
    margin-left:10px;
    line-height:1.6;
    font-size:14px;
}

.steps{
    margin-bottom:25px;
}

.steps h2{
    font-size:15px;
    margin-bottom:8px;
    color:#ffcc80;
}

.steps ol{
    margin-left:18px;
    font-size:14px;
    line-height:1.6;
}

.cta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
    margin:20px 0;
}

.btn{
    text-decoration:none;
    padding:12px 20px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:7px;
    letter-spacing:0.05em;
}

.btn.main{
    background:linear-gradient(135deg,#ff8a80,#ff5252,#ff9100);
    color:#131313;
}

.btn.alt{
    border:1px solid rgba(255,255,255,0.3);
    color:#fff;
    background:rgba(255,255,255,0.05);
}

.support{
    text-align:center;
    margin-top:10px;
    font-size:13px;
}

.support a{
    color:#ffb3c8;
}

.footer{
    margin-top:20px;
    text-align:center;
    font-size:12px;
    color:#bdbdbd;
}

.ticker{
    margin-top:18px;
    padding:10px;
    background:repeating-linear-gradient(-45deg,#111,#111 10px,#ffeb3b 10px,#ffeb3b 20px);
    font-size:12px;
    text-align:center;
    font-weight:bold;
}
