/* CSS - style.css for FalconCast */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light grey text */
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    color: #ffffff; /* White headings */
    margin-bottom: 0.75em;
    line-height: 1.2;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; margin-top: 1em;}
h3 { font-size: 1.6em; }

p {
    margin-bottom: 1em;
}

a {
    color: #3498db; /* Blue links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9; /* Darker blue on hover */
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.site-header {
    background-color: #1f1f1f; /* Slightly lighter dark for header */
    padding: 15px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px; /* Adjust as needed */
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: #e0e0e0;
    font-weight: 600;
    padding: 10px 5px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #3498db;
    border-bottom: 2px solid #3498db;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-menu {
    display: none;
    background-color: #1f1f1f;
    position: fixed; /* Change from absolute to fixed */
    top: 77px; /* Adjust based on header height */
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid #333;
    max-height: calc(100vh - 77px); /* Limit height to viewport minus header */
    overflow-y: auto; /* Add scrolling if menu is too tall */
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #e0e0e0;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    transition: background-color 0.3s ease;
}

.mobile-nav-menu ul li a:hover {
    background-color: #2a2a2a;
    color: #3498db;
}

.mobile-nav-menu ul li:last-child a {
    border-bottom: none;
}


/* General Section Styling */
section {
    padding: 60px 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/hero-bg.jpg'); /* Add a placeholder or actual background image */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 0.3em;
    font-weight: 700;
}

.hero-content .tagline {
    font-size: 1.4em;
    margin-bottom: 1em;
    color: #cccccc;
}

.hero-content p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

.hero-buttons .btn {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #3498db; /* Blue */
    color: #fff;
    border: 1px solid #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 1px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9em;
}

.hero-image {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.hero-image img {
    border: 3px solid #3498db;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
}

/* About Section / Info Table */
.about-section {
    background-color: #1a1a1a;
}

.info-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.info-table th, .info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.info-table th {
    background-color: #2c2c2c;
    color: #3498db;
    font-weight: 600;
    width: 30%;
}

.info-table td {
    color: #ccc;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.feature-item i {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.4em;
    color: #fff;
    margin-bottom: 10px;
}

.feature-item p {
    color: #bbb;
    font-size: 0.95em;
}

/* Download Guide Section */
.download-guide-section {
    background-color: #1a1a1a;
}
.steps .step {
    background-color: #222;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.steps .step h3 {
    font-size: 1.3em;
    color: #fff;
    margin-bottom: 10px;
}

.steps .step h3 span {
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    padding: 5px 10px;
    margin-right: 10px;
    font-size: 0.9em;
}

.steps .step p {
    color: #ccc;
}

.warning {
    background-color: rgba(219, 52, 68, 0.1);
    border: 1px solid #db3444;
    color: #db3444;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}
.warning i {
    margin-right: 8px;
}

/* FAQ Section */
.faq-item {
    background-color: #222;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #333;
}

.faq-item h3 {
    font-size: 1.3em;
    color: #fff;
    cursor: pointer; /* Optional: if you add JS for accordion later */
}

.faq-item p {
    color: #ccc;
    margin-top: 10px;
}

/* Footer Styles */
.site-footer {
    background-color: #1f1f1f;
    color: #aaa;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
    font-size: 0.9em;
}

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

.footer-logo-area .footer-logo {
    height: 40px;
    margin-bottom: 10px;
}

.footer-content h4 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 15px;
}

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

.footer-links ul li a {
    color: #aaa;
    margin-bottom: 8px;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #3498db;
}

.footer-social a {
    color: #aaa;
    margin-right: 10px;
    margin-bottom: 12px;
    font-size: 1.1em;
    display: inline-block;
    padding: 8px 12px;
    background-color: #252525;
    border-radius: 5px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.footer-social a i {
    margin-right: 5px;
    color: #3498db;
}

.footer-social a:hover {
    color: #fff;
    background-color: #2a2a2a;
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.footer-disclaimer p {
    font-size: 0.85em;
    color: #888;
}

.copyright-text {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
    color: #888;
}

/* App Demo Image Styles */
.app-demo-image {
    max-width: 100%;
    height: auto;
    border: 3px solid #3498db;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(52, 152, 219, 0.6);
}

/* App Screenshots Section */
.app-screenshots-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
}

.screenshots-slider {
    position: relative;
    margin: 40px auto 20px;
    max-width: 1000px;
    overflow: hidden;
}

.screenshot {
    display: none;
    padding: 15px;
    background-color: #222;
    border-radius: 10px;
    border: 1px solid #333;
    margin: 0 auto;
    max-width: 80%;
    transition: transform 0.3s ease;
}

.screenshot:first-child {
    display: block;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid #3498db;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.screenshot p {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.slider-btn {
    background-color: #2a2a2a;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #3498db;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: #444;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #3498db;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .screenshot {
        max-width: 95%;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.disclaimer-box p {
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    .hero-content h1 { font-size: 2.5em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.4em; }

    .main-nav {
        display: none; /* Hide main nav on mobile */
    }

    .mobile-nav-toggle {
        display: block; /* Show hamburger icon */
    }
    
    .site-header .container {
        padding: 0 15px; /* Ensure padding for header on mobile */
    }
    
    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2em;
    }
    
    .app-demo-image {
        max-width: 100%;
    }
    
    .screenshot {
        max-width: 100%;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 1em;
        display: block; /* Stack buttons */
        margin: 10px auto;
        width: 80%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr; /* Stack features */
    }

    .footer-content {
        grid-template-columns: 1fr; /* Stack footer sections */
        text-align: center;
    }
    
    .footer-logo-area, 
    .footer-links, 
    .footer-social, 
    .footer-disclaimer,
    .footer-quick-support {
        margin-bottom: 20px;
    }
    
    .footer-social a {
        margin: 0 10px 10px 10px;
    }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    h1 { font-size: 2em; }
    .hero-content h1 { font-size: 2.2em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.3em; }
    .container {
        width: 95%;
    }
}

/* Disclaimer Page Styles */
.disclaimer-section {
    padding: 60px 0;
}

.disclaimer-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #999;
    margin-bottom: 40px;
    font-style: italic;
}

.disclaimer-content {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.disclaimer-content h2 {
    font-size: 1.8em;
    color: #3498db;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.disclaimer-content h3 {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-top: 20px;
    margin-bottom: 10px;
}

.disclaimer-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.disclaimer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.disclaimer-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.disclaimer-content ul li:before {
    content: "â€¢";
    color: #3498db;
    position: absolute;
    left: 0;
}

.acceptance-notice {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 5px;
}

.acceptance-notice p {
    margin-bottom: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .disclaimer-section h1 {
        font-size: 2em;
    }
    
    .disclaimer-content {
        padding: 20px;
    }
    
    .disclaimer-content h2 {
        font-size: 1.6em;
    }
    
    .disclaimer-content h3 {
        font-size: 1.3em;
    }
}

/* Support Page Styles */
.support-section {
    padding: 60px 0;
}

.section-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #aaaaaa;
}

.support-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.support-form-container {
    flex: 1 1 500px;
}

.support-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.support-form {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e0e0e0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 1rem;
    color: #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.alert-error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.support-info-item {
    background-color: #1f1f1f;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.support-info-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
    display: block;
}

.support-info-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #ffffff;
}

.support-info-item p {
    color: #aaaaaa;
}

.support-info-item a {
    color: #3498db;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-info-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .support-content {
        flex-direction: column;
    }
    
    .support-info-item {
        padding: 20px;
    }
    
    .support-info-item i {
        font-size: 2rem;
    }
}

/* Footer Quick Support Form */
.footer-quick-support {
    flex: 1 1 300px;
}

.footer-support-form {
    background-color: #252525;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #333;
}

.footer-form-group {
    margin-bottom: 12px;
}

.footer-form-group input,
.footer-form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.footer-form-group input:focus,
.footer-form-group textarea:focus {
    border-color: #3498db;
    outline: none;
}

.footer-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.footer-submit {
    width: 100%;
    padding: 10px;
}

.footer-alert {
    font-size: 0.9rem;
    padding: 10px;
    margin-bottom: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #3498db;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 60px 0;
}

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

.blog-card {
    background-color: #1f1f1f;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.blog-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #ccc;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

/* Blog Post Styles */
.blog-post-section {
    padding: 60px 0;
}

.blog-post-header {
    margin-bottom: 30px;
    text-align: center;
}

.blog-post-meta {
    color: #888;
    font-size: 0.95rem;
    margin-top: 10px;
}

.blog-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #333;
}

.blog-intro {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.table-of-contents {
    background-color: #1f1f1f;
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid #333;
}

.table-of-contents h3 {
    margin-bottom: 15px;
    color: #3498db;
}

.table-of-contents ul {
    list-style-type: none;
    padding-left: 10px;
}

.table-of-contents ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.table-of-contents ul li:before {
    content: "â†’";
    position: absolute;
    left: 0;
    color: #3498db;
}

.table-of-contents ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents ul li a:hover {
    color: #3498db;
}

.blog-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.blog-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.blog-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-section ul, .blog-section ol {
    margin: 20px 0;
    padding-left: 20px;
    color: #ccc;
}

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

.emulator-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.emulator-card {
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.emulator-card:hover {
    transform: translateY(-5px);
}

.emulator-card img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.emulator-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3498db;
}

.emulator-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #ccc;
}

.step-guide {
    margin: 30px 0;
}

.step {
    background-color: #252525;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.step h4 {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step-image {
    max-width: 100%;
    border-radius: 5px;
    margin: 20px 0;
    border: 1px solid #444;
}

.requirements-table {
    margin: 30px 0;
}

.requirements-table h3 {
    margin: 20px 0 10px;
    color: #3498db;
}

.requirements-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.requirements-table th, .requirements-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.requirements-table th {
    background-color: #1a1a1a;
    color: #3498db;
    font-weight: 600;
}

.troubleshooting-item, .faq-item {
    background-color: #252525;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #333;
}

.troubleshooting-item h4, .faq-item h4 {
    color: #3498db;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-conclusion {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
    border: 1px solid #333;
}

.blog-conclusion h2 {
    color: #fff;
    border-bottom: none;
    padding-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .emulator-comparison {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .blog-post-header h1 {
        font-size: 1.8rem;
    }
}