body {
    margin: 0;
    font-family: 'Minecraft', sans-serif;
    color: white;
    text-align: center;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1);
    object-fit: cover;
    filter: brightness(0.6) blur(3px);
}

.hero h1, .ip-box, .ranks-table th, footer {
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.3);
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    transition: color 0.2s;
}

nav a:hover {
    color: aqua;
}

.hero {
    padding: 20px 20px;
}

.hero h1 {
    font-size: 48px;
    text-shadow: 0 0 10px #ffb6ff;
}

.hero-info {
    font-family: cursive;
    text-shadow: 0 0 10px aqua;
}

.server-stats {
    margin-top: 15px;
    text-align: center;
}

#status-box {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    color: white;
}

#status-box.online {
    background-color: rgba(0, 200, 0, 0.3);
    text-shadow: 0 0 15px rgba(0, 200, 0, 0.7), 0 0 30px rgba(0, 200, 0, 1);
}

#status-box.offline {
    background-color: rgba(200, 0, 0, 0.3);
    text-shadow: 0 0 15px rgba(200, 0, 0, 0.7), 0 0 30px rgba(200, 0, 0, 1);
}

.ip-box {
    background-color: rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 15px 25px;
    border-radius: 10px;
    margin-top: 0;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.ip-box:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
}

section {
    padding: 20px 20px;
}

.ranks-table {
    width: 100%;
    max-width: 800px;
    margin: auto;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
}

.ranks-table th, .ranks-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ranks-table th {
    background-color: rgba(0, 0, 0, 0.7);
    color: cadetblue;
}

.rank-name {
    font-weight: bold;
    font-size: 18px;
}

.rank-buy-button {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    display: inline-block;
    font-family: "Sitka Banner", serif;
    border-radius: 6px;
    padding: 6px 12px;
    transition: 0.2s;
}

.rank-buy-button:hover {
    color: violet;
    transform: scale(1.03);
}

.rank-vip {
    color: lightgreen;
}
.rank-elf {
    color: yellow;
}
.rank-angel {
    color: ghostwhite;
}
.rank-demon {
    color: indianred;
}

.rank-liteDeforged {
    background: linear-gradient(90deg, aqua, violet, white, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.rank-superLite {
    background: linear-gradient(90deg, red, indianred,  white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 0;
    margin-top: 30px;
    font-size: 14px;
}