.server-section {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.server-section::before {
    content: none;
}

.server-info {
    margin-top: 2rem;
}

.admin-info {
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f8f8;
}

.admin-info h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

@media (max-width: 1024px) {
    .admin-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.admin-card {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    width: 100%;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.admin-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1.5rem;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.admin-title {
    flex: 1;
}

.admin-title h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.admin-role {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.admin-info-content {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    background-color: white;
}

.admin-social {
    margin-top: 1rem;
    color: #666;
}

.subservers {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #ffffff;
}

.subservers h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.server-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.server-card img {
    width: 100%;
    height: 160px;
    object-fit: fill;
    background-color: #f5f5f5;
}

.server-card h4 {
    padding: 1rem 1rem 0.5rem;
    color: #333;
}

.server-card p {
    padding: 0 1rem;
    color: #666;
}

.server-status {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
}

.server-status p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.subservers h3::after, .admin-info h3::after {
    content: none;
}

.server-total-status {
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    text-align: center;
}

.server-total-status h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.total-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.total-status-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.total-status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.status-icon {
    font-size: 2.5rem;
    color: #4CAF50;
}

.status-info h4 {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.status-info p {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .total-status-grid {
        grid-template-columns: 1fr;
    }
} 