:root {
    --discord-blurple: #5865f2;
    --discord-dark: #313338;
    --discord-darker: #2b2d31;
    --discord-darkest: #1e1f22;
    --discord-text: #f2f3f5;
    --discord-grey: #949ba4;
    --habron-accent: #00d2ff; /* A slightly different accent for Habron */
    --habron-bg: #0a0b0d; /* Premium deep dark */
}

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

body {
    font-family: 'Geist', sans-serif;
    background-color: var(--discord-dark);
    color: var(--discord-text);
    overflow-x: hidden;
}

/* =========================================
   HABRON LANDING PAGE PREMIUM STYLES
   ========================================= */

/* Navbar */
.hb-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.hb-navbar.scrolled {
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 5%;
}

.hb-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hb-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    color: var(--discord-blurple);
    fill: rgba(88, 101, 242, 0.2);
}

.hb-nav-links {
    display: flex;
    gap: 32px;
}

.hb-nav-links a {
    color: var(--discord-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.hb-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--discord-blurple);
    transition: width 0.3s ease;
}

.hb-nav-links a:hover {
    color: #ffffff;
}

.hb-nav-links a:hover::after {
    width: 100%;
}

.hb-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hb-btn-text {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.hb-btn-text:hover {
    color: var(--discord-blurple);
}

.hb-btn-primary {
    background: var(--discord-blurple);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hb-btn-primary:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

.hb-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hb-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hb-btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hb-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 5% 80px;
    position: relative;
    overflow: hidden;
    background: var(--habron-bg);
}

.hb-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--discord-blurple);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #00d2ff;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.hb-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px 6px 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--discord-grey);
    backdrop-filter: blur(10px);
}

.badge-new {
    background: var(--discord-blurple);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(135deg, #5865f2 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--discord-grey);
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

/* Mockup */
.hero-mockup {
    width: 100%;
    max-width: 900px;
    perspective: 1000px;
    margin-top: 40px;
    animation: fadeUpIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fadeUpIn {
    to { opacity: 1; transform: translateY(0); }
}

.mockup-window {
    background: var(--discord-darker);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: rotateX(5deg) scale(0.95);
    transition: transform 0.5s ease;
}

.hero-mockup:hover .mockup-window {
    transform: rotateX(0deg) scale(1);
}

.mockup-header {
    height: 32px;
    background: var(--discord-darkest);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-body {
    display: flex;
    height: 350px;
}

.mockup-sidebar {
    width: 72px;
    background: var(--discord-darkest);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 12px;
}

.mockup-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--discord-dark);
    transition: border-radius 0.2s;
}

.mockup-icon.active, .mockup-icon:hover {
    border-radius: 16px;
    background: var(--discord-blurple);
}

.mockup-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--discord-dark);
}

.mockup-line {
    height: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}
.w-70 { width: 70%; }
.w-40 { width: 40%; }
.w-90 { width: 90%; }
.w-60 { width: 60%; }

.mockup-message {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.mockup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--discord-blurple);
}

.mockup-message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Features Section */
.hb-features {
    padding: 120px 5%;
    background: var(--discord-darkest);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--discord-grey);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--discord-darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(88, 101, 242, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(88, 101, 242, 0.1);
    color: var(--discord-blurple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-icon-wrapper.green { background: rgba(35, 165, 89, 0.1); color: #23a559; }
.feature-icon-wrapper.orange { background: rgba(242, 163, 60, 0.1); color: #f2a33c; }
.feature-icon-wrapper.pink { background: rgba(235, 69, 158, 0.1); color: #eb459e; }

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: var(--discord-grey);
    line-height: 1.6;
    font-size: 16px;
}

/* CTA Section */
.hb-cta-section {
    padding: 100px 5%;
    background: var(--discord-dark);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--discord-blurple) 0%, #4752c4 100%);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(88, 101, 242, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CgkJPGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPgoJPC9zdmc+') repeat;
    opacity: 0.5;
}

.cta-container h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-container p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-container .hb-btn-primary {
    background: #ffffff;
    color: var(--discord-blurple);
    position: relative;
    z-index: 1;
}

.cta-container .hb-btn-primary:hover {
    background: #f2f3f5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.hb-footer {
    background: var(--discord-darker);
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--discord-grey);
    line-height: 1.6;
}

.footer-links-group {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column h4 {
    color: var(--discord-blurple);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--discord-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--discord-grey);
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--discord-text);
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--discord-blurple);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hb-nav-links {
        display: none;
    }
    
    .hb-nav-actions .hb-btn-text {
        display: none;
    }
    
    .footer-links-group {
        gap: 40px;
    }
}

/* Auth Pages (Login / Register) */
.hb-auth-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1e1f22 0%, #111214 100%);
    padding: 20px;
}

.hb-auth-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    animation: fadeUpIn 0.5s ease forwards;
}

.hb-auth-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--discord-blurple);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.hb-auth-card {
    background: var(--discord-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hb-auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.hb-auth-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.hb-auth-header p {
    color: var(--discord-grey);
    font-size: 15px;
}

.hb-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hb-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hb-form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--discord-grey);
    letter-spacing: 0.5px;
}

.hb-form-group input, .hb-input {
    width: 100%;
    background: var(--discord-darkest);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.hb-form-group textarea.hb-input {
    resize: vertical;
    min-height: 80px;
}

.hb-form-group select.hb-input {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23949ba4" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"></path></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.hb-form-group input:focus, .hb-input:focus {
    border-color: var(--discord-blurple);
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.2);
}

.hb-form-group input:disabled, .hb-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hb-forgot-link {
    font-size: 13px;
    color: #00a8fc;
    text-decoration: none;
    margin-top: 4px;
}

.hb-forgot-link:hover {
    text-decoration: underline;
}

.hb-btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
    margin-top: 8px;
    cursor: pointer;
}

.hb-auth-footer {
    margin-top: 24px;
    font-size: 14px;
    color: var(--discord-grey);
}

.hb-auth-footer a {
    color: var(--discord-blurple);
    text-decoration: none;
    font-weight: 600;
}

.hb-auth-footer a:hover {
    text-decoration: underline;
}


/* =========================================
   APP-LIKE DASHBOARD SYSTEM
   ========================================= */
.hb-dashboard-body {
    background: var(--discord-darkest);
    height: 100vh;
    overflow: hidden;
}

.hb-dashboard-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.hb-sidebar {
    width: 240px;
    background: var(--discord-darkest);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.hb-sidebar-header {
    height: 60px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hb-sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    overflow-y: auto;
}

.nav-section { margin-bottom: 24px; }
.nav-section h4 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--discord-grey);
    padding: 0 8px;
    margin-bottom: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 4px;
    color: var(--discord-grey);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.15s ease;
    cursor: pointer;
    margin-bottom: 2px;
}

.nav-item:hover { background: rgba(255,255,255,0.05); color: #fff; }
.nav-item.active { background: rgba(255,255,255,0.08); color: #fff; }

.hb-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--discord-dark);
    position: relative;
    overflow: hidden;
}

.hb-topbar {
    height: 60px;
    background: var(--discord-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.hb-content-area {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding: 0;
}

.tab-content {
    display: none;
    padding: 30px;
    animation: appFadeIn 0.3s ease-out;
}
.tab-content.active { display: block; }

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

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--discord-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Custom UI Components (Toasts & Modals) */
#hb-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hb-toast {
    background: rgba(43, 45, 49, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideInRight 0.3s ease;
}

.hb-toast-success { border-left: 4px solid #23a559; }
.hb-toast-error { border-left: 4px solid #f23f42; }

.hb-toast.fade-out {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hb-custom-modal-overlay {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: rgba(0,0,0,0.7) !important;
    backdrop-filter: blur(4px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hb-custom-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.hb-custom-modal {
    background: #313338;
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.hb-custom-modal-overlay.active .hb-custom-modal {
    transform: scale(1);
}

.hb-custom-modal-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hb-custom-modal-header h3 { margin: 0; font-size: 18px; color: #fff; }
.hb-custom-modal-body { padding: 24px; color: #dbdee1; font-size: 15px; line-height: 1.5; }
.hb-custom-modal-footer { padding: 16px; background: #2b2d31; display: flex; justify-content: flex-end; gap: 12px; }

.stat-info h3 {
    font-size: 14px;
    color: var(--discord-grey);
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-info .number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.panel {
    background: var(--discord-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.panel-body {
    padding: 24px;
}

.panel-body.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.empty-icon {
    width: 64px;
    height: 64px;
    color: var(--discord-grey);
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state p {
    color: var(--discord-grey);
    margin-bottom: 24px;
}

/* Modal Styles */
.hb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.hb-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.hb-modal-content {
    background: var(--discord-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.hb-modal.active .hb-modal-content {
    transform: translateY(0);
}

.hb-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hb-modal-header h3 {
    font-size: 18px;
    color: #fff;
}

.close-btn {
    background: none;
    border: none;
    color: var(--discord-grey);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hb-modal-body {
    padding: 24px;
}

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

@media (max-width: 768px) {
    .hb-sidebar { position: fixed; left: -280px; z-index: 1000; height: 100%; transition: left 0.3s; }
    .hb-sidebar.active { left: 0; }
}
.auth-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--discord-dark);
}

.auth-master-container {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--discord-dark); /* Same as body */
}

/* The shapes that look like "wells" or "cutouts" */
.auth-shape-left {
    flex: 0 0 30%; /* Narrower, close to 9:16 vibe */
    background: url('https://images.unsplash.com/photo-1614850523296-e81109eead9f?q=80&w=2070&auto=format&fit=crop') center/cover;
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

.auth-shape-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.auth-logo-text {
    position: relative;
    z-index: 10;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.auth-shape-right {
    flex: 1; /* Wider, 16:9 vibe */
    background-color: var(--discord-darker);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.auth-form h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.auth-form p {
    color: var(--discord-grey);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--discord-grey);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: var(--discord-darkest);
    border: none;
    border-radius: 5px;
    color: #fff;
    outline: none;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: var(--discord-blurple);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.auth-btn:hover {
    background: #4752c4;
}

.auth-footer {
    margin-top: 20px;
    font-size: 14px;
    color: var(--discord-grey);
}

.auth-footer a {
    color: #00a8fc;
    text-decoration: none;
}

/* Community Dashboard Styles */
.dashboard-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    background-color: var(--discord-darkest);
}

.sidebar-servers {
    width: 72px;
    background-color: var(--discord-darkest);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.server-icon {
    width: 48px;
    height: 48px;
    background-color: var(--discord-darker);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    color: var(--discord-text);
}

.server-icon:hover, .server-icon.active {
    border-radius: 16px;
    background-color: var(--discord-blurple);
    color: #fff;
}

.sidebar-channels {
    width: 240px;
    background-color: var(--discord-darker);
    border-top-left-radius: 8px;
    display: flex;
    flex-direction: column;
}

.channel-header {
    padding: 12px 16px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    font-weight: 700;
}

.channel-list {
    flex: 1;
    padding: 10px 8px;
    overflow-y: auto;
}

.channel-item {
    padding: 6px 8px;
    border-radius: 4px;
    color: var(--discord-grey);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.channel-item:hover, .channel-item.active {
    background-color: rgba(78, 80, 88, 0.3);
    color: #fff;
}

.chat-area {
    flex: 1;
    background-color: var(--discord-dark);
    display: flex;
    flex-direction: column;
}

.chat-header {
    height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    font-weight: 600;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message {
    display: flex;
    gap: 16px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--discord-blurple);
}

.message-content {
    flex: 1;
}

.message-user {
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.message-time {
    font-size: 12px;
    color: var(--discord-grey);
    font-weight: 400;
}

.chat-input-wrapper {
    padding: 0 16px 24px 16px;
}

.chat-input-container {
    background-color: #383a40;
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.chat-input-container input {
    background: transparent;
    border: none;
    color: #fff;
    flex: 1;
    outline: none;
}

.sidebar-users {
    width: 240px;
    background-color: var(--discord-darker);
    padding: 20px 16px;
}

.user-list-section {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--discord-grey);
    margin-bottom: 12px;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--discord-grey);
}

.user-item:hover {
    background-color: rgba(78, 80, 88, 0.3);
    color: #fff;
}

/* =========================================
   HABRON PREMIUM DASHBOARD STYLES
   ========================================= */

.hb-premium-layout {
    display: flex;
    height: 100vh;
    background: #0b0c0e !important;
    color: #fff !important;
}

.hb-sidebar {
    width: 240px;
    background: #09090b !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    display: flex;
    flex-direction: column;
    padding: 24px 16px !important;
    overflow-y: auto;
    flex-shrink: 0;
    z-index: 1000;
}

.sidebar-logo {
    padding: 0 12px 24px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: #fff !important;
    text-decoration: none !important;
    letter-spacing: -0.5px;
}

.sidebar-logo i {
    width: 24px;
    height: 24px;
    color: #38bdf8 !important;
}

.sidebar-group {
    margin-bottom: 24px;
}

.sidebar-label {
    padding: 0 12px 10px !important;
    font-size: 10px;
    font-weight: 700;
    color: #4b5563 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px !important;
    color: #9ca3af !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px !important;
    border-left: none !important;
    margin-bottom: 2px;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}

.sidebar-item.active {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}

.sidebar-item i {
    width: 18px;
    height: 18px;
    color: inherit;
}

.hb-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: radial-gradient(circle at top right, rgba(88, 101, 242, 0.05), transparent) !important;
}

.hb-header {
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 12, 14, 0.8) !important;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.breadcrumb {
    font-size: 13px;
    color: #555 !important;
    display: flex;
    gap: 8px;
}

.breadcrumb span {
    color: #888 !important;
}

.breadcrumb b {
    color: #fff !important;
}

.content-body {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.premium-banner {
    background: linear-gradient(135deg, #2b1d12 0%, #1a1410 100%) !important;
    border: 1px solid rgba(255, 172, 51, 0.2) !important;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(25, 27, 31, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    padding: 24px;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none !important;
    color: inherit !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #5865f2 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-card h4 {
    margin: 0;
    color: #fff !important;
}

.feature-card p {
    margin: 0;
    color: #888 !important;
    font-size: 13px;
    line-height: 1.5;
}

.dash-section {
    display: none;
}

.dash-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* =========================================
   HABRON PREMIUM DASHBOARD STYLES
   ========================================= */

.hb-premium-layout {
    display: flex;
    height: 100vh;
    background: #0b0c0e;
}

.hb-sidebar {
    width: 260px;
    background: #111214;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-logo {
    padding: 0 24px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.sidebar-group {
    margin-bottom: 24px;
}

.sidebar-label {
    padding: 0 24px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    color: #b9bbbe;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.sidebar-item.active {
    background: rgba(88, 101, 242, 0.1);
    color: #fff;
    border-left-color: #5865f2;
}

.hb-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: radial-gradient(circle at top right, rgba(88, 101, 242, 0.05), transparent);
}

.hb-header {
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 12, 14, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.breadcrumb {
    font-size: 13px;
    color: #555;
    display: flex;
    gap: 8px;
}

.breadcrumb span {
    color: #888;
}

.content-body {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.premium-banner {
    background: linear-gradient(135deg, #2b1d12 0%, #1a1410 100%);
    border: 1px solid rgba(255, 172, 51, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(25, 27, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #5865f2;
}

.dash-section {
    display: none;
}

.dash-section.active {
    display: block;
}
