*{
    box-sizing:border-box;
}

html,body{
    margin:0;
    min-height:100%;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 16px;
    font-family:Arial,Helvetica,sans-serif;
    color:#fff;
    background:#080808;
    overflow-x:hidden;
}

body:before{
    content:"";
    position:fixed;
    inset:0;
    background:url("../background/outside.jpg") center center / cover no-repeat;
    z-index:-2;
    pointer-events:none;
}

body:after{
    content:"";
    position:fixed;
    inset:0;
    background:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.50)
        );
    z-index:-1;
    pointer-events:none;
}

.page{
    position:relative;
    z-index:2;
    width:100%;
    max-width:980px;
}

.panel{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    border:1px solid rgba(255,145,0,.75);
    background:#050505;
    box-shadow:0 18px 55px rgba(0,0,0,.65);
}

.panel-bg{
    position:absolute;
    inset:0;
    background-image:url("../background/panel.jpg");
    background-position:center;
    background-repeat:no-repeat;
    background-size:100% 100%;
    opacity:.55;
    z-index:1;
}

.panel-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:2;
}

.panel-content{
    position:relative;
    z-index:3;
    padding:18px 14px 22px;
    text-align:center;
}

.header-banner{
    width:100%;
    max-width:330px;
    margin:0 auto 12px;
}

.header-banner img{
    width:100%;
    height:auto;
    display:block;
    border-radius:14px;
}

.status-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border-radius:999px;
    border:1px solid rgba(255,145,0,.85);
    background:rgba(0,0,0,.45);
    font-size:10px;
    font-weight:900;
}

.status-badge span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ff8a00;
}

h1{
    margin:18px 0 10px;
    font-size:29px;
    line-height:1.15;
}

.desc{
    margin:0 auto 34px;
    max-width:760px;
    color:#e2e2e2;
    font-size:18px;
    line-height:1.6;
    text-align:center;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    max-width:780px;
    margin:0 auto 36px;
}

.feature-card{
    padding:16px 10px;
    border-radius:18px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,145,0,.35);
}

.feature-icon{
    font-size:28px;
    margin-bottom:12px;
}

.feature-card b{
    display:block;
    color:#ff9800;
    font-size:16px;
    margin-bottom:7px;
}

.feature-card small{
    color:#ddd;
    font-size:16px;
}

.main-btn{
    display:inline-block;
    padding:18px 44px;
    border-radius:999px;
    background:linear-gradient(180deg,#ffc15a,#ff7a00);
    color:#101010;
    font-size:17px;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 10px 28px rgba(0,0,0,.45);
}

.main-btn:hover{
    transform:translateY(-2px);
}

.footer-text{
    margin-top:28px;
    color:#888;
    font-size:13px;
    letter-spacing:1.4px;
}

/* MOBILE */
@media(max-width:700px){
    body{
        align-items:flex-start;
        padding:18px 10px;
    }

    .page{
        max-width:100%;
    }

    .panel{
        border-radius:22px;
    }

    .panel-content{
        padding:28px 16px;
    }

    .header-banner{
        max-width:100%;
        margin-bottom:16px;
    }

    .status-badge{
        padding:9px 16px;
        font-size:11px;
    }

    h1{
        font-size:29px;
        margin:26px 0 12px;
    }

    .desc{
        font-size:14px;
        line-height:1.6;
        margin-bottom:28px;
    }

    .feature-grid{
        grid-template-columns:1fr;
        gap:14px;
        margin-bottom:30px;
    }

    .feature-card{
        padding:20px 14px;
    }

    .main-btn{
        width:100%;
        max-width:320px;
        padding:16px 18px;
        font-size:15px;
    }

    .footer-text{
        font-size:11px;
    }
}