*{box-sizing:border-box}

body{
    margin:0;
    min-height:100vh;
    font-family:Arial,Helvetica,sans-serif;
    background:#030712;
    color:#e5e7eb;
    overflow-x:hidden;
}

a{color:inherit;text-decoration:none}

.ai-bg{
    position:fixed;
    inset:0;
    z-index:-3;
    background:
        radial-gradient(circle at 15% 20%,rgba(239,68,68,.24),transparent 32%),
        radial-gradient(circle at 85% 15%,rgba(249,115,22,.20),transparent 30%),
        radial-gradient(circle at 50% 90%,rgba(59,130,246,.16),transparent 38%),
        linear-gradient(135deg,#020617 0%,#070b18 48%,#111827 100%);
}

.ai-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:54px 54px;
    animation:gridMove 22s linear infinite;
}

.ai-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.07) 50%,transparent 100%);
    transform:translateX(-120%);
    animation:scanLight 9s ease-in-out infinite;
}

.ai-bg span{
    position:absolute;
    width:260px;
    height:260px;
    border-radius:999px;
    filter:blur(58px);
    opacity:.28;
    animation:orbFloat 12s ease-in-out infinite alternate;
}

.ai-bg span:nth-child(1){left:8%;top:18%;background:#ef4444}
.ai-bg span:nth-child(2){right:8%;top:12%;background:#f97316;animation-delay:-4s}
.ai-bg span:nth-child(3){left:38%;bottom:6%;background:#3b82f6;animation-delay:-7s}
.ai-bg span:nth-child(4){right:30%;bottom:30%;background:#a855f7;animation-delay:-2s}

@keyframes gridMove{
    from{background-position:0 0}
    to{background-position:54px 54px}
}

@keyframes scanLight{
    0%,70%{transform:translateX(-120%)}
    100%{transform:translateX(120%)}
}

@keyframes orbFloat{
    from{transform:translate3d(0,0,0) scale(1)}
    to{transform:translate3d(40px,-35px,0) scale(1.18)}
}

.site-header,.page-main,.seo-footer{
    max-width:1650px;
    margin:0 auto;
    padding-left:14px;
    padding-right:14px;
}

.site-header{padding-top:18px}

.site-logo{
    text-align:center;
    margin-bottom:16px;
}

.site-logo img{
    max-width:900px;
    max-height:260px;
    width:auto;
    height:auto;
}

.banner-area{
    display:grid;
    gap:12px;
}

.top-banner{
    width:100%;
    height:250px;
    max-width:1650px;
    object-fit:cover;
    display:block;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.13);
    box-shadow:0 20px 60px rgba(0,0,0,.38);
}

.page-main{
    padding-top:18px;
    padding-bottom:42px;
}

.hero-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:30px;
    margin-bottom:18px;
    background:linear-gradient(135deg,rgba(15,23,42,.88),rgba(17,24,39,.78));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 26px 80px rgba(0,0,0,.36);
    display:flex;
    justify-content:space-between;
    gap:24px;
    align-items:center;
    backdrop-filter:blur(16px);
}

.hero-card::before{
    content:"";
    position:absolute;
    inset:-1px;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent);
    transform:translateX(-100%);
    animation:panelShine 8s ease-in-out infinite;
    pointer-events:none;
}

@keyframes panelShine{
    0%,72%{transform:translateX(-100%)}
    100%{transform:translateX(100%)}
}

.hero-kicker{
    display:inline-flex;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(239,68,68,.14);
    color:#fecaca;
    border:1px solid rgba(248,113,113,.26);
    font-size:13px;
    font-weight:900;
}

.hero-card h1{
    margin:15px 0 10px;
    font-size:clamp(30px,4vw,52px);
    line-height:1.05;
    color:#fff;
    letter-spacing:-1px;
}

.hero-card p{
    margin:0;
    max-width:900px;
    color:#cbd5e1;
    line-height:1.7;
}

.stats{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.stats div{
    min-width:130px;
    padding:13px 15px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.11);
}

.stats strong{
    display:block;
    font-size:22px;
    color:#fff;
}

.stats span{
    display:block;
    margin-top:2px;
    color:#94a3b8;
    font-size:12px;
    font-weight:800;
}

.hero-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.btn-main,.btn-ghost{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 19px;
    border-radius:17px;
    font-weight:900;
    transition:.2s;
    white-space:nowrap;
}

.btn-main{
    background:linear-gradient(135deg,#ef4444,#f97316);
    color:#fff;
    box-shadow:0 14px 34px rgba(239,68,68,.28);
}

.btn-ghost{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.13);
    color:#fff;
}

.btn-main:hover,.btn-ghost:hover{
    transform:translateY(-2px);
}

.server-panel{
    overflow:hidden;
    border-radius:30px;
    background:rgba(15,23,42,.84);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 26px 80px rgba(0,0,0,.34);
    backdrop-filter:blur(16px);
}

.panel-head{
    padding:26px 28px;
    border-bottom:1px solid rgba(255,255,255,.09);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.panel-head h2{
    margin:0;
    color:#fff;
    font-size:26px;
    font-weight:1000;
    letter-spacing:-.3px;
}

.panel-head p{
    margin:7px 0 0;
    color:#94a3b8;
    font-size:15px;
}

.count-pill{
    padding:11px 17px;
    border-radius:999px;
    color:#fed7aa;
    background:rgba(249,115,22,.12);
    border:1px solid rgba(249,115,22,.28);
    font-size:14px;
    font-weight:900;
}

.table-wrap{
    overflow-x:auto;
}

.server-table{
    width:100%;
    border-collapse:collapse;
    min-width:1350px;
}

.server-table th{
    padding:18px 18px;
    background:rgba(2,6,23,.65);
    color:#94a3b8;
    text-align:left;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.07em;
}

.server-table td{
    padding:24px 18px;
    border-top:1px solid rgba(255,255,255,.07);
    color:#e5e7eb;
    font-size:16px;
    font-weight:800;
    vertical-align:middle;
}

.server-table tbody tr{
    transition:.18s;
}

.server-table tbody tr:hover{
    background:rgba(255,255,255,.045);
}

.server-main{
    display:flex;
    align-items:center;
    gap:20px;
    min-width:340px;
}

.server-logo{
    width:100px;
    height:100px;
    object-fit:contain;
    padding:6px;
    border-radius:22px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.11);
    flex-shrink:0;
    box-shadow:0 14px 32px rgba(0,0,0,.28);
}

.no-logo{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fecaca;
    font-weight:900;
}

.server-name{
    color:#fff;
    font-size:18px;
    font-weight:1000;
    letter-spacing:-.2px;
}

.web-btn{
    width:54px;
    height:54px;
    border-radius:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.11);
    font-size:20px;
    transition:.2s;
}

.web-btn:hover{
    background:#ef4444;
    transform:translateY(-1px);
}

.status-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:11px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
    white-space:nowrap;
}

.status-badge::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:999px;
    background:currentColor;
}

.status-badge.online{
    color:#bbf7d0;
    background:rgba(34,197,94,.12);
    border:1px solid rgba(34,197,94,.25);
}

.status-badge.soon{
    color:#fecaca;
    background:rgba(239,68,68,.13);
    border:1px solid rgba(239,68,68,.25);
}

.status-badge.unknown{
    color:#e5e7eb;
    background:rgba(148,163,184,.12);
    border:1px solid rgba(148,163,184,.22);
}

.type-pill{
    display:inline-flex;
    padding:10px 15px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.11);
    font-size:14px;
    font-weight:900;
    white-space:nowrap;
}

.active-time{
    color:#fde68a;
    font-size:16px;
    font-weight:1000;
    white-space:nowrap;
}

.server-table td:nth-child(4),
.server-table td:nth-child(5),
.server-table td:nth-child(6),
.server-table td:nth-child(8),
.server-table td:nth-child(9){
    font-size:15px;
    font-weight:850;
}

.empty-box{
    padding:42px 20px;
    text-align:center;
    color:#94a3b8;
}

.seo-footer{
    padding-bottom:42px;
}

.seo-card{
    margin-top:16px;
    padding:24px;
    border-radius:25px;
    background:rgba(15,23,42,.76);
    border:1px solid rgba(255,255,255,.11);
    color:#cbd5e1;
    line-height:1.75;
    backdrop-filter:blur(14px);
}

.seo-card h2{
    color:#fff;
    margin-top:0;
}

@media(max-width:900px){
    .site-logo img{
        max-width:95%;
        max-height:180px;
    }

    .hero-card{
        flex-direction:column;
        align-items:flex-start;
        padding:22px;
    }

    .hero-actions{
        justify-content:flex-start;
    }

    .top-banner{
        height:auto;
        aspect-ratio:1650/250;
    }

    .panel-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .server-table{
        min-width:1200px;
    }

    .server-logo{
        width:82px;
        height:82px;
    }

    .server-name{
        font-size:16px;
    }
}
.floating-discord-widget{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:50;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.40);
}

@media(max-width:900px){
    .floating-discord-widget{
        display:none;
    }
}