body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    zoom: 90%;
    background-color: #1f1f1f;
    overflow-x: hidden;
    position: relative;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.png') no-repeat center center fixed;
    background-size: cover;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

.header .header-container {
    width: 75%;
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-section {
    min-height: 123vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    height: 90px;
    background-color: #131313;
}

.message-container {
    width: 75%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 50px;
    padding-top: 10px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    z-index: 2;
    width: 75%;
    max-width: 1200px;
}

.content img {
    width: 256px;
    height: 256px;
    margin-right: 20px;
    margin-top: 46px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

p {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.button {
    padding: 15px 30px;
    padding-left: 23px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    text-decoration: none;
    border-radius: 20px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: white;
}

.icon {
    margin-right: 8px;
}

.icon-telegram {
    color: black;
    margin-right: 12px;
    margin-bottom: 3px;
    font-size: 30px;
    vertical-align: middle;
}

.icon-online {
    color: rgb(0, 255, 0);
    filter: drop-shadow(0 0 3px rgba(0, 255, 0, 0.7));
    font-size: 10px;
    vertical-align: middle;
    margin-bottom: 3px;
}

.icon-rules,
.icon-meta {
    color: white;
}

.nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 60px;
    font-size: 20px;
}

.nav a:hover {
    color: white;
}

.server-status {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
}

.server-address {
    font-family: monospace;
    font-size: 21px;
    margin-left: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 6px;
    cursor: pointer;
}

.server-address:hover {
    text-decoration: underline;
    color: white;
}

.countdown {
    margin-left: 12px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    cursor: pointer;
}

.plans-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.plans-section h1 {
color: white;
    text-align: center;
}

.plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 60px 0 60px 0;
}

.plan{
    margin: 24px;
    height: fit-content;
    padding: 0px 40px 0px 40px;;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.plan img{
    width: 200px;
    height: 200px;
}

.plan h2{
    text-align: center;
    color: white;
    margin: 20px 0 0 0;
}

.plan .price{
    color: white;
    margin: 0 0 20px 0;
    text-align: left;
}   

.footer-container {
    height: 90px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

@media (max-width: 1055px) {
    .server-address {
        display: none;
    }
    .countdown {
        display: none;
    }
}

@media (max-width: 870px) {
    .content img {
        display: none;
    }
    .content {
        justify-content: center;
        text-align: center;
    }
    p {
        text-align: justify;
    }
    h1 {
        font-size: 32px;
    }
    .nav a {
        display: none;
    }
}

@media (max-width: 550px) {
    .button {
        font-size: 16px;
    }
    .nav a {
        margin-left: 20px;
    }
}