@import url("carousel.css");

body {
    font-family: "Inter", Arial, sans-serif;
    margin: 0;
    background: #f7f8fa;
    color: #222;
}

header {
    background: #23272f;
    color: #fff;
    padding: 3.5rem 1rem 2.5rem 1rem;
    text-align: center;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ascii-title {
    font-family: "Fira Mono", "Consolas", "Menlo", "Monaco", monospace;
    font-size: 1.1em;
    color: #ffd700;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

header h1 {
    font-size: 2.6rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

header p {
    font-size: 1.25rem;
    margin: 0 0 1.5rem 0;
    color: #e0e0e0;
}

.open-source {
    color: #ffd700;
    font-weight: 600;
}

.cta-buttons {
    margin: 1.5rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}
.cta-buttons #download-btn {
    background: #ffd700;
    color: #23272f;
    text-decoration: none;
    font-weight: 600;
    padding: 0.9em 2em;
    border-radius: 2em;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.18s, color 0.18s;
    border: none;
    display: inline-block;
}
.cta-buttons #download-btn:hover {
    background: #ffe066;
    color: #111;
}
.other-browsers-dropdown {
    position: absolute;
    right: 1rem;
    display: inline-block;
}
#other-browsers-btn {
    background: none;
    border: none;
    color: #006e48;
    padding: 0.5em 1em;
    border-radius: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    text-decoration: underline;
    transition: color 0.2s;
    box-shadow: none;
}
#other-browsers-btn:hover,
#other-browsers-btn:focus {
    color: #003d28;
    background: none;
    text-decoration: underline;
}
#other-browsers-list {
    position: absolute;
    right: 0;
    top: 110%;
    min-width: 200px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 10;
    list-style: none;
    margin: 0;
    padding: 0.5em 0;
}
#other-browsers-list[hidden] {
    display: none;
}
#other-browsers-list li {
    margin: 0;
}
#other-browsers-list a {
    display: block;
    padding: 0.5em 1em;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}
#other-browsers-list a:hover,
#other-browsers-list a:focus {
    background: #f0f0f0;
    color: #006e48;
}

.features {
    max-width: 900px;
    margin: 2.5rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}
.feature {
    background: #fff;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
}
.feature span {
    font-size: 2.1em;
    margin-bottom: 0.5em;
    display: inline-block;
}
.feature h3 {
    margin: 0 0 0.5em 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #23272f;
}
.feature p {
    margin: 0;
    color: #444;
    font-size: 1em;
}

/* Comments Section */
.handpicked-comments h2 {
    text-align: center;
    color: #23272f;
    margin-bottom: 1.5em;
}
.handpicked-comments .comments-container {
    max-width: 1200px;
    gap: 1.5em;
}
@media (max-width: 1200px) {
    .handpicked-comments .comments-container {
        max-width: 94%;
    }
}

/* FAQ Section */
.faq {
    max-width: 800px;
    margin: 3em auto 2em auto;
    padding: 0 1em;
}
.faq h2 {
    text-align: center;
    color: #23272f;
    margin-bottom: 1.5em;
}
.faq-item {
    margin-bottom: 1.5em;
    background: #fff;
    border-radius: 0.8em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 1.2em 1.5em;
}
.faq-item h3 {
    margin: 0 0 0.5em 0;
    color: #006e48;
    font-size: 1.1em;
}
.faq-item p {
    margin: 0;
    color: #444;
    font-size: 1em;
}

footer {
    background: #23272f;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    font-size: 1em;
    margin-top: 2rem;
}
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
    .ascii-title {
        font-size: 0.8em;
    }
    .other-browsers-dropdown {
        position: relative;
    }
    .features {
        grid-template-columns: 1fr;
    }
}
