main {
    display: flex;
    align-items: start;
}

section {
    width: 60%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

button {
    border-radius: 0 8px 8px 0;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}

.player-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 75%;
}

.server-section {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 12px;
    width: 35%;
    height: max-content;
}


.server-section h2 {
    font-size: 1rem;
    font-weight: 600;
    color: rgb(36, 36, 36);
}

.server-container-card{
     display: flex;
     flex-direction: column;
     gap: 5px;
     background-color: white;
     padding: 10px;
     border-radius: 8px;
     width: 100%;
}

.server-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    font-size: 13px;
}


.server-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #4caf50;
    border-radius: 50%;
}

.server-card p {
    margin: 2px 0;
    font-size: 12px;
    color: #555;
}



.player-bottom-info {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    font-size: 12px;
    color: rgb(70, 70, 70);
}

.continue-button-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.continue-button {
    display: flex;
    align-items: center;
    gap: 2px;
    width: max-content;
    padding: 12px;
    border-radius: 8px;
    background: #236DAD !important;
}

h3 {
    margin-bottom: 12px;
    font-size: 22px;
    color: #222;
}

h4 {
    margin-top: 16px;
    margin-bottom: 6px;
    font-size: 18px;
    color: #444;
}

p {
    margin-bottom: 12px;
    font-size: 14px;
}

ol {
    margin-bottom: 12px;
    padding-left: 20px;
}

.faq-item {
    margin-bottom: 16px;
}

@media (min-width: 2000px){
  .server-section {
    align-content: center;
   }
}

@media (max-width: 1400px) {
    section {
        width: 80%;
    }
    .container-player {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1024px) {
    .container-player{
        grid-template-columns: repeat(5, 1fr) !important;
    }
    .player-section {
        width: 100% !important;
    }

    .container{
        flex-direction: column;
    }
    .server-section{
        width: 100%;
    }
}

@media (max-width: 764px) {
    .container-player {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 520px) {
    section {
        width: 95% !important;
    }
    .container-player {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
