/* ==========================================================================
   HIDOMU ONLINE - PRO ESPORTS & MMORPG STYLESHEET
   Season 6 Episode 3 Cross-Platform (PC & Mobile)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Rajdhani:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #06080c;
    --bg-card: rgba(13, 17, 26, 0.88);
    --bg-card-border: rgba(245, 175, 25, 0.28);
    --gold-primary: #f5af19;
    --gold-secondary: #e17009;
    --fire-red: #ff3b00;
    --fire-glow: rgba(255, 59, 0, 0.45);
    --cyan-magic: #00d2ff;
    --cyan-glow: rgba(0, 210, 255, 0.4);
    --purple-magic: #a855f7;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --font-title: 'Cinzel', serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 50% 5%, rgba(245, 175, 25, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 10% 30%, rgba(255, 59, 0, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 50%, rgba(0, 210, 255, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, #06080c 0%, #0a0e17 50%, #06080c 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #06080c;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-secondary), var(--fire-red));
    border-radius: 4px;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.hidomu-top-bar {
    background: rgba(8, 10, 15, 0.94);
    border-bottom: 1px solid rgba(245, 175, 25, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.75);
    height: 62px;
    display: flex;
    align-items: center;
}

.hidomu-nav-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    gap: 12px;
}

.hidomu-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.hidomu-brand-logo {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold-primary), var(--fire-red));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(245, 175, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.hidomu-brand-text {
    font-family: var(--font-title);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 1.8px;
    white-space: nowrap;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-primary) 55%, var(--fire-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(245, 175, 25, 0.45));
}

.hidomu-nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hidomu-nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    list-style: none;
    gap: 6px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hidomu-nav-links li {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.hidomu-nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 6px;
    white-space: nowrap;
    line-height: 1;
}

.hidomu-nav-links a i {
    font-size: 13px;
    color: var(--gold-primary);
    opacity: 0.85;
    transition: all 0.2s ease;
}

.hidomu-nav-links a:hover, 
.hidomu-nav-links a.active {
    color: #ffffff;
    background: rgba(245, 175, 25, 0.12);
    text-shadow: 0 0 10px rgba(245, 175, 25, 0.6);
}

.hidomu-nav-links a:hover i {
    opacity: 1;
    transform: scale(1.1);
    color: #ffaa00;
}

.hidomu-nav-login {
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #e2e8f0 !important;
}

.hidomu-nav-login:hover {
    border-color: var(--gold-primary) !important;
    color: #fff !important;
    background: rgba(245, 175, 25, 0.15) !important;
}

.hidomu-nav-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%) !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 6px;
    font-weight: 800 !important;
    box-shadow: 0 2px 14px rgba(239, 68, 68, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    white-space: nowrap !important;
}

.hidomu-nav-btn i {
    color: #ffffff !important;
    opacity: 1 !important;
}

.hidomu-nav-btn:hover {
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.7) !important;
    transform: translateY(-1px);
    background: linear-gradient(135deg, #fbbf24 0%, #dc2626 100%) !important;
}

/* ==========================================================================
   PRO HERO SLIDER
   ========================================================================== */
.hidomu-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    border-bottom: 2px solid rgba(245, 175, 25, 0.3);
    box-shadow: inset 0 -80px 100px -20px var(--bg-dark);
}

.hidomu-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: scale(1.05);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
}

.hidomu-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 8, 12, 0.35) 0%, rgba(6, 8, 12, 0.82) 80%, var(--bg-dark) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 960px;
    padding: 40px 20px;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 22px;
    background: rgba(245, 175, 25, 0.16);
    border: 1px solid var(--gold-primary);
    border-radius: 30px;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    box-shadow: 0 0 20px rgba(245, 175, 25, 0.35);
    text-transform: uppercase;
}

.slide-title {
    font-family: var(--font-title);
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    background: linear-gradient(180deg, #ffffff 0%, #fbd578 45%, #ff7700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 25px rgba(255, 59, 0, 0.6));
    margin-bottom: 16px;
    text-transform: uppercase;
}

.slide-desc {
    font-size: 20px;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hidomu-cta-group {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-pc {
    background: linear-gradient(135deg, #00d2ff, #0066eb);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 25px rgba(0, 210, 255, 0.45);
}

.btn-hero-pc:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 210, 255, 0.7);
    color: #fff;
}

.btn-hero-mobile {
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.45);
}

.btn-hero-mobile:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(34, 197, 94, 0.7);
    color: #fff;
}

.btn-hero-register {
    background: linear-gradient(135deg, var(--gold-primary), var(--fire-red));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 25px rgba(255, 59, 0, 0.45);
}

.btn-hero-register:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(255, 59, 0, 0.75);
    color: #fff;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(6, 8, 12, 0.75);
    border: 1px solid rgba(245, 175, 25, 0.4);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 20px var(--gold-primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 25px; }
.slider-next { right: 25px; }

.slider-dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 36px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold-primary);
    box-shadow: 0 0 12px var(--gold-primary);
    width: 50px;
}

/* ==========================================================================
   3-CHANNEL SERVER STATUS BAR
   ========================================================================== */
.hidomu-channels-bar {
    max-width: 1360px;
    margin: -35px auto 40px;
    position: relative;
    z-index: 10;
    padding: 0 24px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.channel-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.channel-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 12px 35px rgba(245, 175, 25, 0.25);
    transform: translateY(-3px);
}

.channel-info h4 {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.channel-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-online {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.status-trade {
    background: rgba(245, 175, 25, 0.15);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.4);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.status-online .pulse-dot {
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.status-trade .pulse-dot {
    background: #facc15;
    box-shadow: 0 0 10px #facc15;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* ==========================================================================
   MAIN TWO-COLUMN LAYOUT
   ========================================================================== */
.hidomu-main-container {
    max-width: 1360px;
    margin: 0 auto 60px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 1024px) {
    .hidomu-main-container {
        grid-template-columns: 1fr;
    }
}

.hidomu-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
}

.hidomu-card-header {
    background: linear-gradient(90deg, rgba(245, 175, 25, 0.15) 0%, rgba(255, 59, 0, 0.08) 100%);
    border-bottom: 1px solid rgba(245, 175, 25, 0.25);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hidomu-card-title {
    font-family: var(--font-title);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-primary);
    text-shadow: 0 0 12px rgba(245, 175, 25, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hidomu-card-body {
    padding: 24px;
}

/* ==========================================================================
   PRO TABBED RANKINGS
   ========================================================================== */
.pro-rank-tabs {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.rank-tab-btn {
    flex: 1;
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rank-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.rank-tab-btn.active {
    background: linear-gradient(135deg, var(--gold-secondary), var(--fire-red));
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 59, 0, 0.4);
}

.rank-tab-content {
    display: none;
}

.rank-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidomu-table {
    width: 100%;
    border-collapse: collapse;
}

.hidomu-table th {
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 14px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    color: var(--gold-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hidomu-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.hidomu-table tr:hover td {
    background: rgba(245, 175, 25, 0.05);
}

.rank-badge {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 13px;
}

.rank-1 { background: #ffd700; color: #000; box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.rank-2 { background: #c0c0c0; color: #000; box-shadow: 0 0 10px rgba(192, 192, 192, 0.5); }
.rank-3 { background: #cd7f32; color: #fff; box-shadow: 0 0 10px rgba(205, 127, 50, 0.5); }
.rank-other { background: rgba(255, 255, 255, 0.1); color: #cbd5e1; }

.guild-logo-mini {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* ==========================================================================
   LIVE REAL-TIME EVENT COUNTDOWN TIMERS
   ========================================================================== */
.event-timer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-timer-item {
    background: rgba(8, 11, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.event-timer-item:hover {
    border-color: var(--gold-primary);
    background: rgba(245, 175, 25, 0.04);
}

.event-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.event-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.event-time {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--cyan-magic);
}

.event-time.active-now {
    color: #4ade80;
    animation: pulse 1.2s infinite;
}

/* ==========================================================================
   MARKET & WEBSHOP SHOWCASE
   ========================================================================== */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.market-item-card {
    background: rgba(10, 13, 20, 0.9);
    border: 1px solid rgba(245, 175, 25, 0.2);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.market-item-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 175, 25, 0.25);
}

.item-badge-rarity {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
}

.rarity-excellent {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.rarity-ancient {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid #3b82f6;
}

.item-image-wrapper {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.item-image-wrapper img {
    max-height: 95px;
    filter: drop-shadow(0 0 15px rgba(245, 175, 25, 0.5));
    transition: transform 0.3s ease;
}

.market-item-card:hover .item-image-wrapper img {
    transform: scale(1.1);
}

.item-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-buy-item {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--gold-secondary), var(--fire-red));
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-buy-item:hover {
    opacity: 0.9;
}

/* ==========================================================================
   DONATION & PAYPAL PACKAGES
   ========================================================================== */
.credit-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.credit-card {
    background: rgba(12, 16, 26, 0.9);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.credit-card:hover {
    border-color: var(--cyan-magic);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3);
    transform: translateY(-4px);
}

.credit-card.popular {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 25px rgba(245, 175, 25, 0.3);
}

.credit-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--cyan-magic);
    margin-bottom: 4px;
}

.credit-bonus {
    font-size: 12px;
    color: #4ade80;
    font-weight: 700;
    margin-bottom: 12px;
}

.credit-price {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.btn-paypal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: #0070ba;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-paypal:hover {
    background: #005ea6;
    color: #fff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.hidomu-footer {
    background: #030508;
    border-top: 2px solid rgba(245, 175, 25, 0.15);
    padding: 45px 24px;
    text-align: center;
    color: var(--text-muted);
}

.hidomu-footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.hidomu-footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.hidomu-footer-links a:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   WEBENGINE MODULES & FORMS (ULTRA LUXURY GAMING UI)
   ========================================================================== */
.page-title {
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid rgba(245, 175, 25, 0.25);
    position: relative;
}

.page-title span {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-primary) 60%, var(--fire-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(245, 175, 25, 0.4));
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--fire-red));
    border-radius: 2px;
}

/* Form Container & Layout */
.col-xs-8.col-xs-offset-2 {
    width: 100% !important;
    max-width: 540px !important;
    margin: 20px auto 35px auto !important;
    float: none !important;
}

.form-horizontal {
    background: rgba(11, 15, 25, 0.85);
    border: 1px solid rgba(245, 175, 25, 0.22);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-label, label {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    text-align: left !important;
    display: block;
    margin-bottom: 2px;
}

/* High-end Glowing Form Inputs */
.form-control,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100% !important;
    height: 48px !important;
    background: rgba(6, 9, 15, 0.85) !important;
    border: 1.5px solid rgba(51, 65, 85, 0.8) !important;
    border-radius: 8px !important;
    padding: 0 16px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-family: inherit !important;
    transition: all 0.25s ease !important;
    outline: none !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
    box-sizing: border-box !important;
}

.form-control:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: #f59e0b !important;
    background: rgba(15, 23, 42, 0.95) !important;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.35), inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
}

/* Helper Text & Forgot Password Links */
.help-block {
    font-size: 12.5px;
    color: #94a3b8;
    margin-top: 6px;
    display: block;
}

.help-block a {
    color: #38bdf8 !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.help-block a:hover {
    color: #f59e0b !important;
    text-decoration: underline !important;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

/* Submit & Primary Buttons */
.btn,
.btn-primary,
button[type="submit"],
input[type="submit"] {
    width: 100% !important;
    height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%) !important;
    color: #ffffff !important;
    font-family: var(--font-heading) !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 18px rgba(239, 68, 68, 0.45) !important;
    margin-top: 14px !important;
}

.btn:hover,
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.7) !important;
    background: linear-gradient(135deg, #fbbf24 0%, #dc2626 100%) !important;
}

/* Alert Notification Badges */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-danger {
    background: rgba(220, 38, 38, 0.15) !important;
    border: 1px solid #ef4444 !important;
    color: #fca5a5 !important;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.alert-success {
    background: rgba(34, 197, 94, 0.15) !important;
    border: 1px solid #22c55e !important;
    color: #86efac !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.alert-info {
    background: rgba(56, 189, 248, 0.15) !important;
    border: 1px solid #38bdf8 !important;
    color: #bae6fd !important;
}

/* WebEngine Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.table th {
    background: rgba(245, 175, 25, 0.12);
    color: var(--gold-primary);
    padding: 12px 16px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    border-bottom: 2px solid rgba(245, 175, 25, 0.3);
    text-align: left;
}

.table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    font-size: 14px;
}

.table tbody tr:hover {
    background: rgba(245, 175, 25, 0.06);
}

