/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px; /* Add padding to prevent content from hiding behind fixed navbar */
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #4ecdc4;
}

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

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    width: 70%;
}

/* Hero section - takes 60% of viewport height */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Content section */
.content {
    min-height: 100vh;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: left;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #4ecdc4;
    text-align: left;
}

.subsection-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
    text-align: left;
}

.content-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 800px;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.feature-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.controls-list {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.8rem;
}

.controls-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    padding: 0.8rem 1.2rem;
    background: rgba(78, 205, 196, 0.1);
    border-left: 3px solid #4ecdc4;
    border-radius: 4px;
}

.controls-list strong {
    color: #ff6b6b;
}

/* Page Header (for other pages) */
.page-header {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background-color: #000000;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
}

/* Contributors Section */
.contributors-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contributor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contributor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.contributor-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid #4ecdc4;
    transition: all 0.3s ease;
}

.contributor-card:hover .contributor-image {
    border-color: #ff6b6b;
    transform: scale(1.05);
}

.contributor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contributor-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contributor-github {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ecdc4;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contributor-github:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

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

.contributor-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    text-align: center;
}

/* Changelog Section */
.changelog-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4ecdc4, #ff6b6b);
}

.timeline-date {
    position: relative;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.timeline-date:first-child {
    margin-top: 0;
}

.timeline-date::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4ecdc4;
    border: 2px solid #000000;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.3);
}

.date-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.changelog-entry {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(78, 205, 196, 0.3);
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.changelog-entry:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: #4ecdc4;
    transform: translateX(5px);
}

.changelog-entry.version {
    border-left-color: rgba(255, 107, 107, 0.5);
}

.changelog-entry.version:hover {
    border-left-color: #ff6b6b;
}

.changelog-entry.patch {
    border-left-color: rgba(69, 183, 209, 0.5);
}

.changelog-entry.patch:hover {
    border-left-color: #45b7d1;
}

.changelog-entry.clean {
    border-left-color: rgba(78, 205, 196, 0.5);
}

.changelog-entry.clean:hover {
    border-left-color: #4ecdc4;
}

.changelog-entry.debug {
    border-left-color: rgba(255, 193, 7, 0.5);
}

.changelog-entry.debug:hover {
    border-left-color: #ffc107;
}

.changelog-entry.issue {
    border-left-color: rgba(220, 53, 69, 0.5);
}

.changelog-entry.issue:hover {
    border-left-color: #dc3545;
}

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #cf8018, #f32011);
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 1rem;
    letter-spacing: 0.5px;
}

.entry-type {
    display: inline-block;
    color: #4ecdc4;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.changelog-entry.patch .entry-type {
    color: #45b7d1;
}

.changelog-entry.clean .entry-type {
    color: #4ecdc4;
}

.changelog-entry.debug .entry-type {
    color: #ffc107;
}

.changelog-entry.issue .entry-type {
    color: #dc3545;
}

.entry-text {
    display: inline;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Expandable changelog entries */
.changelog-entry.expandable {
    cursor: pointer;
}

.changelog-entry.expandable .entry-text::after {
    content: ' ▼';
    font-size: 0.8rem;
    color: #4ecdc4;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.changelog-entry.expandable.expanded .entry-text::after {
    transform: rotate(180deg);
}

.entry-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.changelog-entry.expanded .entry-details {
    max-height: 1000px;
    margin-top: 1rem;
}

.entry-details ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.entry-details li {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
}

.entry-details li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #4ecdc4;
    font-weight: bold;
}

/* Help Section */
.help-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(78, 205, 196, 0.4);
}

.faq-item.active {
    border-color: #4ecdc4;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(78, 205, 196, 0.05);
}

.question-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
}

.faq-icon {
    font-size: 2rem;
    color: #4ecdc4;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff6b6b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 5000px;
    padding: 0 2rem 2rem 2rem;
}

.answer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.answer-subtitle:first-child {
    margin-top: 0;
}

.answer-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.answer-note {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(78, 205, 196, 0.1);
    border-left: 3px solid #4ecdc4;
    border-radius: 4px;
}

.answer-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.answer-list li {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.answer-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.code-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 6px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    overflow-x: auto;
}

.code-block code {
    display: block;
    color: #4ecdc4;
    font-size: 0.95rem;
    line-height: 1.8;
}

.code-block .code-comment {
    color: #888;
    font-style: italic;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.control-item {
    background: rgba(78, 205, 196, 0.1);
    border-left: 3px solid #4ecdc4;
    padding: 1rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-item strong {
    color: #ff6b6b;
    font-size: 1rem;
    font-weight: 600;
}

.control-item span {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Download Section */
.download-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.download-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Version accordion items */
.version-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.version-item:hover {
    border-color: rgba(78, 205, 196, 0.4);
}

.version-item.active {
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.15);
}

.version-item.latest {
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(255, 107, 107, 0.03);
}

.version-item.latest:hover {
    border-color: rgba(255, 107, 107, 0.6);
}

.version-item.latest.active {
    border-color: #ff6b6b;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
}

.version-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.version-toggle:hover {
    background: rgba(78, 205, 196, 0.05);
}

.version-item.latest .version-toggle:hover {
    background: rgba(255, 107, 107, 0.05);
}

.toggle-icon {
    font-size: 2rem;
    color: #4ecdc4;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    min-width: 30px;
    text-align: center;
}

.version-item.active .toggle-icon {
    transform: rotate(45deg);
    color: #ff6b6b;
}

.version-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2.5rem;
}

.version-item.active .version-content {
    max-height: 5000px;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

.version-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.version-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.latest-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.version-date {
    color: #4ecdc4;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.version-description {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.download-options {
    margin-bottom: 2rem;
}

.options-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid #4ecdc4;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-button:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: #ff6b6b;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.download-button.installer {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.download-button.installer:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(78, 205, 196, 0.2);
    border-radius: 8px;
    color: #4ecdc4;
    flex-shrink: 0;
}

.download-button.installer .button-icon {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.button-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.button-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.button-subtitle {
    font-size: 0.9rem;
    color: #888;
}

.version-features {
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
}

.features-list li {
    color: #e0e0e0;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.version-info {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
}

.info-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.inline-link {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.future-versions {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(78, 205, 196, 0.3);
    border-radius: 8px;
}

.future-text {
    color: #888;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.future-text svg {
    flex-shrink: 0;
}

.download-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(78, 205, 196, 0.05);
    border-left: 3px solid #4ecdc4;
    border-radius: 8px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.footer-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .nav-link {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .content {
        padding: 3rem 1.5rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .subsection-title {
        font-size: 1.2rem;
    }
    
    .content-text {
        font-size: 1.1rem;
    }
    
    .feature-list li {
        font-size: 1rem;
    }
    
    .controls-list {
        grid-template-columns: 1fr;
    }
    
    .controls-list li {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 5rem 1.5rem 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .contributors-section {
        padding: 3rem 1.5rem;
    }
    
    .contributors-grid {
        gap: 2rem;
    }
    
    .changelog-section {
        padding: 3rem 1.5rem;
    }
    
    .timeline {
        padding-left: 2.5rem;
    }
    
    .date-title {
        font-size: 1.2rem;
    }
    
    .changelog-entry {
        padding: 0.9rem 1.2rem;
    }
    
    .version-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.7rem;
    }
    
    .entry-type {
        font-size: 0.85rem;
    }
    
    .entry-text {
        font-size: 0.95rem;
    }
    
    .help-section {
        padding: 3rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .controls-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .download-section {
        padding: 3rem 1.5rem;
    }
    
    .version-toggle {
        padding: 1.5rem 2rem;
    }
    
    .version-content {
        padding: 0 2rem;
    }
    
    .version-item.active .version-content {
        padding: 0 2rem 2rem 2rem;
    }
    
    .version-number {
        font-size: 1.8rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .download-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 50px;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .content {
        padding: 2rem 1rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-top: 2rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .feature-list li {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
    
    .controls-list li {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    
    .page-header {
        padding: 4rem 1rem 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .contributors-section {
        padding: 2rem 1rem;
    }
    
    .contributors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contributor-card {
        padding: 1.5rem;
    }
    
    .contributor-image {
        width: 120px;
        height: 120px;
    }
    
    .changelog-section {
        padding: 2rem 1rem;
    }
    
    .timeline {
        padding-left: 2rem;
    }
    
    .timeline::before {
        left: 0.3rem;
    }
    
    .timeline-date::before {
        left: -1.7rem;
        width: 10px;
        height: 10px;
    }
    
    .timeline-date {
        margin-top: 2.5rem;
    }
    
    .date-title {
        font-size: 1.1rem;
    }
    
    .changelog-entry {
        padding: 0.8rem 1rem;
        margin-bottom: 0.6rem;
    }
    
    .version-badge {
        display: block;
        width: fit-content;
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .entry-type {
        display: block;
        margin-bottom: 0.3rem;
        font-size: 0.8rem;
    }
    
    .entry-text {
        display: block;
        font-size: 0.9rem;
    }
    
    .help-section {
        padding: 2rem 1rem;
    }
    
    .faq-question {
        padding: 1rem 1rem;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        font-size: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1.5rem 1rem;
    }
    
    .answer-subtitle {
        font-size: 1rem;
        margin-top: 1.2rem;
    }
    
    .answer-text {
        font-size: 0.95rem;
    }
    
    .code-block {
        padding: 0.8rem 1rem;
    }
    
    .code-block code {
        font-size: 0.85rem;
    }
    
    .controls-grid {
        grid-template-columns: 1fr;
    }
    
    .control-item {
        padding: 0.8rem;
    }
    
    .control-item strong {
        font-size: 0.95rem;
    }
    
    .control-item span {
        font-size: 0.9rem;
    }
    
    .download-section {
        padding: 2rem 1rem;
    }
    
    .version-toggle {
        padding: 1.5rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .toggle-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }
    
    .version-content {
        padding: 0 1.5rem;
    }
    
    .version-item.active .version-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .version-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .version-number {
        font-size: 1.6rem;
    }
    
    .latest-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .download-button {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
        text-align: center;
    }
    
    .button-icon {
        width: 40px;
        height: 40px;
    }
    
    .button-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .button-title {
        font-size: 1rem;
    }
    
    .button-subtitle {
        font-size: 0.85rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .download-footer {
        padding: 1.2rem;
        margin-top: 2rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-text {
        font-size: 0.95rem;
    }
}