/* ===================================================== GLOBAL RESET ===================================================== */ * { margin: 0; padding: 0; box-sizing: border-box; } body { background: #0f0f12; font-family: 'Segoe UI', Arial, sans-serif; color: #ffffff; } /* ===================================================== LAYOUT ===================================================== */ #container { width: 100%; min-height: 100vh; } #main-content { width: 1200px; max-width: 95%; margin: 40px auto; } /* Footer spacing */ footer { margin-top: auto; padding: 20px 0; text-align: center; } /* ===================================================== HEADER + NAVIGATION ===================================================== */ #header { width: 100%; background: #111118; box-shadow: 0 5px 20px rgba(0,0,0,0.5); } #header-main { display: flex; justify-content: center; } #header-main-wrap { width: 1200px; max-width: 95%; display: flex; justify-content: center; } #menu-wrap { list-style: none; display: flex; justify-content: center; align-items: center; gap: 50px; padding: 20px 0; } #menu-wrap li { list-style: none; } #menu-wrap li a { text-decoration: none; color: #ddd; font-size: 17px; font-weight: 600; padding: 10px 18px; border-radius: 8px; transition: all 0.3s ease; } #menu-wrap li a:hover { background: linear-gradient(45deg, #ffd700, #ffae00); color: #000; transform: translateY(-3px); } /* ===================================================== BLOCKS ===================================================== */ .block { background: #15151d; border-radius: 16px; padding: 25px; margin-bottom: 40px; box-shadow: 0 15px 40px rgba(0,0,0,0.6); } .block-head { text-align: center; margin-bottom: 20px; } .block .title { font-size: 22px; letter-spacing: 2px; color: #ffd700; text-transform: uppercase; } /* ===================================================== BUTTONS ===================================================== */ .button-group { display: flex; justify-content: center; gap: 30px; margin-top: 20px; flex-wrap: wrap; } .button-group a { text-decoration: none; padding: 14px 30px; font-size: 16px; font-weight: 600; border-radius: 8px; transition: all 0.3s ease; min-width: 220px; text-align: center; display: inline-block; } .btn-primary { background: linear-gradient(45deg, #ffd700, #ffae00); color: #000; box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); } .btn-primary:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(255, 215, 0, 0.7); } .btn-secondary { background: #1f2230; color: #fff; border: 1px solid #333; } .btn-secondary:hover { background: #ffd700; color: #000; transform: translateY(-4px); } /* ===================================================== PVP SECTION (CHIẾN TÍCH) ===================================================== */ .section-card { background: #14141c; border-radius: 16px; padding: 25px; box-shadow: 0 15px 40px rgba(0,0,0,0.6); } /* Tabs */ .tab-header { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; } .tab-btn { background: #1f2230; color: #ccc; border: 1px solid #2c3040; padding: 10px 20px; cursor: pointer; font-weight: 600; border-radius: 8px; transition: all 0.25s ease; } .tab-btn:hover { background: #2c3142; color: #fff; } .tab-btn.active { background: linear-gradient(45deg, #ffd700, #ffae00); color: #000; border: none; } /* Tab Content */ .tab-content { display: none; animation: fadeIn 0.3s ease-in-out; } .tab-content.active { display: block; } /* ===================================================== TABLE STYLE (LEADERBOARD) ===================================================== */ .nice_table { width: 100%; border-collapse: collapse; font-size: 14px; background: #1b1b25; border-radius: 12px; overflow: hidden; } .nice_table thead th { background: linear-gradient(90deg, #232334, #2d2d45); color: #ffd700; padding: 14px; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; } .nice_table td { padding: 12px; border-bottom: 1px solid #2a2a3d; color: #ddd; text-align: center; } .nice_table tbody tr:nth-child(even) { background: #20202d; } .nice_table tbody tr:hover { background: #2a2a3d; transition: 0.2s ease; } .nice_table img { width: 28px; } /* Top 3 Highlight */ .nice_table tbody tr:nth-child(1) { background: linear-gradient(90deg, rgba(255,215,0,0.15), transparent); font-weight: bold; } .nice_table tbody tr:nth-child(2) { background: rgba(192,192,192,0.08); } .nice_table tbody tr:nth-child(3) { background: rgba(205,127,50,0.08); } /* ===================================================== ANIMATIONS ===================================================== */ @keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } } /* ===================================================== RESPONSIVE ===================================================== */ @media (max-width: 768px) { #menu-wrap { flex-direction: column; gap: 15px; } .button-group { flex-direction: column; align-items: center; } #main-content { margin: 20px auto; } } /* ====================================== SERVER CARD STYLE ====================================== */ .server-card { background: linear-gradient(145deg, #14141c, #1b1b25); border-radius: 16px; padding: 25px 30px; color: #fff; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 16px; line-height: 1.6; box-shadow: 0 15px 40px rgba(0,0,0,0.6); transition: transform 0.3s ease, box-shadow 0.3s ease; } .server-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.8); } /* Icon styling */ .server-card span { margin-right: 8px; font-size: 18px; } /* Line breaks for readability */ .server-card p, .server-card div { margin: 10px 0; } /* Highlighting keywords */ .server-card strong { color: #ffd700; /* Gold highlight */ } /* Responsive adjustments */ @media (max-width: 768px) { .server-card { padding: 20px; font-size: 15px; } } /* ====================================== DOWNLOAD CARD STYLE ====================================== */ .download-card { background: linear-gradient(145deg, #14141c, #1b1b25); border-radius: 16px; padding: 25px 30px; color: #fff; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 16px; line-height: 1.6; box-shadow: 0 15px 40px rgba(0,0,0,0.6); transition: transform 0.3s ease, box-shadow 0.3s ease; margin-bottom: 20px; } .download-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.8); } .download-card strong { color: #ffd700; /* Gold highlight */ } /* Buttons container */ .download-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 15px; } /* Button style */ .btn-download { display: flex; align-items: center; background: #1b1b25; border: 1px solid #4a4f5a; color: #fff; font-weight: bold; padding: 12px 20px; border-radius: 10px; text-decoration: none; transition: 0.2s; } .btn-download span { margin-right: 8px; font-size: 18px; } .btn-download:hover { background: #3a3f4a; color: #ffd700; transform: translateY(-2px); } /* Responsive */ @media (max-width: 768px) { .download-card { padding: 20px; font-size: 15px; } .btn-download { flex: 1 1 100%; justify-content: center; } } /* =============================== REGISTER FORM CARD =============================== */ #register-section .section-card { background: linear-gradient(145deg, #14141c, #1b1b25); border-radius: 16px; padding: 25px 30px; color: #fff; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 16px; line-height: 1.6; box-shadow: 0 15px 40px rgba(0,0,0,0.6); transition: transform 0.3s ease, box-shadow 0.3s ease; max-width: 500px; margin: 0 auto; } #register-section .section-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.8); } /* Form styling */ .page_form { display: flex; flex-direction: column; gap: 15px; } .form-group { display: flex; flex-direction: column; } .form-group label { margin-bottom: 6px; font-weight: bold; color: #ffd700; } .form-group input { padding: 10px 12px; border-radius: 8px; border: 1px solid #4a4f5a; background: #1b1b25; color: #fff; font-size: 14px; transition: 0.2s; } .form-group input:focus { outline: none; border-color: #ffd700; box-shadow: 0 0 8px #ffd70033; } /* Error message */ .error-msg { color: #ff4c4c; font-size: 12px; margin-top: 4px; } /* Submit button */ .form-actions input[type="submit"] { background: #3a3f4a; color: #fff; font-weight: bold; padding: 12px 20px; border-radius: 10px; border: 1px solid #4a4f5a; cursor: pointer; transition: 0.2s; } .form-actions input[type="submit"]:hover { background: #ffd700; color: #14141c; transform: translateY(-2px); } /* POPUP ALERT */ .popup-alert { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: none; /* shown via JS */ justify-content: center; align-items: center; background: rgba(0,0,0,0.7); z-index: 9999; } .popup-alert .popup-box { background: #1b1b25; border-radius: 16px; padding: 25px 30px; max-width: 400px; text-align: center; color: #fff; box-shadow: 0 15px 40px rgba(0,0,0,0.6); } .popup-alert h3 { color: #ffd700; margin-bottom: 15px; } .popup-alert button { margin-top: 15px; padding: 10px 20px; background: #3a3f4a; color: #fff; font-weight: bold; border-radius: 8px; border: 1px solid #4a4f5a; cursor: pointer; transition: 0.2s; } .popup-alert button:hover { background: #ffd700; color: #14141c; } /* Responsive adjustments */ @media (max-width: 768px) { #register-section .section-card { padding: 20px; } .popup-alert .popup-box { width: 90%; padding: 20px; } } /* =============================== DROPDOWN ALERT MESSAGE =============================== */ .dropdown-alert { background: #ff4c4c; /* red for warning */ color: #fff; padding: 12px 16px; border-radius: 10px; margin-bottom: 15px; font-weight: bold; display: flex; justify-content: space-between; align-items: center; animation: slideDown 0.4s ease; } .dropdown-alert strong { margin-right: 6px; } .dropdown-alert .close-alert { cursor: pointer; font-size: 18px; line-height: 1; color: #fff; transition: 0.2s; } .dropdown-alert .close-alert:hover { color: #000; } @keyframes slideDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } } /* Donation Card */ .donate-box { background: #1b1f28; border-radius: 12px; padding: 20px; margin-bottom: 20px; border: 1px solid #2c2f3a; transition: transform 0.2s ease, box-shadow 0.2s ease; } .donate-box:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); } .donate-info { list-style: none; padding: 0; margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; font-size: 15px; color: #e4e6eb; } .donate-info li { padding: 8px 0; border-bottom: 1px solid #2c2f3a; display: flex; align-items: center; } .donate-info li strong { margin-left: 6px; color: #4caf50; /* Highlighted text */ } .note { margin-top: 10px; font-size: 13px; color: #a0a4b0; } /* Grid layout for 2 ranking tables */ .ranking-grid { display: flex; gap: 20px; flex-wrap: wrap; } .ranking-box { flex: 1; min-width: 300px; background: #1b1f28; padding: 15px; border-radius: 10px; border: 1px solid #2c2f3a; } .ranking-box h3 { text-align: center; margin-bottom: 10px; color: #ffd700; font-size: 18px; } /* Make tables fit nicely */ .nice_table { width: 100%; border-collapse: collapse; font-size: 14px; } .nice_table th, .nice_table td { padding: 6px; text-align: center; border-bottom: 1px solid #2c2f3a; } .nice_table th { background: #141821; color: #ffd700; } /* =============================== BOSS TRACKER SIDEBAR =============================== */ .sidebox_topvoters { background: #1b1f28; border-radius: 12px; padding: 15px; border: 1px solid #2c2f3a; box-shadow: 0 6px 20px rgba(0,0,0,0.3); } .sidebox_topvoters .topvoter_row { display: flex; justify-content: space-between; align-items: center; padding: 10px 8px; border-bottom: 1px solid #2c2f3a; transition: background 0.2s ease; } .sidebox_topvoters .topvoter_row:last-child { border-bottom: none; } .sidebox_topvoters .topvoter_row:hover { background: #141821; } .topvoter_col { font-size: 13px; } .col_name a { font-weight: bold; color: #4D94FF; text-decoration: none; } .col_vote { text-align: right; } .killer-name { color: #FFD700; font-weight: bold; } .kill-time { display: block; font-size: 11px; color: #aaa; margin-top: 2px; } .boss-alive { color: #888; font-style: italic; } .boss-status { font-size: 11px; padding: 2px 6px; border-radius: 6px; margin-left: 5px; } .status-dead { background: #4caf50; color: #fff; } .status-alive { background: #444; color: #ccc; } .respawn-time { display: block; font-size: 11px; color: #ff9800; font-weight: normal; margin-top: 3px; } /* Row layout */ .sidebox_topvoters .topvoter_row { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; align-items: center; padding: 10px 8px; border-bottom: 1px solid #2c2f3a; transition: background 0.2s ease; gap: 10px; } .sidebox_topvoters .topvoter_row:last-child { border-bottom: none; } .sidebox_topvoters .topvoter_row:hover { background: #141821; } /* Boss name */ .col_name { font-weight: bold; color: #4D94FF; } /* Respawn column */ .col_respawn { text-align: center; } .respawn-time { background: #2c2f3a; padding: 4px 8px; border-radius: 6px; font-size: 12px; color: #ff9800; font-weight: bold; } /* Killer column */ .col_vote { text-align: right; }
/* Drop List Cards */
.drop-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.drop-card {
    flex: 1 1 300px;
    background: #1b1f28;
    border: 1px solid #2c2f3a;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.drop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.drop-card h3 {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.drop-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drop-card ul li {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #2c2f3a;
    color: #ddd;
    font-size: 14px;
}

.drop-card ul li span {
    color: #ff9800;
    font-weight: bold;
}

.drop-card ul li:last-child {
    border-bottom: none;
}

.boss-name {
    color: #4CAF50;
    font-weight: 600;
}

.topvoter_row.header {
    font-weight: bold;
    border-bottom: 1px solid #555;
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.topvoter_row.header .topvoter_col {
    color: #ffd700;
}