/* Reset & System */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variables - Dark Gaming Theme */
:root {
    /* Primary color palette - Neon Purple */
    --primary-color: #8b5cf6;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;

    --second-color: #06b6d4;
    --second-light: #22d3ee;
    --second-dark: #0891b2;

    /* Accent */
    --accent-color: #f72585;
    --accent-dark: #c9184a;
    --accent-light: #ff4da6;

    /* Neon glow colors */
    --neon-purple: #8b5cf6;
    --neon-cyan: #06b6d4;
    --neon-pink: #f72585;
    --neon-green: #10b981;
    --neon-yellow: #f59e0b;

    /* Background layers */
    --bg-body: #0a0a14;
    --bg-surface: #12121f;
    --bg-card: #1a1a2e;
    --bg-card-hover: #1e1e35;
    --bg-elevated: #16213e;

    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(139, 92, 246, 0.4);

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-color: #f1f5f9;
    --text-light: #94a3b8;
    --text-lighter: #64748b;

    /* Legacy compat */
    --dark: #0a0a14;
    --bg-color: #0a0a14;
    --bg-light: #12121f;
    --teal: #06b6d4;
    --yellow: #f59e0b;
    --blue: #3b82f6;
    --danger: #ef4444;
    --danger-light: rgba(239, 68, 68, 0.15);
    --danger-dark: #dc2626;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-pill: 100px;
    --border-radius-circle: 50%;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
    --shadow-glow-cyan: 0 0 20px rgba(6, 182, 212, 0.3);
    --shadow-glow-pink: 0 0 20px rgba(247, 37, 133, 0.3);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.2);

    /* Animations */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Base */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Fz Poppins", sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-body);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(247, 37, 133, 0.04) 0%, transparent 40%);
    min-height: 100vh;
}

::placeholder {
    font-family: "Fz Poppins", sans-serif;
    font-size: 14px;
    color: var(--text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Fz Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.text-center {
    text-align: center;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp, 2);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Global Elements */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--border-radius-pill);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    color: var(--neon-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
    white-space: nowrap;
}

/* ============================================
   HEADER / ANNOUNCEMENT
   ============================================ */
.announcement {
    padding: 8px 0;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    border-bottom: 1px solid var(--glass-border);
    font-weight: 500;
    font-size: 1.4rem;
}

.announcement__media {
    display: flex;
}

.announcement__media>a {
    padding: 4px 12px;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 1.6rem;
}

.announcement__media>a:hover {
    color: var(--primary-light);
    text-shadow: var(--shadow-glow-purple);
}

.announcement .container.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.announcement__ads {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    flex: 1;
    min-width: 0;
}

.announcement__ad-slot {
    width: 314px;
    height: 26px;
    flex: 0 0 220px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.announcement__ad-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement__hotline {
    color: var(--text-secondary);
    font-size: 1.3rem;
}

.announcement__hotline a {
    color: var(--neon-cyan);
    font-weight: 700;
}

.hotline_working_hours {
    color: var(--text-muted);
    margin-left: 5px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 12px 0;
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 10, 20, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav__logo {
    height: 44px;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
    transition: var(--transition);
}

.nav__logo:hover {
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.7));
    transform: scale(1.03);
}

.nav__search {
    margin-left: 18px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 360px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.28);
    background: linear-gradient(135deg, rgba(8, 18, 34, 0.92), rgba(17, 24, 39, 0.88));
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
    transition: max-width 0.25s ease, opacity 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav__search-input {
    width: 300px;
    max-width: 100%;
    height: 38px;
    border: 1px solid rgba(125, 211, 252, 0.35);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.96);
    color: #f3f4f6;
    padding: 0 14px;
    font-size: 1.3rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav__search-input:focus {
    border-color: rgba(56, 189, 248, 0.9);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
    background: rgba(15, 23, 42, 1);
}

.nav__search-input::placeholder {
    color: #cbd5e1;
}

.nav__search-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.65);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.24), rgba(37, 99, 235, 0.2));
    color: #dbeafe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav__search-btn:hover {
    border-color: rgba(125, 211, 252, 0.95);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.36), rgba(37, 99, 235, 0.3));
    color: #ffffff;
    transform: translateY(-1px);
}

.nav__search:focus-within {
    border-color: rgba(125, 211, 252, 0.72);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.24), 0 0 0 1px rgba(125, 211, 252, 0.28) inset;
}

.nav__menu {
    display: flex;
    margin-left: auto;
    align-items: center;
}

.menu__item {
    padding: 10px 18px;
    font-weight: 600;
    font-size: 1.4rem;
    transition: var(--transition);
    position: relative;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.menu__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--neon-cyan));
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.menu__item:hover::after,
.menu__item.active::after {
    width: 80%;
    left: 10%;
}

.menu__item:hover,
.menu__item.active {
    color: var(--primary-light);
}

.nav__action {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action__link {
    text-align: center;
    padding: 9px 20px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--border-radius-pill);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.action__link:hover {
    border-color: var(--primary-color);
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: var(--shadow-glow-purple);
}

.action__link.action__link--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

.action__link--primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* Nav logout button */
.nav__action form button.action__link {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: white !important;
    border: none !important;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    padding: 9px 20px;
    border-radius: var(--border-radius-pill);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

.nav__action form button.action__link:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5) !important;
}

/* Profile dropdown quick menu */
.profile-dropdown {
    position: relative;
}

.profile-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 9px 14px;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(139, 92, 246, 0.25);
    background: rgba(139, 92, 246, 0.08);
    transition: var(--transition);
}

.profile-dropdown__trigger:hover {
    color: var(--primary-light);
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.14);
}

.profile-dropdown__caret {
    font-size: 1.2rem;
    opacity: 0.8;
}

.profile-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(12, 14, 28, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.2s ease;
    z-index: 1200;
}

.profile-dropdown:hover .profile-dropdown__menu,
.profile-dropdown:focus-within .profile-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    text-align: left;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 1.35rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.profile-dropdown__item:hover {
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.12);
}

.profile-dropdown__logout {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 4px;
    padding-top: 6px;
}

.profile-dropdown__item--logout {
    color: #ffb4c2;
}

.profile-dropdown__item--logout:hover {
    color: #ffd2dc;
    background: rgba(255, 80, 120, 0.16);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 1.8rem;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 12px;
}

.menu-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.1);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    color: white;
}

.btn--accent {
    background: linear-gradient(135deg, var(--neon-cyan), var(--second-dark));
    color: white;
    box-shadow: var(--shadow-glow-cyan);
}

.btn--accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
    color: white;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--glass-border-hover);
    color: var(--text-primary);
    padding: 11px 28px;
}

.btn--outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.btn i {
    margin-right: 8px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-purple);
    border-color: var(--glass-border-hover);
}

.card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card__content {
    padding: 2rem;
}

.card__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card__text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--glass-border);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    margin-top: 80px;
    padding: 60px 0 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);
    color: var(--text-primary);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--neon-cyan), var(--primary-color), transparent);
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__logo {
    display: block;
    margin-bottom: 20px;
}

.footer__desc {
    margin-top: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer__social {
    margin-top: 10px;
    display: flex;
    gap: 12px;
}

.social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-circle);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 1.6rem;
    transition: var(--transition);
    color: var(--text-secondary);
}

.social__link:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--primary-color), var(--neon-cyan));
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow-purple);
}

.footer__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--neon-cyan));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer__link:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer__link:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer__contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1.4rem;
}

.contact__item i {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius-circle);
    color: var(--primary-light);
    font-size: 1.4rem;
}

.footer__bottom {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer__payment {
    display: flex;
    gap: 15px;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
}

.payment__img {
    height: 28px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px;
    transition: transform 0.3s ease;
}

.payment__img:hover {
    transform: translateY(-3px);
}

.footer__copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.3rem;
}

.footer__copyright a {
    color: var(--primary-light);
    font-weight: 600;
}

.footer__copyright a:hover {
    color: var(--neon-cyan);
    text-decoration: none;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
    display: none;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--primary-light);
    margin-left: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--glass-border);
    padding: 20px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(-320px);
}

body.no-scroll {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu__close {
    font-size: 2.4rem;
    color: var(--primary-light);
    cursor: pointer;
    text-align: right;
    margin-bottom: 20px;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__item {
    padding: 12px 15px;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: var(--transition);
    border-radius: var(--border-radius-sm);
}

.mobile-menu__item:hover {
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

.mobile-menu__actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: var(--border-radius-md);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Service Alerts */
.service__alert {
    display: flex;
    gap: 15px;
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    border: 1px solid;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.service__alert i {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.service__alert-content {
    flex: 1;
}

.service__alert--success {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--primary-light);
}

.service__alert--success i {
    color: var(--primary-color);
}

.service__alert--error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.service__alert--error i {
    color: var(--danger);
}

.service__alert--error ul {
    margin-top: 5px;
    padding-left: 20px;
}

.service__alert--error li {
    margin-bottom: 3px;
}

.service__alert--warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

.service__alert--warning i {
    color: var(--neon-yellow);
}

.service__alert-close {
    position: absolute;
    top: 12px;
    right: 15px;
    border: none;
    background: none;
    color: inherit;
    opacity: 0.6;
    cursor: pointer;
    font-size: 20px;
    transition: opacity 0.2s;
}

.service__alert-close:hover {
    opacity: 1;
}

/* ============================================
   STATUS BADGES
   ============================================ */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid;
}

.status-badge.success {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #34d399;
}

.status-badge.error {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.status-badge.processing {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

.status-badge.info {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.4);
    color: var(--neon-cyan);
}

.status-badge.secondary {
    background: rgba(100, 116, 139, 0.15);
    border-color: rgba(100, 116, 139, 0.4);
    color: var(--text-secondary);
}

/* ============================================
   TEXT UTILITIES
   ============================================ */
.text-success {
    color: #34d399 !important;
}

.text-danger {
    color: #f87171 !important;
}

.text-bold {
    font-weight: 600 !important;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: right;
    margin-top: 20px;
    gap: 6px;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.4rem;
}

.pagination-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.1);
}

.pagination-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .container {
        max-width: calc(100% - 40px);
    }

    .nav {
        padding: 10px 0;
    }

    .nav__search {
        display: none;
    }

    .nav__menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav__action {
        display: none;
    }

    .action__link {
        font-size: 1.4rem;
        padding: 8px 15px;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .nav {
        padding: 15px 0;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .announcement {
        padding: 5px 0;
    }

    .nav {
        position: relative;
        padding: 15px 0;
    }

    .nav .container.row {
        flex-wrap: wrap;
    }

    .nav__logo {
        height: 36px;
    }

    .nav__menu {
        display: none;
    }

    .nav__action {
        display: none;
    }

    .mobile-menu-toggle {
        margin-right: 0;
        display: block;
    }

    .footer {
        margin-top: 60px;
        padding: 40px 0 0;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__column:first-child {
        text-align: center;
    }

    .footer__column:first-child .footer__logo {
        margin: 0 auto 20px;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__title {
        text-align: center;
    }

    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__links {
        align-items: center;
    }

    .contact__item {
        justify-content: center;
    }

    .announcement__hotline {
        font-size: 1.3rem;
    }

    .hotline_working_hours {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: calc(100% - 30px);
    }

    .nav__action {
        gap: 10px;
    }

    .action__link {
        width: 100%;
        padding: 6px 10px;
    }
}