/* Design System & Variables */
:root {
    --bg-dark: #0a0f1d;
    --bg-card: #121829;
    --bg-card-hover: #192035;
    --primary: #5c6bc0;
    --primary-glow: rgba(92, 107, 192, 0.4);
    --accent: #8e24aa;
    --accent-glow: rgba(142, 36, 170, 0.3);
    --text-main: #f5f6fa;
    --text-muted: #8a96a3;
    --border-color: #242f49;
    --border-glow: #3d4f7c;
    --success: #00b0ff;
    --danger: #ff5252;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

strong {
    color: #ffffff;
}

/* Helper Utilities */
.hide {
    display: none !important;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 107, 192, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
    border-color: var(--border-glow);
}

.btn-control {
    background-color: #1b2640;
    color: #ffffff;
    border: 1px solid var(--primary);
    padding: 6px 16px;
    font-size: 0.85rem;
}

.btn-control:hover {
    background-color: var(--primary);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-text {
    background: transparent;
    color: var(--text-muted);
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-text:hover {
    color: #ffffff;
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(10, 15, 29, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(10, 15, 29, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 99px;
    background-color: rgba(92, 107, 192, 0.1);
    color: var(--primary);
    border: 1px solid rgba(92, 107, 192, 0.2);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #ffffff;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Simulator Mockup Widget */
.hero-visual {
    width: 100%;
}

.simulator-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: border-color var(--transition-speed);
}

.simulator-card:hover {
    border-color: var(--border-glow);
}

.simulator-header {
    background-color: #0d1222;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
}

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

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3b4252;
}

.sim-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.sim-body {
    padding: 20px;
}

.sim-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 280px;
    border: 1px solid #1c2338;
}

.sim-screen {
    position: relative;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0e1424;
    overflow: hidden;
}

.viewer-view {
    border-right: 1px solid #1c2338;
}

.speaker-view {
    background-color: #0f172a;
}

.view-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--danger);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
}

.speaker-tag {
    background-color: var(--success);
}

.slide-content {
    text-align: left;
}

.slide-content h3 {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.slide-bullet {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.avatar-row {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

.avatar {
    font-size: 0.7rem;
    background-color: #1e293b;
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--text-main);
}

.avatar.client {
    opacity: 0.7;
}

/* Stealth Overlay Widget inside Speaker view */
.stealth-overlay-mock {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 220px;
    background-color: rgba(18, 24, 41, 0.9);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
}

/* When simulated invisible, lower opacity or hide */
.stealth-overlay-mock.invisible-sim {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.green {
    background-color: #4ade80;
    box-shadow: 0 0 6px #4ade80;
}

.overlay-content {
    font-size: 0.7rem;
    color: #e2e8f0;
}

.overlay-content strong {
    color: var(--primary);
}

.overlay-content .hl {
    color: #f59e0b;
    font-weight: 600;
}

.overlay-input {
    margin-top: 6px;
    background-color: #0b0f19;
    padding: 4px;
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.65rem;
}

.simulator-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #0d1222;
    border-top: 1px solid var(--border-color);
}

.control-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Features Grid */
.features {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all var(--transition-speed);
}

.feature-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* Detection / Transparency Section */
.detection-section {
    padding: 100px 0;
    background-color: #0b1021;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.detection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detect-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.detect-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.detect-badge.low {
    background-color: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.detect-badge.medium {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.detect-card h3 {
    margin-bottom: 12px;
    padding-right: 80px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: radial-gradient(circle at top left, #1b2440 0%, var(--bg-card) 70%);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 45px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.price-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #ffffff;
    margin: 20px 0;
}

.price-amount .currency {
    font-size: 2rem;
    vertical-align: super;
}

.price-amount .period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-desc {
    margin-bottom: 30px;
}

.pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
}

.benefit-item {
    font-size: 0.95rem;
    color: #ffffff;
}

.pricing-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Dashboard Section */
.dashboard-section {
    padding: 120px 0 100px;
    border-top: 1px solid var(--border-color);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.dash-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.user-name {
    display: block;
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.user-email {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.license-status-badge {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.license-status-badge.is-unpaid {
    background-color: rgba(255, 82, 82, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 82, 82, 0.2);
}

.license-status-badge.is-paid {
    background-color: rgba(0, 176, 255, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 176, 255, 0.2);
}

.dash-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 20px 0;
}

.dash-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
}

.dash-price-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.download-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 24px 0;
}

.version-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.instructions-card {
    background-color: rgba(10, 15, 29, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.instructions-card h4 {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.instructions-card ol {
    padding-left: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.instructions-card li {
    margin-bottom: 8px;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 15, 29, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.2s ease;
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.google-btn-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.modal-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
}

.modal-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.modal-divider span {
    background-color: var(--bg-card);
    padding: 0 12px;
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}



/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #1b2640;
    border: 1px solid var(--primary);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s, transform 0.3s;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    background-color: #080c18;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container p {
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

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

.footer-social {
    margin-top: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.social-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icon-link {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icon-link:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.social-icon-link.instagram:hover {
    color: #d62976;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(92, 107, 192, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(92, 107, 192, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(92, 107, 192, 0);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    h1 {
        font-size: 2.8rem;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .nav-links {
        display: none;
    }
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .footer-social {
        justify-content: center;
        flex-direction: row;
        gap: 10px;
    }
    .sim-split {
        grid-template-columns: 1fr;
        height: auto;
    }
    .sim-screen {
        height: auto;
        min-height: 250px;
        justify-content: flex-start;
        padding: 44px 16px 16px 16px;
    }
    .viewer-view {
        border-right: none;
        border-bottom: 1px solid #1c2338;
    }
    .stealth-overlay-mock {
        width: 180px;
    }
    .avatar-row {
        flex-wrap: wrap;
    }
    h1 {
        font-size: 2.2rem !important;
    }
    h2 {
        font-size: 1.8rem !important;
    }
    .hero {
        padding: 120px 0 60px;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    .pricing-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .price-amount {
        font-size: 2.8rem;
    }
    .dash-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
    .dash-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .modal-content {
        padding: 30px 20px;
        margin: 0 12px;
        border-radius: 12px;
    }
}

/* Advanced Section Styles */
.advanced-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    background-color: #0c1224;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.adv-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px 30px;
    border-radius: 12px;
    position: relative;
    transition: all var(--transition-speed);
}

.adv-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.adv-card.highlight-card {
    border: 1px solid var(--primary);
    box-shadow: 0 4px 25px rgba(92, 107, 192, 0.2);
    background: radial-gradient(circle at top right, #1b2347 0%, var(--bg-card) 75%);
}

.adv-card.highlight-card:hover {
    box-shadow: 0 6px 30px rgba(92, 107, 192, 0.35);
}

.adv-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: var(--primary);
    color: #ffffff;
}

.adv-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.adv-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.adv-list {
    margin-top: 16px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adv-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hotkeys Styles */
.hotkeys-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hotkeys-container h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    text-align: center;
}

.hotkey-sub {
    text-align: center;
    margin-bottom: 32px;
}

.hotkeys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.hotkey-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

kbd {
    background-color: #1b2640;
    border: 1px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    color: #ffffff;
    font-family: Consolas, monospace;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hotkey-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Profile Dropdown Styles */
.profile-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-speed);
}

.dropdown-trigger:hover {
    background-color: var(--border-color);
    border-color: var(--border-glow);
}

.user-avatar-icon {
    font-size: 1rem;
}

.dropdown-chevron {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    min-width: 210px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    z-index: 1000;
    overflow: hidden;
    animation: fadeInDropdown 0.2s ease;
}

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

.dropdown-content.show {
    display: block;
}

.dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
}

.dropdown-email {
    font-size: 0.8rem;
    color: var(--text-muted);
    word-break: break-all;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: background-color var(--transition-speed);
}

.dropdown-content a:hover {
    background-color: var(--border-color);
    color: #ffffff;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
}

.dropdown-content a.signout-link {
    color: var(--danger);
}

.dropdown-content a.signout-link:hover {
    background-color: rgba(255, 82, 82, 0.08);
}

/* Floating Support Widget Styling */
.support-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: var(--font-body);
}

/* Floating Trigger Button */
.support-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    border: 1px solid var(--border-glow);
    padding: 12px 20px;
    border-radius: 99px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(92, 107, 192, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 36, 170, 0.5);
}

.support-btn-icon {
    font-size: 1.2rem;
}

.support-btn-label {
    font-size: 0.9rem;
}

/* Support Card Chat Window */
.support-card {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 360px;
    background-color: rgba(18, 24, 41, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: supportCardOpen 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: border-color 0.3s;
}

.support-card:hover {
    border-color: var(--border-glow);
}

@keyframes supportCardOpen {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.support-card-header {
    background-color: rgba(13, 18, 34, 0.95);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.support-card-header h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.support-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.support-close-btn:hover {
    color: var(--danger);
}

.support-card-body {
    padding: 20px;
    max-height: 480px;
    overflow-y: auto;
}

.support-intro {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.4;
}

.support-form .form-group {
    margin-bottom: 16px;
}

.support-form label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    color: #a5b4fc;
    margin-bottom: 6px;
}

.support-form input[type="email"],
.support-form input[type="text"],
.support-form select,
.support-form textarea {
    width: 100%;
    padding: 10px 12px;
    background-color: rgba(10, 15, 29, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(92, 107, 192, 0.25);
}

.support-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a96a3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 32px;
}

.support-form textarea {
    resize: none;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .support-widget {
        bottom: 20px;
        right: 20px;
    }
    .support-card {
        position: fixed;
        bottom: 80px;
        left: 20px;
        right: 20px;
        width: auto;
    }
}

/* Announcement Banner Styles */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001; /* Above navbar (z-index 100) */
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 48px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    box-sizing: border-box;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.announcement-banner.warning {
    background: linear-gradient(90deg, #b25e00 0%, #d47a00 100%);
}

.announcement-banner.danger {
    background: linear-gradient(90deg, #7f1d1d 0%, #dc2626 100%);
}

.announcement-banner.info {
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
}

.announcement-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.announcement-icon {
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.announcement-text {
    line-height: 1.4;
}

.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.announcement-close:hover {
    color: #ffffff;
}

/* Layout adjustments when banner is present */
body.has-announcement {
    padding-top: var(--announcement-height, 0px);
}

body.has-announcement .navbar {
    top: var(--announcement-height, 0px);
}

.navbar {
    transition: top 0.3s ease;
}