*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#070208;
    color:white;
    overflow-x:hidden;
    font-family:'Inter',Segoe UI,Tahoma,sans-serif;
}

.bg{
    min-height:100vh;
    background:
    linear-gradient(rgba(8,1,8,.70),rgba(8,1,8,.96)),
    url("../uploads/admin-bg.jpeg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    position:relative;
}

.bg:before{
    content:"";
    position:fixed;
    inset:0;
    background-image:
    radial-gradient(#7a1738 1px,transparent 1px),
    radial-gradient(#ffffff 1px,transparent 1px);
    background-size:95px 95px,155px 155px;
    opacity:.16;
    animation:stars 45s linear infinite;
    pointer-events:none;
}

.bg:after{
    content:"WALESS CODED";
    position:fixed;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%) rotate(-13deg);
    font-size:125px;
    font-weight:900;
    letter-spacing:14px;
    color:rgba(255,255,255,.025);
    pointer-events:none;
    z-index:1;
}

@keyframes stars{
    from{transform:translateY(0)}
    to{transform:translateY(-300px)}
}

.protect-msg{
    position:fixed;
    right:20px;
    top:20px;
    background:#7a1738;
    color:white;
    padding:12px 18px;
    border-radius:12px;
    display:none;
    z-index:999999;
}

.top-marquee{
    width:100%;
    background:rgba(0,0,0,.76);
    border-bottom:1px solid rgba(122,23,56,.75);
    padding:10px 0;
    overflow:hidden;
    white-space:nowrap;
    color:#f5a3bd;
    font-size:14px;
    font-weight:800;
    position:relative;
    z-index:5;
    letter-spacing:.4px;
}

.top-marquee span{
    display:inline-block;
    padding-left:100%;
    animation:marquee 28s linear infinite;
}

@keyframes marquee{
    from{transform:translateX(0)}
    to{transform:translateX(-100%)}
}

.nav{
    max-width:1260px;
    margin:auto;
    padding:26px 26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    z-index:5;
}

.brand-box{
    display:flex;
    align-items:center;
    gap:14px;
}

.site-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:linear-gradient(135deg,#7a1738,#240714);
    border:1px solid rgba(245,163,189,.34);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 24px rgba(122,23,56,.65);
    overflow:hidden;
}

.site-icon img{
    width:38px;
    height:38px;
    object-fit:contain;
}

.logo-text{
    font-family:'Exo 2',sans-serif;
    font-size:31px;
    font-weight:900;
    letter-spacing:5px;
    color:#f5a3bd;
    text-shadow:
        0 0 10px rgba(245,163,189,.48),
        0 0 28px rgba(122,23,56,.9);
}

.logo-sub{
    font-family:'Exo 2',sans-serif;
    font-size:12px;
    letter-spacing:6px;
    color:#c991a8;
    font-weight:700;
}

.nav-links a{
    color:#ffd8e7;
    text-decoration:none;
    margin-left:18px;
    font-weight:800;
    font-size:16px;
}

.hero{
    max-width:1080px;
    margin:auto;
    text-align:center;
    padding:105px 20px 68px;
    position:relative;
    z-index:3;
}

.signature{
    font-family:'Exo 2',sans-serif;
    font-size:78px;
    font-weight:900;
    letter-spacing:1px;
    color:#ffffff;
    line-height:1.05;
    text-shadow:0 0 22px rgba(255,255,255,.20);
}

.signature span{
    color:#f5a3bd;
    text-shadow:
        0 0 14px rgba(245,163,189,.72),
        0 0 36px rgba(122,23,56,1);
}

.signature:after{
    content:"";
    display:block;
    width:240px;
    height:4px;
    margin:24px auto;
    background:linear-gradient(90deg,transparent,#f5a3bd,transparent);
    box-shadow:0 0 25px #7a1738;
}

.hero-sub{
    color:#e8bdcc;
    font-size:24px;
    font-weight:700;
    margin-bottom:28px;
}

.badges{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin:28px 0;
}

.badge{
    padding:11px 17px;
    border-radius:999px;
    background:rgba(122,23,56,.32);
    border:1px solid rgba(245,163,189,.32);
    color:#ffd8e7;
    font-weight:900;
    font-size:15px;
    box-shadow:0 0 22px rgba(122,23,56,.28);
    backdrop-filter:blur(8px);
}

.main-btn{
    display:inline-flex;
    padding:16px 32px;
    border-radius:999px;
    background:linear-gradient(135deg,#a23a5a,#4d0d25);
    color:white;
    text-decoration:none;
    font-weight:1000;
    font-size:18px;
    box-shadow:0 0 30px rgba(122,23,56,.50);
    transition:.25s;
}

.main-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 42px rgba(245,163,189,.35);
}

.safe-note{
    margin-top:18px;
    color:#f7bdd0;
    font-size:16px;
    font-weight:900;
}

.systems-section{
    max-width:1320px;
    margin:auto;
    padding:50px 28px 80px;
    position:relative;
    z-index:3;
}

.section-title{
    text-align:center;
    color:#f5a3bd;
    font-family:'Exo 2',sans-serif;
    font-size:30px;
    letter-spacing:4px;
    margin-bottom:38px;
    text-shadow:0 0 22px rgba(122,23,56,.95);
}

.cards-long{
    display:grid;
    grid-template-columns:repeat(4,minmax(280px,1fr));
    gap:34px;
    align-items:start;
}

.script-card{
    min-height:650px;
    background:linear-gradient(160deg,rgba(24,5,15,.97),rgba(6,2,8,.97));
    border:1px solid rgba(245,163,189,.22);
    border-radius:24px;
    padding:16px;
    box-shadow:0 0 38px rgba(122,23,56,.22);
    transition:.35s ease;
    position:relative;
}

.cards-long:hover .script-card{
    filter:blur(3px);
    opacity:.48;
    transform:scale(.97);
}

.cards-long .script-card:hover{
    filter:blur(0);
    opacity:1;
    transform:scale(1.08);
    z-index:5;
    box-shadow:0 0 52px rgba(245,163,189,.32);
}

.photo-wrapper{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.14);
    height:220px;
}

.system-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.status-badge{
    position:absolute;
    left:12px;
    top:12px;
    background:#7a1738;
    color:white;
    padding:7px 11px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    z-index:2;
}

.card-content{
    padding:16px 4px 4px;
}

.card-content h3{
    font-size:23px;
    min-height:56px;
    color:white;
    font-weight:900;
}

.price-main{
    text-align:center;
    color:#f5a3bd;
    font-size:26px;
    font-weight:1000;
    margin:15px 0;
}

.info-panel{
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.09);
    border-radius:15px;
    padding:13px;
    margin-bottom:12px;
}

.panel-center{
    text-align:center;
}

.gift-title{
    display:block;
    color:#cfa2b3;
    font-size:13px;
}

.huge-text{
    display:block;
    color:#f5a3bd;
    font-size:29px;
    font-weight:1000;
    text-shadow:0 0 18px rgba(245,163,189,.45);
}

.sub-note{
    display:block;
    color:#b98ca0;
    font-size:12px;
}

.feature-list{
    list-style:none;
    margin:14px 0;
}

.feature-list li{
    color:#e7c5d2;
    font-size:16px;
    margin-bottom:9px;
    line-height:1.45;
}

.feature-list i{
    color:#f5a3bd;
    margin-right:7px;
}

.buy-now-btn{
    display:flex;
    justify-content:center;
    width:100%;
    padding:13px;
    border-radius:14px;
    background:linear-gradient(135deg,#a23a5a,#4d0d25);
    color:white;
    text-decoration:none;
    font-weight:1000;
    font-size:17px;
    transition:.25s;
}

.buy-now-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 25px rgba(245,163,189,.28);
}

.action-promo{
    max-width:940px;
    margin:30px auto 80px;
    padding:40px;
    border-radius:28px;
    background:linear-gradient(160deg,rgba(24,5,15,.97),rgba(6,2,8,.97));
    border:1px solid rgba(245,163,189,.25);
    text-align:center;
    position:relative;
    z-index:3;
    box-shadow:0 0 38px rgba(122,23,56,.22);
}

.action-promo h2{
    font-size:32px;
    color:white;
    margin-bottom:16px;
}

.action-promo p{
    color:#e7c5d2;
    line-height:1.7;
    max-width:760px;
    margin:0 auto 26px;
    font-size:17px;
}

.action-buttons{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.action-btn{
    padding:14px 20px;
    border-radius:15px;
    color:white;
    text-decoration:none;
    font-weight:1000;
}

.btn-dc{background:#5865f2}
.btn-ig{background:linear-gradient(135deg,#feda75,#d62976,#962fbf)}
.btn-yt{background:#ff0000}

.wp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25d366;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
    z-index:99999;
    box-shadow:0 0 28px rgba(37,211,102,.55);
}

footer{
    text-align:center;
    color:#a77a8d;
    padding:30px;
    position:relative;
    z-index:3;
}

@media(max-width:1200px){
    .cards-long{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .cards-long{
        grid-template-columns:1fr;
    }

    .signature{
        font-size:42px;
    }

    .hero-sub{
        font-size:18px;
    }

    .nav{
        flex-direction:column;
        gap:18px;
    }
}