:root {
    --primary-color: #e64d1e;
    --primary-hover: #d43e15;
    --secondary-color: #ffffff;
    --secondary-hover: #f0f0f0;
    --background-color: #000000;
    --surface-color: #111111;
    --surface-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #333333;
    --error-color: #e64d1e;
    --warning-color: #e64d1e;
    --success-color: #e64d1e;
    --premium-color: #e64d1e;
    --premium-gradient: linear-gradient(135deg, #e64d1e, #d43e15);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --border-radius: 6px;
    --border-radius-lg: 8px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background-color);
    border-bottom: 3px solid var(--primary-color);
    z-index: 1000;
    height: var(--header-height);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 60px;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.navbar-logo {
    height: 60px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    justify-content: space-between;
}

.navbar-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.premium-link {
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.nav-link.premium-link::after {
    background: var(--primary-color);
}

.navbar-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: all 0.2s ease;
    border-radius: 1px;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navbar specific button styles */
.navbar-actions .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    min-height: auto;
}

.navbar-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
}

.navbar-actions .btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.navbar-actions .btn-outline:hover {
    background: var(--surface-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

/* Main Content */
.main-content {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Breadcrumb */
.breadcrumb {
    background: var(--surface-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-muted);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 44px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 77, 30, 0.4);
}

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

.btn-secondary:hover {
    background: var(--secondary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--surface-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

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

/* Premium button style */
.btn-premium {
    background: var(--primary-color);
    color: var(--text-primary);
    border: none;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 3px 12px rgba(230, 77, 30, 0.3);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.025em;
}

.btn-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 77, 30, 0.4);
    background: var(--primary-hover);
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(88, 101, 242, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(88, 101, 242, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

/* Features Grid */
.features-grid-section {
    padding: 80px 0;
}

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

.feature-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 77, 30, 0.08), transparent);
    transition: left 0.6s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--surface-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-yes {
    background: rgba(230, 77, 30, 0.1);
    color: var(--primary-color);
}

.status-recommended {
    background: rgba(230, 77, 30, 0.15);
    color: var(--primary-color);
}

.status-optional {
    background: rgba(136, 136, 136, 0.1);
    color: var(--text-muted);
}

/* Severity indicators */
.severity-low {
    color: #28a745;
}

.severity-medium {
    color: #ffc107;
}

.severity-high {
    color: #fd7e14;
}

.severity-critical {
    color: var(--primary-color);
}

/* Change Log Icons */
.changelog-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
}

.changelog-icon.new { background: var(--primary-color); }
.changelog-icon.improve { background: var(--text-muted); }
.changelog-icon.breaking { background: #dc3545; }
.changelog-icon.security { background: #198754; }

/* Global link styles */
a {
    color: inherit;
    text-decoration: underline;
    transition: var(--transition);
}

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

/* Override for navigation and buttons */
.nav-link,
.btn,
.card-link,
.navbar-brand a {
    text-decoration: none;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d43e15 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.cta-section .btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 30px;
}

.sidebar {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    display: block;
    transition: var(--transition);
}

.sidebar a:hover,
.sidebar a.active {
    background: var(--primary-color);
    color: white;
}

.content-main {
    background: var(--surface-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
}

/* Typography */
.content-main h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.content-main h2 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
    color: var(--text-primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.content-main h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    color: var(--text-primary);
}

.content-main h4 {
    font-size: 1.25rem;
    margin: 25px 0 10px 0;
    color: var(--text-primary);
}

.content-main p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.content-main ul,
.content-main ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-main li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-main code {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    color: var(--secondary-color);
}

.content-main pre {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.content-main blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

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

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: var(--background-color);
    color: var(--text-primary);
    font-weight: 600;
}

td {
    color: var(--text-secondary);
}

tr:hover {
    background: rgba(88, 101, 242, 0.05);
}

/* Alert Boxes */
.alert {
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
    border-left: 4px solid;
    font-weight: 500;
}

.alert-info {
    background: rgba(230, 77, 30, 0.08);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.alert-warning {
    background: rgba(230, 77, 30, 0.08);
    border-color: var(--warning-color);
    color: var(--text-primary);
}

.alert-error {
    background: rgba(230, 77, 30, 0.08);
    border-color: var(--error-color);
    color: var(--text-primary);
}

.alert-success {
    background: rgba(230, 77, 30, 0.08);
    border-color: var(--success-color);
    color: var(--text-primary);
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    box-shadow: 0 2px 8px rgba(230, 77, 30, 0.3);
}

/* Command Badge Styles */
.badge-free {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.badge-premium {
    background: linear-gradient(135deg, var(--primary-color), #dc4626);
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(230, 77, 30, 0.4);
    position: relative;
    overflow: hidden;
}

.badge-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge-partial {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.badge-permission {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* Free and Premium badge styles for inline use */
.free-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    box-shadow: 0 1px 4px rgba(34, 197, 94, 0.3);
}

/* Enhanced command card styling */
.command-card.premium {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(230, 77, 30, 0.05), rgba(230, 77, 30, 0.02));
    position: relative;
}

.command-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #dc4626, var(--primary-color));
    border-radius: 8px 8px 0 0;
}

.command-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

/* Footer */
.footer {
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-logo {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

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

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* Support Page Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.support-card.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border: none;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.support-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.faq-item {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.help-steps {
    display: grid;
    gap: 1.5rem;
}

.help-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.response-item {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.response-item.premium {
    background: linear-gradient(135deg, var(--premium-color), #ffed4e);
    color: var(--background-color);
}

.response-time {
    font-weight: 600;
    color: var(--success-color);
}

.response-item.premium .response-time {
    color: var(--background-color);
}

.checklist {
    display: grid;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.checkmark {
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Changelog Page Styles */
.changelog-entry {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.25s ease;
}

.changelog-entry:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.changelog-header {
    background: linear-gradient(135deg, var(--surface-hover), var(--background-color));
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.changelog-header h2 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.changelog-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: var(--background-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.changelog-type {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.changelog-type.new {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    box-shadow: 0 2px 8px rgba(230, 77, 30, 0.3);
}

.changelog-type.fix {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: var(--background-color);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.changelog-type.major {
    background: var(--premium-gradient);
    color: white;
    box-shadow: 0 2px 8px rgba(230, 77, 30, 0.3);
}

.changelog-content {
    padding: 2rem;
}

.changelog-content h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.changelog-content h3:first-child {
    margin-top: 0;
}

.changelog-content ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.75rem;
}

.changelog-content li {
    padding: 1rem 1.5rem 1rem 3rem;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    transition: all 0.25s ease;
}

.changelog-content li:hover {
    background: var(--surface-hover);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.changelog-content li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: rgba(230, 77, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.version-notice {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(230, 77, 30, 0.2);
}

.version-notice h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.version-notice p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.roadmap-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.roadmap-section h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
}

.roadmap-item {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: all 0.25s ease;
}

.roadmap-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.roadmap-item h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.roadmap-item ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.75rem;
}

.roadmap-item li {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.25s ease;
}

.roadmap-item li:hover {
    background: var(--surface-hover);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.roadmap-item li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
}

/* Beta and Premium Notice Styles */
.beta-notice {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--text-primary);
    font-weight: 500;
}

.beta-notice .premium-link {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 600;
}

.beta-notice .premium-link:hover {
    color: var(--secondary-color);
}

.beta-text {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.beta-launch-banner {
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 0.875rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    position: sticky;
    top: var(--header-height);
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.beta-launch-banner a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1px;
    transition: var(--transition);
}

.beta-launch-banner a:hover {
    color: var(--text-primary);
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    min-width: 180px;
    z-index: 1001;
    padding: 8px 0;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: none;
    text-align: center;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--background-color);
    color: var(--primary-color);
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content,
.nav-dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown > .nav-link::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 6px;
    display: inline;
    vertical-align: baseline;
    position: static;
    width: auto;
    height: auto;
    background: none;
    bottom: auto;
    left: auto;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover > .nav-link::after,
.nav-dropdown.active > .nav-link::after {
    transform: rotate(180deg);
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .nav-dropdown > .nav-link::after {
        content: '';
    }

    .nav-dropdown .dropdown-content {
        position: static;
        display: block;
        background: var(--background-color);
        border: none;
        box-shadow: none;
        margin: 10px 0 0 20px;
        padding: 0;
    }

    .nav-dropdown .dropdown-content a {
        padding: 8px 0;
        font-size: 0.85rem;
    }
}

.dropdown-content a {
    padding: 8px 0;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--surface-color);
        border-top: 1px solid var(--border-color);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .navbar-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .content-main,
    .sidebar {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .sidebar {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* Support Page Specific Styles */
.support-section {
    margin-bottom: 60px;
}

.support-section h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.contact-methods {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.25s ease;
}

.contact-method.primary {
    border-color: var(--primary-color);
    background: rgba(230, 77, 30, 0.03);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
}

.contact-content h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.recommended {
    background: var(--primary-color);
    color: white;
}

.faq-container {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checkmark-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item span {
    color: var(--text-secondary);
    line-height: 1.6;
}
