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

body {
    font-family: "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
    background-color: #f8f8f8;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 32px;
    color: #4a90e2;
}

.logo-text {
    font-size: 12px;
    line-height: 1.2;
}

.main-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    flex-grow: 1;
}

.header-right {
    display: flex;
    align-items: center;
}

.osi-badge {
    background-color: #4a90e2;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

/* Main content layout */
.main-content {
    display: flex;
    min-height: 600px;
}

/* Sidebar */
.sidebar {
    width: 200px;
    background-color: #f0f0f0;
    border-right: 1px solid #ccc;
    padding: 0;
}

.nav-section {
    border-bottom: 1px solid #ddd;
}

.nav-section.home {
    background-color: #90EE90;
}

.nav-section.forums {
    background-color: #87CEEB;
}

.nav-section.getting .section-header {
    background-color: #FFB347;
    color: #000;
    font-weight: bold;
    padding: 6px 12px;
    font-size: 12px;
}

.nav-section.info .section-header {
    background-color: #DDA0DD;
    color: #000;
    font-weight: bold;
    padding: 6px 12px;
    font-size: 12px;
}

.nav-section.support .section-header {
    background-color: #F08080;
    color: #000;
    font-weight: bold;
    padding: 6px 12px;
    font-size: 12px;
}

.nav-link {
    display: block;
    padding: 6px 12px;
    color: #0066cc;
    text-decoration: underline;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.nav-link:hover {
    background-color: #e8e8e8;
    text-decoration: none;
}

/* Content area */
.content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
}

/* Home page styles */
.home-content {
    max-width: 700px;
}

.tagline {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
    border-left: 3px solid #4a90e2;
    padding-left: 15px;
}

.news-section {
    margin-bottom: 30px;
}

.news-section h2 {
    color: #4a90e2;
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.news-item {
    margin-bottom: 8px;
    font-size: 13px;
}

.news-item a {
    color: #0066cc;
    text-decoration: underline;
}

.news-item a:hover {
    text-decoration: none;
}

.news-archive {
    margin-top: 10px;
    font-size: 12px;
}

.main-text h3 {
    color: #333;
    font-size: 16px;
    margin: 20px 0 10px 0;
}

.main-text p {
    margin-bottom: 15px;
    text-align: justify;
}

.main-text a {
    color: #0066cc;
    text-decoration: underline;
}

.main-text a:hover {
    text-decoration: none;
}

blockquote {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a90e2;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 12px;
}

.screenshot-section {
    margin-top: 30px;
    text-align: center;
}

.screenshot {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Support page styles */
.support-content {
    max-width: 600px;
}

.support-content h2 {
    color: #4a90e2;
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 5px;
}

.support-content h3 {
    color: #333;
    font-size: 16px;
    margin: 25px 0 10px 0;
}

.support-intro {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f0f8ff;
    border: 1px solid #b0d4f1;
    border-radius: 4px;
}

.login-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.login-form {
    margin-top: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.login-button {
    background-color: #4a90e2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.login-button:hover {
    background-color: #357abd;
}

.error-message {
    background-color: #ffe6e6;
    color: #d00;
    padding: 10px;
    border: 1px solid #ffcccc;
    border-radius: 4px;
    margin-bottom: 15px;
    font-weight: bold;
}

.support-options ul {
    list-style-type: disc;
    margin-left: 20px;
}

.support-options li {
    margin-bottom: 8px;
}

.community-section {
    padding: 15px;
    background-color: #f0f8ff;
    border: 1px solid #b0d4f1;
    border-radius: 4px;
}

.forum-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.forum-link:hover {
    background-color: #357abd;
    text-decoration: none;
}

/* Footer */
.footer {
    border-top: 1px solid #ccc;
    padding: 15px 20px;
    background-color: #f8f8f8;
    text-align: center;
    font-size: 11px;
    color: #666;
}

.footer a {
    color: #0066cc;
    text-decoration: underline;
}

.footer a:hover {
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        order: 2;
    }
    
    .content {
        order: 1;
    }
    
    .header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .main-title {
        font-size: 20px;
    }
}



/* Additional page styles */
.page-content {
    max-width: 800px;
}

.page-content h2 {
    color: #4a90e2;
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 5px;
}

.page-content h3 {
    color: #333;
    font-size: 16px;
    margin: 25px 0 10px 0;
}

/* Forum styles */
.forum-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.forum-stats {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.forum-button {
    background-color: #4a90e2;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.forum-button.secondary {
    background-color: #666;
}

/* Features page styles */
.feature-category {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.feature-category ul {
    list-style-type: disc;
    margin-left: 20px;
}

.feature-category li {
    margin-bottom: 8px;
}

.feature-link {
    display: inline-block;
    margin: 10px 10px 0 0;
    padding: 8px 15px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* Screenshots page styles */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.screenshot-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
}

.screenshot-container {
    margin: 10px 0;
}

.screenshot-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
}

.screenshot-placeholder {
    height: 200px;
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.placeholder-content {
    text-align: center;
    color: #666;
}

.placeholder-content span {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

/* Downloads page styles */
.download-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.download-section.featured {
    border-color: #4a90e2;
    background-color: #f0f8ff;
}

.download-options {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.download-option {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.download-btn {
    background-color: #4a90e2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.download-btn.primary {
    background-color: #2c5aa0;
}

.download-btn.beta {
    background-color: #ff6b35;
}

.version-list {
    margin: 15px 0;
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* FAQ styles */
.faq-section {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.faq-item h4 {
    color: #4a90e2;
    margin-bottom: 8px;
}

/* Awards page styles */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.award-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.award-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.award-year {
    color: #666;
    font-weight: bold;
    margin: 5px 0;
}

.testimonial {
    margin: 20px 0;
    padding: 15px;
    background-color: #f0f8ff;
    border-left: 4px solid #4a90e2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #4a90e2;
    color: white;
    border-radius: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    display: block;
}

/* Links page styles */
.links-section {
    margin-bottom: 25px;
}

.links-section ul {
    list-style-type: disc;
    margin-left: 20px;
}

.links-section li {
    margin-bottom: 5px;
}

/* Translations page styles */
.translation-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background-color: #4a90e2;
    color: white;
    border-radius: 4px;
    min-width: 120px;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.language-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.language-item.complete {
    background-color: #e8f5e8;
    border-color: #4caf50;
}

.language-item.partial {
    background-color: #fff3cd;
    border-color: #ffc107;
}

.help-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.help-step {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

/* Plugins page styles */
.plugin-category {
    margin-bottom: 30px;
}

.plugin-list {
    margin-top: 15px;
}

.plugin-item {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.plugin-meta {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.plugin-meta span {
    margin-right: 15px;
}

.installation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.step {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.security-notice {
    padding: 15px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    margin: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .download-options {
        flex-direction: column;
    }
    
    .translation-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

