* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: #111;
    padding: 20px 0;
    border-bottom: 2px solid #ff3b3b; /* Đổi viền sang đỏ */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
}

.logo span { color: #ff3b3b; } /* Đổi màu logo chữ SERVER sang đỏ */

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li { margin-left: 25px; }

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover { color: #ff3b3b; } /* Hover menu sang màu đỏ */

.discord-nav {
    color: #5865F2 !important; /* Màu xanh Discord trên menu giữ nguyên */
}

/* Hero Section & Buttons */
.hero {
    text-align: center;
    padding: 80px 0;
    background: radial-gradient(circle, #1a1a1a 0%, #0d0d0d 100%);
}

.hero p {
    color: #aaa;
    margin-top: 10px;
}

.hero-buttons {
    margin-top: 25px;
}

.btn-discord {
    display: inline-block;
    background: #5865F2;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

/* IP Copy Section */
.ip-container {
    margin-top: 30px;
    background: #1a1a1a;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 10px;
    border: 1px solid #333;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.ip-container:hover {
    background: #222;
    border-color: #ff3b3b; /* Hover viền IP đỏ */
    transform: scale(1.05);
}

#server-ip {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #ff3b3b; /* IP màu đỏ */
}

#copy-status {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

/* Team Section */
.section-title {
    text-align: center;
    margin: 50px 0;
    font-size: 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
}

.member-card {
    background: #161616;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.member-card:hover {
    border-color: #ff3b3b; /* Viền đỏ khi hover */
    background: #1c1c1c;
}

.member-image img {
    width: 100px;
    height: auto;
    margin-right: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 59, 59, 0.4)); /* Bóng đỏ dưới hình ảnh */
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.role {
    color: #ff3b3b; /* Chức vụ màu đỏ */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.desc {
    color: #aaa;
    font-size: 14px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 50px;
    border-top: 1px solid #222;
    color: #444;
}

/* ==========================================
   RESPONSIVE DESIGN (Hỗ trợ điện thoại)
   ========================================== */
@media (max-width: 768px) {
    /* Navbar co gọn */
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links li {
        margin-left: 0;
    }

    /* Thu nhỏ chữ trên di động */
    .hero h1 {
        font-size: 26px;
    }

    #server-ip {
        font-size: 22px;
    }

    .ip-container {
        padding: 10px 30px;
    }

    /* Đội ngũ team xếp dọc, căn giữa */
    .team-grid {
        grid-template-columns: 1fr; /* Chia 1 cột trên đt */
        gap: 20px;
    }

    .member-card {
        flex-direction: column; /* Đẩy ảnh lên trên chữ */
        text-align: center;
    }

    .member-image img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}