* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
    background-color: #121212;
    color: #fff;
}

body {
    display: flex;
    flex-direction: column;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #1f1f1f;
    padding: 20px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}
.container img{
    height: 32px;
    width: 32px;
}

.auth a {
    background-color: #0066cc;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
.auth a:hover {
    background-color: #005bb5;
}

main {
    width: 80%;
    margin: 40px auto;
    flex: 1;
}

.step {
    margin-bottom: 40px;
}

.step h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    margin-bottom: 20px;
}

.button {
    background-color: #0066cc;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #005bb5;
}

footer {
    background-color: #1f1f1f;
    color: #fff;
    padding: 20px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    width: 30%;
}


.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
    font-size: 14px;
}

.server-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.server-item {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.server-item:hover {
    transform: scale(1.05);
}

.server-item img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.server-info h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.server-info p {
    font-size: 16px;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: #1f1f1f;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.close {
    color: #0066cc;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #005bb5;
    text-decoration: none;
    cursor: pointer;
}