*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#e9ecef;
    font-family:'Inter',sans-serif;
    color:#222;
}

.background{

    position:relative;

    width:100%;

    min-height:100vh;

    overflow:hidden;

}

.background::before{

    content:"";

    position:fixed;

    inset:0;

    background:url("web_background.png") center center / cover no-repeat;

    filter:blur(3px);

    transform:scale(1.05);

    z-index:-2;

}

.background::after{

    content:"";

    position:fixed;

    inset:0;

   /* background:rgba(255,255,255,.18);*/

    z-index:-1;

}
.wrapper{
    width:min(1700px,96vw);
    margin:auto;
}

.hero{
    position:relative;
    width:100%;
	
    height:460px;
    /*margin:35px auto;*/
    border-radius:18px;
    overflow:hidden;
    background:url("header.png") center center/cover no-repeat;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
	/*margin-bottom:20px;*/
	background-position: center 6px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.55),rgba(0,0,0,.15));
}

.topbar{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    /*height:72px;*/
	height:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
    background:rgba(0,0,60,.14);
    backdrop-filter:blur(10px);
    z-index:5;
}

.logo{

    font-size:34px;

    font-weight:800;

}

.logo a{

    color:#fff;

    text-decoration:none;

}

.logo a:hover{

    color:#fff;

}

.logo span{

    color:#4da3ff;

}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.2s;
}

nav a:hover{
    color:#5db3ff;
}

.hero-buttons{
    display:flex;
	width:100%;
    gap:15px;
    padding:20px 0;
	justify-content: left;

}

.btn-primary,
.btn-secondary{
    padding:16px 34px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
    backdrop-filter:blur(10px);
	
}

.btn-primary{
    background:#2388ff;
    color:#fff;
}

.btn-primary:hover{
    background:#0d74ed;
}

.btn-secondary{
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.28);
}

.main-grid{
    display:grid;
    grid-template-columns:280px 1fr 300px;
    gap:28px;
    margin-bottom:40px;
}

.card{
    background:rgba(255,255,255,.92);
    border-radius:18px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid rgba(255,255,255,.6);
}

.card h2{
    font-size:25px;
    color:#1d2d45;
    margin-bottom:20px;
}

.card table td a {
	font-weight:bold;
	text-decoration:none;
	color: #000000;
}
.news-big{
    display:flex;
    gap:25px;
}

.news-big img{
    width:250px;
    height:150px;
    object-fit:cover;
    border-radius:12px;
}

.news-big h3{
    font-size:28px;
    margin-bottom:15px;
}

.news-big p{
    color:#666;
    line-height:28px;
}

.forum-table{
    width:100%;
    border-collapse:collapse;
}

.forum-table th{
    text-align:left;
    padding:16px;
    background:#eef5fc;
}

.forum-table td{
    padding:16px;
    border-bottom:1px solid #ececec;
}

.forum-table tr:hover{
    background:#f8fbff;
}

input{
    width:100%;
    padding:16px;
    margin-bottom:15px;
    border:1px solid #d9d9d9;
    border-radius:10px;
    outline:none;
}

button{
    width:100%;
    border:none;
    border-radius:10px;
    background:#2196f3;
    color:#fff;
    padding:16px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

button:hover{
    background:#1976d2;
}

.discord-btn{
    display:block;
    margin-top:20px;
    text-align:center;
    text-decoration:none;
    background:#5865F2;
    color:#fff;
    padding:15px;
    border-radius:10px;
    font-weight:700;
}

.server-status{
    display:flex;
    align-items:center;
    gap:10px;
    margin:15px 0 20px;
}

.server-status span{
    font-weight:700;
    letter-spacing:1px;
}

.status{
    width:14px;
    height:14px;
    border-radius:50%;
    flex-shrink:0;
}

.online{
    background:#2ecc71;
    box-shadow:0 0 12px #2ecc71;
}

.offline{
    background:#e74c3c;
    box-shadow:0 0 12px #e74c3c;
}

.server-ip{
    background:#edf5ff;
    border-radius:10px;
    padding:15px;
    margin-bottom:18px;
    text-align:center;
    font-size:20px;
    font-weight:700;
    color:#1d2d45;
}

.server-name{
    background:#f7f9fc;
    border:1px solid #e7edf5;
    border-radius:10px;
    padding:15px;
    margin-bottom:20px;
    text-align:center;
    font-weight:700;
    line-height:24px;
    color:#1d2d45;
    word-break:break-word;
}

.server-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:14px 0;
    border-bottom:1px solid #ececec;
}

.server-row:last-child{
    border-bottom:none;
}

.server-row span{
    color:#666;
    font-weight:500;
}

.server-row strong{
    color:#1d2d45;
    font-weight:700;
    text-align:right;
    word-break:break-word;
}


.forum-section{

    display:flex;

    align-items:center;

    gap:20px;

    text-decoration:none;

    color:inherit;

    padding:18px;

    border-radius:12px;

    transition:.2s;

    margin-bottom:12px;

    border:1px solid #e5e5e5;

}

.forum-section:hover{

    background:#f5f8fc;

}

.forum-icon{

    font-size:34px;

}

.forum-main{

    flex:1;

}

.forum-title{

    font-size:20px;

    font-weight:700;

}

.forum-description{

    margin-top:6px;

    color:#777;

}

.forum-stats{

    width:90px;

    text-align:center;

}

.forum-stats div{

    font-size:22px;

    font-weight:700;

}

.forum-child{

    display:block;

    margin-left:60px;

    margin-bottom:8px;

    text-decoration:none;

    color:#3d6fb6;

}

.forum-child:hover{

    text-decoration:underline;

}

.forum-topic-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:20px;

    margin-bottom:15px;

    border-radius:14px;

    text-decoration:none;

    color:inherit;

    background:#fff;

    transition:.2s;

    border:1px solid #e8edf5;

}

.forum-topic-card:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.forum-topic-icon{

    font-size:34px;

}

.forum-topic-main{

    flex:1;

}

.forum-topic-title{

    font-size:20px;

    font-weight:700;

    margin-bottom:8px;

}

.forum-topic-author{

    color:#777;

}

.forum-topic-right{

    width:120px;

    text-align:center;

}

.forum-topic-right strong{

    display:block;

    font-size:22px;

}

.forum-post-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

    padding-bottom:15px;

    border-bottom:1px solid #ececec;

}

.forum-post-content{

    line-height:30px;

    font-size:16px;

}

.forum-post-content img{

    max-width:100%;

}

.forum-post-content table{

    border-collapse:collapse;

}

.forum-post-content table td{

    border:1px solid #ddd;

    padding:8px;

}