/* ==========================================================================
   Zuni Prompt - Global Visual Style & Reset
   ========================================================================== */

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

body {
    background-color: #191d29;
    color: #8a9bb8;
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll on the document body itself */
}

/* ==========================================================================
   Typography & Typography Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Press Start 2P', cursive;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

strong {
    color: #ffffff;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Header / Navbar */
.header {
    border-bottom: 1px solid #2e374d;
    padding: 1.5rem 0;
    background-color: #151822;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center; /* Center-aligned */
    align-items: center;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
}

.logo-badge {
    background-color: #7a1515; /* dark-red/maroon badge */
    color: #ffffff;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 2px;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.3);
    border: 1px solid #a61c1c;
}

/* Hero Section */
.hero-section {
    padding: 7rem 1rem 5rem 1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge-pill {
    display: inline-block;
    border: 1px solid #00ff9d; /* green outlined pill/badge */
    color: #00ff9d;
    background-color: transparent;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 255, 157, 0.15);
}

.hero-title {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 18px;
        line-height: 1.6;
    }
}

.hero-description {
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto;
    color: #8a9bb8;
    text-align: center;
}

.hero-description strong {
    color: #00ff9d;
}

/* Three-Card Feature Row */
.features-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.feature-card {
    background-color: #12151e;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.card-header {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.card-icon {
    width: 18px;
    height: 18px;
}

.card-title {
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.results-line {
    font-weight: bold;
    color: #ffffff;
    font-size: 13px;
}

.card-body-text {
    font-size: 13px;
    color: #8a9bb8;
    line-height: 1.6;
}

/* Custom Card Color Themes */
/* Teal Card */
.card-teal {
    border: 1px solid rgba(47, 111, 102, 0.4);
}
.card-teal .card-header {
    background-color: #2f6f66;
}
.card-teal:hover {
    box-shadow: 0 10px 30px rgba(47, 111, 102, 0.2);
    border-color: #2f6f66;
}

/* Purple Card */
.card-purple {
    border: 1px solid rgba(107, 63, 160, 0.4);
}
.card-purple .card-header {
    background-color: #6b3fa0;
}
.card-purple:hover {
    box-shadow: 0 10px 30px rgba(107, 63, 160, 0.2);
    border-color: #6b3fa0;
}

/* Orange Card */
.card-orange {
    border: 1px solid rgba(181, 101, 29, 0.4);
}
.card-orange .card-header {
    background-color: #b5651d;
}
.card-orange:hover {
    box-shadow: 0 10px 30px rgba(181, 101, 29, 0.2);
    border-color: #b5651d;
}

/* ==========================================================================
   Comparisons & Mockups Sections
   ========================================================================== */

.comparison-section {
    padding: 6rem 0;
    border-top: 1px solid #2e374d;
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-title {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .comparison-title {
        font-size: 13px;
        line-height: 1.6;
    }
}

.comparison-subtitle {
    font-size: 13px;
    color: #5d6d88;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.comparison-card {
    background-color: #12151e;
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    width: 100%;
}

@media (max-width: 480px) {
    .comparison-card {
        padding: 1.5rem 1rem;
    }
}

.border-green {
    border: 1px solid #2f6f66;
}

.border-red {
    border: 1px solid #a63f3f;
}

.comparison-card-tag {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.text-green {
    color: #00ff9d;
}

.text-red {
    color: #ff5252;
}

.comparison-card-desc {
    margin-top: 2rem;
    font-size: 13px;
    color: #8a9bb8;
    text-align: center;
    line-height: 1.6;
}

/* --- iOS and WhatsApp Mockup Layouts --- */

.phone-mockup {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 12px;
    border: 8px solid #242938;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
    color: #000000;
}

@media (max-width: 480px) {
    .phone-mockup {
        border-width: 4px;
        border-radius: 8px;
    }
}

.phone-status-bar {
    background-color: #f7f7f7;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    color: #333;
}

@media (max-width: 480px) {
    .phone-status-bar {
        padding: 6px 10px;
        font-size: 10px;
    }
}

.phone-header {
    background-color: #ffffff;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 480px) {
    .phone-header {
        padding: 8px 10px;
    }
}

.phone-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #000;
    letter-spacing: normal;
    text-transform: none;
}

@media (max-width: 480px) {
    .phone-title {
        font-size: 15px;
    }
}

.btn-text {
    color: #007aff;
    font-size: 15px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (max-width: 480px) {
    .btn-text {
        font-size: 13px;
    }
}

.btn-text svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

/* Chat Rows */
.chat-row {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f2f2f2;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
}

@media (max-width: 480px) {
    .chat-row {
        padding: 10px 8px 10px 12px;
        gap: 8px;
    }
}

.unread-dot {
    width: 8px;
    height: 8px;
    background-color: #007aff;
    border-radius: 50%;
    position: absolute;
    left: 4px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e5e5ea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

@media (max-width: 480px) {
    .avatar {
        width: 38px;
        height: 38px;
    }
}

.avatar-adam {
    background-image: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&q=80&w=200'); /* Sample avatar replacement */
    background-size: cover;
    background-position: center;
}

.avatar-placeholder {
    color: #8e8e93;
}

.chat-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0; /* Important for text truncation inside flexbox */
}

.chat-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-name {
    font-weight: 600;
    font-size: 15px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .chat-name {
        font-size: 13px;
    }
}

.chat-time {
    font-size: 12px;
    color: #8e8e93;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .chat-time {
        font-size: 10px;
    }
}

.chat-preview {
    font-size: 13px;
    color: #8e8e93;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: none;
}

@media (max-width: 480px) {
    .chat-preview {
        font-size: 11px;
    }
}

.spam-badge {
    background-color: #ff3b30;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    display: inline-block;
}

/* WhatsApp Specific Mockup */
.wa-mockup {
    background-color: #0b141a;
    color: #e9edef;
}

.wa-mockup .phone-status-bar {
    background-color: #0b141a;
    color: #e9edef;
    border-bottom: none;
}

.wa-mockup .phone-header {
    background-color: #0b141a;
    border-bottom: none;
    color: #e9edef;
}

.wa-mockup .phone-title {
    color: #e9edef;
}

.wa-mockup .btn-text {
    color: #8696a0;
}

.wa-mockup .header-icons {
    display: flex;
    gap: 1.25rem;
    color: #8696a0;
}

.wa-mockup .header-icons svg {
    width: 20px;
    height: 20px;
}

.wa-filters {
    padding: 8px 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-bottom: 1px solid #222d34;
    scrollbar-width: none; /* Hide scrollbar for clean UI */
}

.wa-filters::-webkit-scrollbar {
    display: none;
}

.wa-filter {
    background-color: #202c33;
    color: #8696a0;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.wa-filter svg {
    width: 12px;
    height: 12px;
}

.wa-filter.active {
    background-color: #0a3321;
    color: #00a884;
}

.wa-mockup .chat-row {
    background-color: #0b141a;
    border-bottom: 1px solid #222d34;
    color: #e9edef;
}

.wa-mockup .chat-name {
    color: #e9edef;
}

.wa-mockup .chat-preview {
    color: #8696a0;
}

.verified-icon {
    width: 14px;
    height: 14px;
    color: #00a884;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}

.unread-badge {
    background-color: #00a884;
    color: #0b141a;
    font-weight: bold;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    flex-shrink: 0;
}

.text-wa-green {
    color: #00a884 !important;
}

.warn-icon {
    color: #e1b000;
    font-size: 11px;
    font-weight: bold;
}

/* Chat Threads / Conversations Mocks */
.chat-thread-mockup {
    display: flex;
    flex-direction: column;
    height: 480px;
}

@media (max-width: 480px) {
    .chat-thread-mockup {
        height: 400px;
    }
}

.chat-thread-header {
    background-color: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.back-btn {
    color: #007aff;
    font-size: 13px;
}

.thread-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e5e5ea;
}

.thread-name {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-top: 2px;
}

.call-icons {
    color: #007aff;
    font-size: 14px;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (max-width: 480px) {
    .chat-messages {
        padding: 10px;
        gap: 6px;
    }
}

.date-divider {
    text-align: center;
    font-size: 10px;
    color: #8e8e93;
    margin: 8px 0;
    text-transform: uppercase;
}

.msg {
    max-width: 75%;
    padding: 8px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
    text-transform: none;
}

@media (max-width: 480px) {
    .msg {
        font-size: 11px;
        padding: 6px 10px;
    }
}

.bubble-blue {
    background-color: #007aff;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bubble-grey {
    background-color: #e5e5ea;
    color: #000000;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.status-read {
    position: relative;
}

.status-read::after {
    content: 'Read 2:38 PM';
    display: block;
    font-size: 9px;
    color: #8e8e93;
    text-align: right;
    margin-top: 2px;
}

/* Spam warning box in Bot thread */
.spam-report-container {
    align-self: center;
    width: 100%;
    background-color: #fff9f9;
    border: 1px solid #ffe5e5;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
}

.spam-text {
    font-size: 11px;
    color: #e03c3c;
    margin-bottom: 8px;
}

.btn-report-spam {
    background-color: #ff3b30;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
}

/* ==========================================================================
   Mac OS Window Mocks (iCloud & Meta sections)
   ========================================================================== */

.icloud-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.mac-window {
    background-color: #1a1e29;
    border: 1.5px solid #2e374d;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.mac-titlebar {
    background-color: #212736;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1.5px solid #2e374d;
}

.mac-dots {
    display: flex;
    gap: 6px;
}

.mac-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.mac-title {
    color: #8a9bb8;
    font-size: 10px;
    font-family: 'Space Mono', monospace;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.mac-content {
    padding: 1.5rem;
    color: #ffffff;
}

@media (max-width: 480px) {
    .mac-content {
        padding: 1rem;
    }
}

.icloud-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #2e374d;
    margin-bottom: 1rem;
}

.avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2e374d;
    background-size: cover;
    background-position: center;
    border: 2px solid #00ff9d;
    flex-shrink: 0;
}

.avatar-dave {
    background-image: url('https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?auto=format&fit=crop&q=80&w=200');
    border-color: #8a9bb8;
}

.avatar-eugene {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&q=80&w=200');
    border-color: #00ff9d;
}

.icloud-details {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    min-width: 0;
}

.label-name {
    font-weight: bold;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkmark-row {
    color: #00ff9d;
    font-size: 11px;
    margin-bottom: 2px;
}

.checkmark-row span {
    font-weight: bold;
}

.setting-row {
    color: #8a9bb8;
    font-size: 11px;
}

.icloud-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.icloud-item {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(46, 55, 77, 0.5);
    color: #8a9bb8;
    gap: 8px;
}

.icloud-item strong {
    color: #ffffff;
    text-align: right;
}

/* WhatsApp Limits / Verification styles */
.whatsapp-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .whatsapp-meta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.limit-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.limit-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
    overflow-x: auto;
    gap: 8px;
}

.limit-steps::-webkit-scrollbar {
    height: 4px;
}

.limit-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2e374d;
    z-index: 1;
    transform: translateY(-50%);
}

.limit-step {
    background-color: #212736;
    border: 1px solid #2e374d;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 10px;
    color: #8a9bb8;
    z-index: 2;
    position: relative;
    white-space: nowrap;
}

.unlimited-step {
    border-color: #00ff9d;
    background-color: rgba(0, 255, 157, 0.05);
    color: #ffffff;
    font-weight: bold;
}

.pill-active {
    background-color: #00ff9d;
    color: #12151e;
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 2px;
    margin-left: 4px;
}

.quality-rating-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 11px;
}

.rating-label {
    color: #8a9bb8;
}

.quality-bar {
    flex-grow: 1;
    height: 6px;
    background-color: #2e374d;
    border-radius: 3px;
    overflow: hidden;
}

.quality-progress {
    height: 100%;
    background-color: #00ff9d;
}

.rating-value {
    font-weight: bold;
}

/* Meta verification detail card */
.meta-profile {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar-medium {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #2e374d;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.meta-profile-details {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 13px;
    font-weight: bold;
}

.profile-id {
    font-size: 10px;
    color: #5d6d88;
}

.meta-status-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-status-item {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    border-bottom: 1px dashed rgba(46, 55, 77, 0.5);
    padding-bottom: 6px;
    gap: 8px;
}

.item-label {
    color: #8a9bb8;
}

.item-val {
    font-weight: bold;
    text-align: right;
}

/* ==========================================================================
   Advanced Analytics and Reporting (Dashboard)
   ========================================================================== */

/* Wrap dashboard in a scrollable div on mobile to preserve layout integrity */
.dashboard-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1.5px solid #2e374d;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    background-color: #0f121d;
    -webkit-overflow-scrolling: touch;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-width: 1050px; /* Keep desktop aspect ratio and sizes intact inside horizontal scrolling container */
}

/* Sidebar Styling */
.db-sidebar {
    background-color: #131622;
    border-right: 1.5px solid #2e374d;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.db-user-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1e2e;
    border: 1px solid #2e374d;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
}

.db-nav-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.db-nav-header {
    font-size: 10px;
    text-transform: uppercase;
    color: #424f66;
    letter-spacing: 1px;
    margin-bottom: 6px;
    padding-left: 8px;
    font-weight: bold;
}

.db-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8a9bb8;
    text-decoration: none;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.db-nav-item:hover {
    background-color: #1a1e2e;
    color: #ffffff;
}

.db-nav-item.active {
    background-color: #1f2538;
    color: #ffffff;
    font-weight: bold;
}

.db-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background-color: #00ff9d;
    border-radius: 2px;
}

.db-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.db-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-left: auto;
}

/* Content Area Styling */
.db-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #0e111a;
}

.db-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #2e374d;
    gap: 1rem;
    flex-wrap: wrap;
}

.db-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.crumb {
    color: #8a9bb8;
}

.crumb-separator {
    width: 12px;
    height: 12px;
    color: #424f66;
}

.crumb-active {
    color: #ffffff;
    font-weight: bold;
}

.db-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.db-select {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #161a27;
    border: 1px solid #2e374d;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: #ffffff;
    cursor: pointer;
}

.db-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #2e374d;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

.db-btn-outline:hover {
    background-color: #161a27;
}

.db-btn-blue {
    background-color: #3b5998;
    color: #ffffff;
    border: 1px solid #4a6fa5;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-weight: bold;
}

.db-btn-blue:hover {
    background-color: #4b6cb7;
}

.db-btn-icon {
    background: transparent;
    border: 1px solid #2e374d;
    color: #8a9bb8;
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-btn-icon:hover {
    background-color: #161a27;
    color: #ffffff;
}

/* Sections & Grid layout */
.db-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.db-section-title {
    font-size: 10px;
    font-family: 'Press Start 2P', cursive;
    color: #424f66;
    letter-spacing: 1px;
    margin: 0;
}

.db-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.db-metrics-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.db-metric-card {
    background-color: #131622;
    border: 1px solid #2e374d;
    border-radius: 6px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.db-metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #8a9bb8;
}

.db-metric-icon {
    width: 12px;
    height: 12px;
    color: #424f66;
}

.db-metric-value {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
}

/* Card custom accent states */
.border-teal-glow {
    border: 1px solid #2f6f66;
    box-shadow: 0 0 10px rgba(47, 111, 102, 0.15);
}
.text-teal {
    color: #00ff9d !important;
}
.text-teal .db-metric-icon {
    color: #00ff9d;
}

.border-orange-glow {
    border: 1px solid #b5651d;
    box-shadow: 0 0 10px rgba(181, 101, 29, 0.15);
}
.text-orange {
    color: #ff9f43 !important;
}
.text-orange .db-metric-icon {
    color: #ff9f43;
}

/* Charts Grid section */
.db-charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.db-chart-card {
    background-color: #131622;
    border: 1px solid #2e374d;
    border-radius: 6px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.db-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #8a9bb8;
    border-bottom: 1px dashed #2e374d;
    padding-bottom: 8px;
}

.db-chart-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.db-chart-body.flex-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
}

/* Horizontal Bar chart styling */
.bar-chart-y-axis {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-label {
    font-size: 10px;
    color: #8a9bb8;
}

.bar-track {
    background-color: #1e2436;
    height: 18px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #2e374d;
}

.bar-fill {
    height: 100%;
    background-color: #00ff9d; /* green bar fill */
}

.bar-chart-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #424f66;
    padding: 0 4px;
}

.bar-chart-legend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    color: #8a9bb8;
    margin-top: 10px;
}

.legend-color-box {
    width: 8px;
    height: 8px;
    border-radius: 1px;
    display: inline-block;
}

.label-green {
    background-color: #00ff9d;
}

/* Donut Chart Mockup (Pure CSS) */
.donut-chart-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#8e44ad 0% 91%, #00ff9d 91% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.donut-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-center {
    width: 60px;
    height: 60px;
    background-color: #131622;
    border-radius: 50%;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #8a9bb8;
}

.legend-circle-box {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.color-purple {
    background-color: #8e44ad;
}

.color-teal {
    background-color: #00ff9d;
}

/* ==========================================================================
   Test the Setter Section
   ========================================================================== */

.test-section {
    padding: 8rem 0;
    text-align: center;
    border-top: 1px dashed #2e374d;
}

.test-container {
    max-width: 800px;
    margin: 0 auto;
}

.test-title {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .test-title {
        font-size: 13px;
        line-height: 1.6;
    }
}

.test-description {
    font-size: 14px;
    color: #8a9bb8;
    margin-bottom: 3rem;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #12151e;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 1.5px solid #2e374d;
    border-radius: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1c212f;
    border-color: #00ff9d;
    color: #00ff9d;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Footer Section */
.footer {
    border-top: 1px solid #2e374d;
    background-color: #12151e;
    padding: 4rem 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-tagline {
    font-size: 12px;
    color: #5d6d88;
}

.copyright {
    font-size: 11px;
    color: #424f66;
}
