:root { --bg-color: #050505; --glass-bg: rgba(20, 20, 25, 0.6); --glass-border: rgba(255, 255, 255, 0.08); --glass-highlight: rgba(255, 255, 255, 0.15); --primary-accent: #a855f7; --secondary-accent: #3b82f6; --text-main: #ffffff; --text-muted: #9ca3af; --success-color: #34d399; --error-color: #ef4444; } [data-theme="light"] {
    --bg-color: #f1f5f9;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-highlight: rgba(255, 255, 255, 0.9);
    --primary-accent: #8b5cf6;
    --secondary-accent: #0ea5e9;
    --text-main: #0f172a;
    --text-muted: #475569;
}

/* Premium Light Mode Overrides */
[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .glass-panel, [data-theme="light"] .content-panel, [data-theme="light"] .blog-card, [data-theme="light"] .faq-section {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .custom-input-group { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.08); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
[data-theme="light"] .email-display-wrapper { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.08); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
[data-theme="light"] #current-email, [data-theme="light"] .custom-input { background: transparent; box-shadow: none; border: none; color: var(--text-main); }
[data-theme="light"] .status-text { color: var(--text-muted); font-weight: 500; }
[data-theme="light"] .email-meta, [data-theme="light"] .attachment-item {
    background: rgba(241, 245, 249, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .feature-card {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .orb { display: none !important;
    opacity: 0.6;
}
 [data-theme="light"] .header h1, [data-theme="light"] .hero h1 { background: linear-gradient(135deg, #0f172a 0%, #475569 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } [data-theme="light"] .glass-input { background: rgba(0, 0, 0, 0.05); } [data-theme="light"] select { color: var(--text-main) !important; } [data-theme="light"] .blog-title { color: var(--text-main); } [data-theme="light"] .read-more { color: var(--text-main); } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Outfit', sans-serif; background-color: var(--bg-color); color: var(--text-main); min-height: 100vh; display: flex; flex-direction: column; align-items: center; padding: 6rem 1rem 3rem 1rem; overflow-x: hidden; position: relative; } .navbar { width: 100%; position: fixed; top: 0; left: 0; z-index: 100; background: rgba(20, 20, 25, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; } .nav-logo { font-size: 1.5rem; font-weight: 700; color: var(--text-main); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; letter-spacing: -0.05em; } .nav-links { display: flex; align-items: center; gap: 1.5rem; } .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 1rem; transition: color 0.2s; } .nav-links a:hover { color: var(--text-main); opacity: 0.8; } @media (max-width: 600px) {
    .navbar { padding: 1rem; }
    .nav-logo { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block !important; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(20, 20, 25, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        gap: 1.5rem;
        text-align: center;
    }
    [data-theme="light"] .nav-links {
        background: rgba(255, 255, 255, 0.95);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem;
    }
    .nav-controls {
        justify-content: center;
        margin-top: 1rem;
    }
} .orb { display: none !important; position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; animation: float 20s infinite ease-in-out alternate; z-index: -1; } .orb-1 { width: 600px; height: 600px; background: var(--primary-accent); top: -200px; left: -100px; } .orb-2 { width: 500px; height: 500px; background: var(--secondary-accent); bottom: -100px; right: -100px; animation-delay: -10s; } .orb-3 { width: 400px; height: 400px; background: #ec4899; top: 40%; left: 40%; animation-duration: 25s; opacity: 0.2; } @keyframes float { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(100px, 50px) scale(1.1); } 100% { transform: translate(-50px, 150px) scale(0.9); } } .lang-switcher { position: absolute; top: 20px; right: 20px; z-index: 10; } .lang-switcher select { background: rgba(255,255,255,0.1); border: 1px solid var(--glass-border); color: white; padding: 5px 10px; border-radius: 8px; font-family: 'Outfit'; outline: none; cursor: pointer; } .lang-switcher select option { background: #050505; color: white; } .container { width: 100%; max-width: 1100px; display: flex; flex-direction: column; gap: 2.5rem; z-index: 1; } .header { text-align: center; margin-bottom: 0.5rem; } .header h1 { font-size: 4rem; font-weight: 700; letter-spacing: -0.05em; background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; display: inline-flex; align-items: center; justify-content: center; gap: 1rem; line-height: 1.2; } .header p { color: var(--text-muted); font-size: 1.2rem; font-weight: 300; } .timer-badge { background: rgba(52, 211, 153, 0.1); border: 1px solid var(--success-color); color: var(--success-color); padding: 0.5rem 1rem; border-radius: 100px; font-weight: 600; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; box-shadow: 0 0 15px rgba(52, 211, 153, 0.15); } .glass-panel { background: var(--glass-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2.5rem; box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.4); position: relative; overflow: hidden; } .email-controls { display: flex; flex-direction: column; gap: 2rem; align-items: center; } .custom-input-group { display: flex; align-items: center; background: rgba(0,0,0,0.4); border-radius: 100px; border: 1px solid var(--glass-border); padding: 0.25rem; transition: all 0.3s; } .custom-input-group:focus-within { border-color: var(--secondary-accent); box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); } .custom-input { background: transparent; border: none; color: white; padding: 0.75rem 1rem; font-family: inherit; font-size: 1rem; outline: none; width: 150px; text-align: right; font-weight: 500; } .domain-label { color: var(--text-muted); padding-right: 1rem; font-size: 1rem; pointer-events: none; } .btn-set-custom { background: rgba(255,255,255,0.1); border: none; color: white; padding: 0.5rem 1rem; border-radius: 100px; cursor: pointer; margin-left: 0.5rem; margin-right: 0.25rem; font-weight: 600; transition: all 0.2s; } .btn-set-custom:hover { background: var(--secondary-accent); } .email-display-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; max-width: 800px; background: rgba(0, 0, 0, 0.5); border-radius: 100px; border: 1px solid var(--glass-border); padding: 0.5rem 0.5rem 0.5rem 2rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .email-display-wrapper:hover { border-color: var(--primary-accent); box-shadow: 0 0 30px rgba(168, 85, 247, 0.2); transform: scale(1.02); } #current-email { flex-grow: 1; min-width: 0; font-size: 1.8rem; font-weight: 500; letter-spacing: 0.5px; color: var(--text-main); background: transparent; border: none; outline: none; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; cursor: pointer; } .email-actions { display: flex; align-items: center; gap: 0.5rem; } .btn { border: none; border-radius: 100px; padding: 0.75rem 1.5rem; font-family: inherit; font-weight: 600; font-size: 1rem; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: all 0.2s; } .btn-primary { background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent)); color: white; box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5); } .btn-secondary { background: transparent; color: var(--text-muted); border: 1px solid var(--glass-border); } .btn-secondary:hover { background: rgba(255, 255, 255, 0.05); color: var(--text-main); border-color: var(--glass-highlight); } .btn-danger { background: rgba(239, 68, 68, 0.1); color: var(--error-color); border: 1px solid rgba(239, 68, 68, 0.3); } .btn-danger:hover { background: rgba(239, 68, 68, 0.2); } .btn-icon { padding: 0.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); color: white; border: 1px solid var(--glass-border); cursor: pointer; transition: all 0.2s;} .btn-icon:hover { background: rgba(255,255,255,0.1); border-color: var(--glass-highlight); } .control-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; justify-content: center; } .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1000; align-items: center; justify-content: center; backdrop-filter: blur(5px); } .modal.active { display: flex; animation: fadeIn 0.3s; } .modal-content { background: var(--glass-bg); padding: 3rem; border-radius: 24px; border: 1px solid var(--glass-border); text-align: center; } .modal-content h3 { margin-bottom: 1.5rem; font-size: 1.5rem; } #qrcode { background: white; padding: 1rem; border-radius: 12px; display: inline-block; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .status-text { font-size: 0.95rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; margin-left: 1rem; } .pulse-dot { width: 8px; height: 8px; background-color: var(--success-color); border-radius: 50%; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); animation: pulse 2s infinite; } .loader { border: 2px solid rgba(255,255,255,0.1); border-top: 2px solid var(--primary-accent); border-radius: 50%; width: 16px; height: 16px; animation: spin 1s linear infinite; display: none; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); } } .mailbox { display: grid; grid-template-columns: 380px 1fr; gap: 0; min-height: 600px; padding: 0; } @media (max-width: 900px) { .mailbox { grid-template-columns: 1fr; } } .inbox-sidebar { border-right: 1px solid var(--glass-border); display: flex; flex-direction: column; height: 600px; } .sidebar-header { padding: 1.5rem; border-bottom: 1px solid var(--glass-border); font-weight: 600; font-size: 1.2rem; display: flex; justify-content: space-between; align-items: center; } .badge { background: var(--primary-accent); color: white; font-size: 0.8rem; padding: 0.2rem 0.6rem; border-radius: 100px; } .inbox-list { flex-grow: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; } ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; } .email-item { padding: 1.25rem; border-radius: 16px; background: rgba(255, 255, 255, 0.02); border: 1px solid transparent; cursor: pointer; transition: all 0.2s; animation: slideIn 0.3s ease-out forwards; position: relative; } @keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } } .email-item:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--glass-highlight); transform: translateX(4px); } .email-item.active { background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1)); border-color: rgba(168, 85, 247, 0.3); border-left: 4px solid var(--primary-accent); } .email-sender { font-weight: 600; font-size: 1rem; margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 20px;} .email-subject { font-size: 0.9rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0.5rem; } .email-time { font-size: 0.75rem; color: var(--primary-accent); font-weight: 500; } .has-attachment-icon { position: absolute; top: 1.25rem; right: 1rem; color: var(--text-muted); } .reading-pane { display: flex; flex-direction: column; height: 600px; padding: 2rem; overflow-y: auto; position: relative; } .email-header { padding-bottom: 1.5rem; border-bottom: 1px solid var(--glass-border); margin-bottom: 1.5rem; } .email-header h2 { font-size: 1.8rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.3; } .email-meta { display: flex; align-items: center; justify-content: space-between; background: rgba(0,0,0,0.2); padding: 1rem; border-radius: 12px; border: 1px solid var(--glass-border); } .meta-left { display: flex; align-items: center; gap: 1rem; } .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; } .meta-details { display: flex; flex-direction: column; } .meta-from { color: var(--text-main); font-weight: 500; } .meta-date { color: var(--text-muted); font-size: 0.85rem; } .email-body { flex-grow: 1; line-height: 1.7; font-size: 1.05rem; color: var(--text-main); } .email-body iframe { width: 100%; min-height: 400px; border: none; background: white; border-radius: 8px; } .attachments-area { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px dashed var(--glass-border); } .attachments-area h4 { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; } .attachment-list { display: flex; flex-wrap: wrap; gap: 1rem; } .attachment-item { display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.05); padding: 0.75rem 1rem; border-radius: 8px; border: 1px solid var(--glass-border); text-decoration: none; color: var(--text-main); transition: background 0.2s; } .attachment-item:hover { background: rgba(255,255,255,0.1); } .attachment-item svg { color: var(--primary-accent); } .empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--text-muted); text-align: center; padding: 2rem; } .empty-state svg { width: 80px; height: 80px; margin-bottom: 1.5rem; opacity: 0.3; stroke-width: 1; } .empty-state h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--text-main); } .toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--success-color); color: white; padding: 1rem 2rem; border-radius: 100px; font-weight: 600; font-size: 1.1rem; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4); transition: all 0.4s; opacity: 0; z-index: 1000; display: flex; align-items: center; gap: 0.5rem; } .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; } .content-panel { background: var(--glass-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 3rem; line-height: 1.8; font-size: 1.1rem; color: var(--text-muted); } .content-panel h2 { color: var(--text-main); font-size: 1.8rem; margin-bottom: 1.5rem; margin-top: 2rem; } .content-panel h2:first-child { margin-top: 0; } .content-panel p { margin-bottom: 1.5rem; } .content-panel ul { margin-bottom: 1.5rem; padding-left: 2rem; } .content-panel li { margin-bottom: 0.5rem; } .content-panel pre { background: rgba(0,0,0,0.5); padding: 1rem; border-radius: 12px; overflow-x: auto; font-family: monospace; color: var(--secondary-accent); border: 1px solid var(--glass-border); margin-bottom: 1.5rem; } .btn-home { display: inline-block; margin-top: 2rem; padding: 0.75rem 2rem; background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent)); color: white; text-decoration: none; border-radius: 100px; font-weight: 600; transition: transform 0.2s; } .btn-home:hover { transform: translateY(-2px); } .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; } .blog-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2rem; display: flex; flex-direction: column; text-decoration: none; transition: transform 0.3s; } .blog-card:hover { transform: translateY(-5px); border-color: var(--primary-accent); } .blog-date { color: var(--primary-accent); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; } .blog-title { color: var(--text-main); font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; line-height: 1.3; } .blog-excerpt { color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; } .read-more { color: var(--text-main); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; } .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; } @media (max-width: 900px) { .features { grid-template-columns: 1fr; } } .feature-card { background: rgba(255, 255, 255, 0.02); padding: 2rem; border-radius: 20px; border: 1px solid var(--glass-border); text-align: center; } .feature-icon { width: 60px; height: 60px; background: rgba(168, 85, 247, 0.1); color: var(--primary-accent); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem auto; } .feature-card h3 { font-size: 1.3rem; margin-bottom: 1rem; font-weight: 600; } .feature-card p { color: var(--text-muted); line-height: 1.6; } .faq-section { margin-top: 4rem; padding: 3rem; background: var(--glass-bg); border-radius: 24px; border: 1px solid var(--glass-border); } .faq-section h2 { text-align: center; margin-bottom: 2rem; font-size: 2rem; } .faq-item { border-bottom: 1px solid var(--glass-border); padding: 1.5rem 0; } .faq-item:last-child { border-bottom: none; } .faq-question { font-weight: 600; font-size: 1.2rem; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; } .faq-answer { color: var(--text-muted); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; } .faq-item.active .faq-answer { max-height: 500px; padding-top: 1rem; } .footer { margin-top: 4rem; width: 100%; text-align: center; padding: 2rem 0; border-top: 1px solid var(--glass-border); color: var(--text-muted); font-size: 0.95rem; } .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; } .footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s ease; } .footer-links a:hover { color: var(--primary-accent); } @media (max-width: 768px) { body { padding-top: 5rem; } .header h1 { font-size: 2.2rem; flex-direction: column; gap: 0.2rem; word-break: break-word; } .header h1 svg { width: 40px; height: 40px; margin-bottom: 0.5rem; } .header p { font-size: 1rem; } .glass-panel { padding: 1.5rem; } .custom-input-group { display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem; border-radius: 20px; background: rgba(0,0,0,0.2); } .custom-input { width: 100%; text-align: center; font-size: 1.1rem; padding: 0.75rem; background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid var(--glass-border); } .domain-label { padding: 0; font-size: 1rem; text-align: center; margin-bottom: 0.5rem; } .btn-set-custom { width: 100%; margin: 0; justify-content: center; padding: 0.75rem; border-radius: 12px; background: var(--primary-accent); } .btn-set-custom:hover { background: var(--secondary-accent); } .email-display-wrapper { display: flex; flex-direction: column; gap: 1rem; padding: 1.25rem; border-radius: 24px; align-items: stretch; } #current-email { width: 100%; text-align: center; font-size: 1.15rem; margin: 0; padding: 0.75rem; background: rgba(0,0,0,0.2); border-radius: 12px; } .email-actions { display: flex; gap: 0.75rem; width: 100%; } .email-display-wrapper .btn-icon { width: 48px; height: 48px; margin: 0; justify-content: center; border-radius: 16px; flex-shrink: 0; } .email-display-wrapper .btn-primary { margin: 0; height: 48px; justify-content: center; border-radius: 16px; width: 100%; flex-grow: 1; } .control-row { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; } .control-row .btn { justify-content: center; font-size: 0.9rem; padding: 0.75rem 1rem; width: 100%; } .status-text { grid-column: span 2; justify-content: center; margin: 0; } }

[data-theme="light"] .btn-icon { color: var(--text-muted); background: transparent; border: none; }
[data-theme="light"] .btn-icon:hover { color: var(--primary-accent); background: rgba(0,0,0,0.05); }
[data-theme="light"] .domain-label { color: var(--text-muted); }
[data-theme="light"] .btn-set-custom { color: var(--text-main); background: rgba(0,0,0,0.05); }
[data-theme="light"] .btn-set-custom:hover { background: rgba(0,0,0,0.1); }

/* Email Header Analyzer Styles */
.styled-textarea {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem;
    border-radius: 12px;
    font-family: monospace;
    font-size: 0.9rem;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.styled-textarea:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.summary-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 8px;
}

.summary-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.summary-value {
    font-weight: 500;
    word-break: break-all;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 2px solid var(--glass-border);
    padding-left: 1.5rem;
    margin-left: 1rem;
}

.timeline-item {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 8px;
}

.timeline-marker {
    position: absolute;
    left: -2.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.timeline-content {
    font-family: monospace;
    font-size: 0.85rem;
    word-break: break-all;
}

.table-container {
    overflow-x: auto;
}

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

.headers-table th, .headers-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    text-align: left;
}

.headers-table th {
    font-weight: 600;
    color: var(--text-muted);
}

.headers-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

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

.nav-dropdown-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    font-family: inherit;
    transition: color 0.3s ease;
}

.nav-dropdown-btn:hover {
    color: var(--primary-accent);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--glass-bg);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 0.5rem 0;
    margin-top: 1rem;
}

.nav-dropdown-content a {
    color: var(--text-main) !important;
    padding: 0.75rem 1.5rem !important;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-dropdown-content a:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--primary-accent) !important;
}

/* Show dropdown on hover */
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

/* Invisible bridge so hover doesn't break */
.nav-dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1rem;
    bottom: -1rem;
    left: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .nav-dropdown {
        display: block;
        width: 100%;
    }
    .nav-dropdown-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        justify-content: space-between;
    }
    .nav-dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0,0,0,0.1);
        margin-top: 0;
        display: none; /* Handled by JS or just keep it open on mobile, let's keep it visible when nav is active */
    }
    /* In mobile nav, if the nav is active, we just show the dropdown content directly to make it simple */
    .nav-links.active .nav-dropdown-content {
        display: block;
        border-radius: 0;
    }
    .nav-links.active .nav-dropdown-content a {
        padding-left: 2.5rem !important;
    }
}
