/* IRA FORCE Developer Portal - Main Stylesheet */
/* Brand Colors derived from logo analysis */

:root {
    /* Primary Brand Colors */
    --color-primary: #13B5EA;
    --color-primary-dark: #0E9AC8;
    --color-primary-light: #4FC8F0;
    
    /* Academy Blue Scale */
    --color-academy: #003594;
    --color-royal: #002554;
    --color-navy: #001A3D;
    --color-deep-navy: #000F24;
    
    /* Neutral Scale */
    --color-silver: #B3B3B3;
    --color-gray-100: #F5F7FA;
    --color-gray-200: #E4E7EC;
    --color-gray-300: #C8CDD6;
    --color-gray-400: #9AA1AE;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    
    /* Alert/Accent Colors */
    --color-yellow: #FFCD00;
    --color-green: #10B981;
    --color-red: #EF4444;
    --color-orange: #F59E0B;
    
    /* Background Colors */
    --bg-primary: #0A0E14;
    --bg-secondary: #0F141C;
    --bg-tertiary: #151B24;
    --bg-elevated: #1A222E;
    --bg-hover: #1F2937;
    
    /* Text Colors */
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --text-accent: var(--color-primary);
    
    /* Border Colors */
    --border-primary: rgba(255, 255, 255, 0.08);
    --border-secondary: rgba(255, 255, 255, 0.04);
    --border-accent: rgba(19, 181, 234, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(19, 181, 234, 0.15);
    
    /* Typography */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Monaco', monospace;
    
    /* Spacing */
    --sidebar-width: 280px;
    --toc-width: 220px;
    --header-height: 64px;
    --content-max-width: 800px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-600);
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--bg-primary);
}

/* =====================================================
   TOP NAVIGATION
   ===================================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text .highlight {
    color: var(--color-primary);
}

.logo-badge {
    font-size: 0.65rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary), var(--color-academy));
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-center {
    flex: 1;
    max-width: 480px;
    margin: 0 48px;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-container .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-container input {
    width: 100%;
    height: 42px;
    padding: 0 80px 0 44px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.search-container input::placeholder {
    color: var(--text-muted);
}

.search-container input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--bg-elevated);
    box-shadow: var(--shadow-glow);
}

.search-shortcut {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    background: var(--bg-hover);
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.github-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    transition: var(--transition-fast);
}

.github-link:hover {
    background: var(--bg-hover);
    border-color: var(--border-accent);
}

.github-link svg {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.github-link:hover svg {
    color: var(--text-primary);
}

/* =====================================================
   MAIN LAYOUT
   ===================================================== */
.main-container {
    display: flex;
    padding-top: var(--header-height);
    min-height: 100vh;
}

/* =====================================================
   SIDEBAR
   ===================================================== */
.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    padding: 24px 16px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-primary);
    overflow-y: auto;
    z-index: 100;
}

.sidebar-section {
    margin-bottom: 28px;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding: 0 12px;
}

.sidebar-title svg {
    color: var(--color-primary);
    opacity: 0.8;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin: 2px 0;
}

.sidebar-links a {
    display: block;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.sidebar-links a:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.sidebar-links a.active {
    background: rgba(19, 181, 234, 0.1);
    color: var(--color-primary);
    border-left: 2px solid var(--color-primary);
    margin-left: -2px;
}

/* Tools Section */
.tools-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-primary);
}

.tools-links a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tool-icon.grafana {
    background: linear-gradient(135deg, #F46800, #FFC107);
}

.tool-icon.github {
    background: #24292e;
}

.tool-icon.jenkins {
    background: linear-gradient(135deg, #D33833, #EF3D3A);
}

.tool-icon.sentry {
    background: linear-gradient(135deg, #362D59, #584774);
}

.tool-icon.argocd {
    background: linear-gradient(135deg, #EF7B4D, #F7A56D);
}

.tool-icon.jira {
    background: linear-gradient(135deg, #0052CC, #2684FF);
}

.tool-icon.swagger {
    background: linear-gradient(135deg, #85EA2D, #49D668);
}

.tool-icon.postgres {
    background: linear-gradient(135deg, #336791, #4B8BBF);
}

.external-icon {
    width: 14px;
    height: 14px;
    margin-left: auto;
    color: var(--text-muted);
    opacity: 0;
    transition: var(--transition-fast);
}

.tool-link:hover .external-icon {
    opacity: 1;
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */
.content {
    flex: 1;
    margin-left: var(--sidebar-width);
    margin-right: var(--toc-width);
    padding: 32px 48px;
    max-width: calc(100% - var(--sidebar-width) - var(--toc-width));
}

.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-primary);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb .separator {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 500;
}

.version-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Document Content */
.doc-content {
    max-width: var(--content-max-width);
}

.doc-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doc-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-primary);
    color: var(--text-primary);
}

.doc-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.doc-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.75;
}

.doc-content .lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.doc-content a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.doc-content a:hover {
    border-bottom-color: var(--color-primary);
}

/* Callouts */
.callout {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
    border: 1px solid;
}

.callout-icon {
    flex-shrink: 0;
}

.callout-icon svg {
    width: 20px;
    height: 20px;
}

.callout-content {
    font-size: 0.9rem;
    line-height: 1.6;
}

.callout-content strong {
    display: block;
    margin-bottom: 4px;
}

.callout-info {
    background: rgba(19, 181, 234, 0.08);
    border-color: rgba(19, 181, 234, 0.2);
}

.callout-info .callout-icon {
    color: var(--color-primary);
}

.callout-tip {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.callout-tip .callout-icon {
    color: var(--color-green);
}

.callout-warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

.callout-warning .callout-icon {
    color: var(--color-orange);
}

.callout-danger {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.callout-danger .callout-icon {
    color: var(--color-red);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(19, 181, 234, 0.15), rgba(0, 53, 148, 0.15));
    border-radius: 10px;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    padding: 0;
    border: none;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.feature-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary) !important;
}

/* Quick Links Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--transition-fast);
}

.quick-link:hover {
    border-color: var(--border-accent);
    background: var(--bg-elevated);
}

.quick-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.quick-link span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Code Blocks */
.code-block {
    margin: 24px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    background: var(--bg-tertiary);
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-primary);
}

.code-lang {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--border-accent);
}

.copy-btn.copied {
    color: var(--color-green);
    border-color: var(--color-green);
}

.code-block pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.code-block code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Syntax Highlighting */
.code-block .keyword { color: #C678DD; }
.code-block .string { color: #98C379; }
.code-block .function { color: #61AFEF; }
.code-block .comment { color: #5C6370; font-style: italic; }
.code-block .number { color: #D19A66; }
.code-block .operator { color: #56B6C2; }
.code-block .class-name { color: #E5C07B; }
.code-block .punctuation { color: #ABB2BF; }

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-item.operational .status-indicator {
    background: var(--color-green);
    box-shadow: 0 0 8px var(--color-green);
}

.status-item.degraded .status-indicator {
    background: var(--color-orange);
    box-shadow: 0 0 8px var(--color-orange);
}

.status-item.down .status-indicator {
    background: var(--color-red);
    box-shadow: 0 0 8px var(--color-red);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.status-value {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--color-green);
}

/* =====================================================
   TABLE OF CONTENTS
   ===================================================== */
.toc {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: var(--toc-width);
    padding: 32px 24px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-primary);
    overflow-y: auto;
}

.toc h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin: 4px 0;
}

.toc a {
    display: block;
    padding: 6px 0;
    padding-left: 12px;
    border-left: 2px solid transparent;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.toc a:hover {
    color: var(--text-primary);
    border-left-color: var(--border-accent);
}

.toc a.active {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

/* =====================================================
   FOOTER
   ===================================================== */
.doc-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border-primary);
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-nav-prev a,
.footer-nav-next a {
    display: block;
    text-decoration: none;
}

.footer-nav-prev a {
    text-align: left;
}

.footer-nav-next a {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.nav-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-meta a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-meta a:hover {
    color: var(--color-primary);
}

/* =====================================================
   SEARCH MODAL
   ===================================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.search-modal.active {
    display: flex;
}

.search-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.search-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-primary);
}

.search-modal-header .search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.search-modal-header input {
    flex: 1;
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
}

.search-modal-header input::placeholder {
    color: var(--text-muted);
}

.search-modal-header kbd {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-primary);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
}

.search-hint {
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.search-result-item {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.search-result-item:hover {
    background: var(--bg-hover);
}

.search-result-item .result-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.search-result-item .result-path {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1280px) {
    .toc {
        display: none;
    }
    
    .content {
        margin-right: 0;
        max-width: calc(100% - var(--sidebar-width));
    }
}

@media (max-width: 1024px) {
    .nav-center {
        max-width: 360px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: var(--transition-normal);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .content {
        margin-left: 0;
        max-width: 100%;
        padding: 24px;
    }
    
    .nav-center {
        display: none;
    }
    
    .doc-content h1 {
        font-size: 2rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
}

/* Changelog Styles */
.changelog-entry {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-secondary);
}

.changelog-entry:last-child {
    border-bottom: none;
}

.changelog-tag {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-feature {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-green);
}

.tag-improvement {
    background: rgba(19, 181, 234, 0.15);
    color: var(--color-primary);
}

.tag-fix {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-orange);
}

.tag-breaking {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-red);
}

.changelog-entry p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.version-date {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 8px;
}

/* Tool icon for SOC */
.tool-icon.soc::before {
    content: "🛡️";
}

/* Figma icon */
.link-icon.figma::before {
    content: "🎨";
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
