/* Ayu Dark Theme Colors */
:root {
    --bg-primary: #0F1419;
    --bg-secondary: #1A1F2E;
    --bg-tertiary: #252E3F;
    --fg-primary: #DCD7BA;
    --fg-secondary: #A9B1D6;
    --fg-tertiary: #828C8E;
    --accent-primary: #F29718;
    --accent-secondary: #FF8759;
    --accent-tertiary: #73D7FF;
    --success: #D5FF80;
    --warning: #FF9500;
    --error: #FF6B7A;
    --info: #73D7FF;
    --border-color: #3E4556;
    --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--fg-primary);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

a:link, a:visited {
  color: var(--info); /* Replace 'blue' with your desired color name or hexadecimal value */
}

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

.align-inline {
    display: inline-block; /* Allows elements to sit side-by-side */
    vertical-align: middle; /* Vertically aligns the middle of the elements */
}

.hcontainer {
    display: flex; /* Makes the container a flex container */
    align-items: center; /* Vertically centers the items in the container */
    gap: 10px; /* Adds space between the image and the heading */
}
/* Optional: remove default margins from h1 if needed */
.hcontainer h1 {
    margin: 0;
}

/* Navigation Bar */
.navbar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--fg-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: var(--fg-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 151, 24, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-secondary:hover {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 40px 20px;
    background-color: var(--bg-primary);
}

.features h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-primary);
}

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

.feature-card {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

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

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.feature-card p {
    color: var(--fg-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* Showcase Section */
.showcase {
    padding: 40px 20px;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.showcase h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.showcase > .container > p {
    color: var(--fg-secondary);
    font-size: 16px;
    margin-bottom: 50px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-text h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--accent-primary);
}

.showcase-text ul {
    list-style: none;
}

.showcase-text li {
    padding: 12px 0;
    color: var(--fg-secondary);
    font-size: 15px;
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
}

.showcase-text li:before {
    content: "▸ ";
    color: var(--accent-primary);
    font-weight: bold;
    margin-right: 10px;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-tertiary);
    font-size: 18px;
    font-weight: 500;
}

/* More Features Section */
.more-features {
    padding: 40px 20px;
    background-color: var(--bg-primary);
}

.more-features h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-primary);
}

.more-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.more-features-card {
    background-color: var(--bg-secondary);
    padding: 50px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.more-features-card.featured {
    border-color: var(--accent-primary);
    background-color: var(--bg-tertiary);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(242, 151, 24, 0.2);
}

.pmore-features-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.more-features-card .price {
    font-size: 44px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.more-features-card .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--fg-secondary);
}

.more-features-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.more-features-card li {
    padding: 12px 0;
    color: var(--fg-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.more-features-card li:last-child {
    border-bottom: none;
}

.more-features-card button {
    width: 100%;
    margin-top: 30px;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.newsletter p {
    color: var(--fg-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-secondary);
    color: var(--fg-primary);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--fg-tertiary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(242, 151, 24, 0.2);
}

.newsletter-form button {
    padding: 12px 30px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--fg-secondary);
    font-size: 18px;
}

/* Documentation Layout */
.doc-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 10px;
    padding: 30px 20px;
}

.doc-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.search-box input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-secondary);
    color: var(--fg-primary);
    margin-bottom: 30px;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.doc-nav h3 {
    font-size: 14px;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}

.doc-nav ul {
    list-style: none;
}

.doc-nav li {
    margin-bottom: 0px;
}

.doc-nav a {
    color: var(--fg-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
}

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

.doc-content {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.doc-content section {
    margin-bottom: 50px;
}

.doc-content h2 {
    font-size: 28px;
    color: var(--accent-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.doc-content h3 {
    font-size: 20px;
    color: var(--fg-primary);
    margin: 25px 0 15px 0;
}

.doc-content h4 {
    font-size: 16px;
    color: var(--accent-secondary);
    margin: 20px 0 10px 0;
}

.doc-content p {
    color: var(--fg-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.doc-content div {
    color:  var(--fg-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

code {
    font-family: monospace; /* Use a monospaced font for code readability */
    color: var(--fg-primary);
}

table {
    border-collapse: collapse;
}


table {
    margin-top: 10;
    margin-bottom: 0;
}

th, td {
    border: 1px solid;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.nw {
    white-space: nowrap;
}

.doc-content ul,
.doc-content ol {
    margin: 20px 0 20px 30px;
    color: var(--fg-secondary);
}

.doc-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.doc-content strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.shortcuts-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    background-color: var(--bg-tertiary);
    border-radius: 6px;
    overflow: hidden;
}

.shortcuts-table th {
    background-color: var(--bg-primary);
    color: var(--accent-primary);
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.shortcuts-table td {
    border-top: 1px solid var(--border-color);
    padding: 12px;
    color: var(--fg-secondary);
}

.faq {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--accent-primary);
}

.faq-item p {
    color: var(--fg-secondary);
    line-height: 1.8;
}

/* Blog Section */
.blog-section {
    padding: 60px 20px;
    background-color: var(--bg-primary);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--bg-secondary);
    color: var(--fg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
}

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

.blog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px var(--shadow);
}

.blog-image {
    background-color: var(--bg-tertiary);
    padding: 40px;
    font-size: 48px;
    text-align: center;
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    background-color: var(--accent-primary);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card time {
    display: block;
    color: var(--fg-tertiary);
    font-size: 13px;
    margin-bottom: 12px;
}

.blog-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--fg-primary);
    line-height: 1.5;
}

.blog-card p {
    color: var(--fg-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-secondary);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.page-info {
    color: var(--fg-secondary);
    font-size: 14px;
}

/* Newsletter in Blog */
.newsletter-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-section h2 {
    font-size: 32px;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.newsletter-section p {
    color: var(--fg-secondary);
    margin-bottom: 25px;
}

.newsletter-section .newsletter-form {
    margin-bottom: 20px;
}

.newsletter-note {
    color: var(--fg-tertiary);
    font-size: 12px;
}

/* Categories Sidebar */
.categories-sidebar {
    padding: 60px 20px;
    background-color: var(--bg-primary);
}

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

.sidebar-section h3 {
    font-size: 18px;
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.category-list,
.popular-list {
    list-style: none;
}

.category-list li,
.popular-list li {
    margin-bottom: 12px;
}

.category-list a,
.popular-list a {
    color: var(--fg-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.category-list a:hover,
.popular-list a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    background-color: var(--bg-secondary);
    color: var(--fg-secondary);
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

/* Download Section */
.download-section {
    padding: 40px 20px;
    background-color: var(--bg-primary);
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px; /* Adds 50px space between all grid items */
}

.download-card {
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 20px 50px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.download-card-remotes {
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 20px 50px;
    text-align: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    max-width: 800px;
}

.download-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 20px 50px rgba(242, 151, 24, 0.2);
}

.download-card-remotes:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 20px 50px rgba(242, 151, 24, 0.2);
}

.download-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.download-card h2 {
    font-size: 28px;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.download-card-remotes h2 {
    font-size: 28px;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.download-card p {
    color: var(--fg-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.system-requirements {
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.system-requirements h4 {
    color: var(--accent-primary);
    margin-bottom: 15px;
    font-size: 16px;
}

.system-requirements ul {
    list-style: none;
    color: var(--fg-secondary);
    font-size: 14px;
}

.system-requirements li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.system-requirements li:last-child {
    border-bottom: none;
}

.version-info {
    color: var(--fg-tertiary);
    font-size: 13px;
    margin-top: 20px;
}

/* Versions Section */
.versions {
    padding: 60px 20px;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.versions h2 {
    font-size: 32px;
    color: var(--accent-primary);
    margin-bottom: 50px;
}

.version-list {
    max-width: 800px;
    margin: 0 auto;
}

.version-item {
    background-color: var(--bg-primary);
    border-left: 4px solid var(--accent-primary);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.version-item:hover {
    box-shadow: 0 10px 30px var(--shadow);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.version-header h3 {
    font-size: 22px;
    color: var(--accent-primary);
    margin: 0;
}

.version-header .date {
    color: var(--fg-tertiary);
    font-size: 13px;
}

.version-content h4 {
    color: var(--accent-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.version-content ul {
    list-style: none;
    margin: 10px 0 20px 0;
    color: var(--fg-secondary);
    font-size: 14px;
}

.version-content li {
    padding: 6px 0 6px 20px;
    border-bottom: none;
    position: relative;
}

.version-content li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

/* Release Notes */
.release-notes {
    padding: 60px 20px;
    background-color: var(--bg-primary);
}

.release-notes h2 {
    font-size: 32px;
    color: var(--accent-primary);
    text-align: center;
    margin-bottom: 50px;
}

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

.info-card {
    background-color: var(--bg-secondary);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 20px;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--fg-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* FAQ Download */
.faq-download {
    padding: 60px 20px;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.faq-download h2 {
    font-size: 32px;
    color: var(--accent-primary);
    text-align: center;
    margin-bottom: 50px;
}

.faq-download .faq {
    max-width: 800px;
    margin: 0 auto;
}

/* Requirements Grid */
.system-info {
    padding: 60px 20px;
    background-color: var(--bg-primary);
}

.system-info h2 {
    font-size: 32px;
    color: var(--accent-primary);
    text-align: center;
    margin-bottom: 50px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.requirement-card {
    background-color: var(--bg-secondary);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.requirement-card h3 {
    font-size: 20px;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    padding: 12px 0;
    color: var(--fg-secondary);
    font-size: 14px;
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
}

.requirement-card li:last-child {
    border-bottom: none;
}

.requirement-card strong {
    color: var(--accent-primary);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    color: var(--accent-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: var(--fg-secondary);
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-section a {
    color: var(--fg-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--fg-tertiary);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }

    .features h2,
    .versions h2,
    .release-notes h2 {
        font-size: 28px;
    }

    .features-grid,
    .release-info-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .showcase-content {
        grid-template-columns: 1fr;
    }

    .doc-layout {
        grid-template-columns: 1fr;
    }

    .doc-sidebar {
        position: static;
    }

    .doc-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .page-header h1 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: auto;
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .more-features-card.featured {
        transform: scale(1);
    }

    .version-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .doc-nav {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        font-size: 12px;
        padding: 8px 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}