/* ===================================
   DARK THEME SECTIONS
   =================================== */

/* Override body background for consistency */
.main {
    background: #121212;
    max-width: 100%;
    padding: 0;
}

/* ===================================
   HOW TO DOWNLOAD SECTION
   =================================== */
.how-to-section {
    background: #1a1a1a;
    padding: 5rem 2rem;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.how-to-section h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
}

/* Horizontal 4-step layout */
.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.step-item {
    background: transparent;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-item:hover {
    transform: translateY(-8px);
    background: rgba(29, 185, 84, 0.05);
}

/* Step number with gradient circle */
.step-number {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-weight: 900;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(29, 185, 84, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.step-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-details p {
    margin: 0.5rem 0;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    text-align: left;
}

.step-details li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
}

.step-details strong {
    color: rgba(255, 255, 255, 0.8);
}

.browser-tip {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(29, 185, 84, 0.1);
    border-left: 3px solid #1DB954;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.steps-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-note .inline-link {
    color: #1DB954;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.steps-note .inline-link:hover {
    color: #1ed760;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    background: #121212;
    padding: 5rem 2rem;
    margin: 0;
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
}

.features-section .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-card h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    border-radius: 2px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: #1DB954;
    border-radius: 50%;
}

/* Why Choose Us */
.why-choose-us {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(29, 185, 84, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(29, 185, 84, 0.1);
}

.why-choose-us h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-choose-us li {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
}

.why-choose-us li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #000;
    font-size: 0.9rem;
}

/* FAQ in features section */
.faq-section {
    margin-top: 4rem;
    background: transparent !important;
}

.faq-section h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    background: transparent !important;
    padding: 1.5rem 0;
    border-radius: 0;
    box-shadow: none !important;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-item summary {
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.2s ease;
}

.faq-item summary:hover {
    color: #1DB954 !important;
}

.faq-item summary::before {
    content: '▼';
    font-size: 0.8rem;
    color: #1DB954;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::before {
    transform: rotate(-180deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7;
    padding: 1rem 0;
    padding-left: 1.8rem;
    background: transparent !important;
}

.view-more {
    text-align: center;
    margin-top: 2rem;
}

.faq-link {
    color: #1DB954;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.faq-link:hover {
    color: #1ed760;
}

/* Chrome Extension promo */
.chrome-extension {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(29, 185, 84, 0.1);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(29, 185, 84, 0.2);
}

.chrome-extension h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.chrome-extension p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.chrome-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    border: none;
    border-radius: 12px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}

.chrome-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.5);
}

.chrome-button .chrome-icon {
    width: 24px;
    height: 24px;
}

/* ===================================
   USE CASES SECTION
   =================================== */
.use-cases {
    background: #1a1a1a;
    padding: 5rem 2rem;
    margin: 0;
}

.use-cases h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-card {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: left;
}

.use-case-card:hover {
    transform: translateY(-4px);
}

.use-case-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.use-case-card h3::before {
    content: '';
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ===================================
   POPULAR DOWNLOADS SECTION
   =================================== */
.popular-downloads {
    background: #121212;
    padding: 5rem 2rem;
    margin: 0;
}

.popular-downloads h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 4rem;
}

.download-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.download-type {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.download-type h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-type ul {
    list-style: none;
    padding: 0;
}

.download-type li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.download-type li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1DB954;
    font-weight: 700;
}

/* ===================================
   FEATURES HIGHLIGHT SECTION
   =================================== */
.features-highlight {
    background: #1a1a1a;
    padding: 5rem 2rem;
    margin: 0;
}

.features-highlight h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
}

.features-highlight .features-grid {
    grid-template-columns: repeat(2, 1fr);
}

.feature-item {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    text-align: left;
}

.feature-item h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ===================================
   FEEDBACK SECTION
   =================================== */
.feedback-section {
    background: #1e1e1e;
    padding: 5rem 2rem;
    margin: 0;
}

.feedback-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feedback-text {
    text-align: left;
}

.feedback-text h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feedback-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    margin-top: 1rem;
}

.feedback-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#feedbackForm {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.feedback-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feedback-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.feedback-input:focus {
    outline: none;
    border-color: #1DB954;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}

textarea.feedback-input {
    min-height: 120px;
    resize: vertical;
}

#feedbackForm .primary-button {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: #000;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
    width: 100%;
}

#feedbackForm .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(29, 185, 84, 0.5);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .steps-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-list::before {
        display: none;
    }

    .features-grid,
    .use-cases-grid,
    .download-types,
    .features-highlight .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-us ul {
        grid-template-columns: 1fr;
    }

    .feedback-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feedback-text {
        text-align: center;
    }

    .feedback-text h2 {
        font-size: 2.2rem;
    }

    .feedback-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .how-to-section h2,
    .features-section h2,
    .use-cases h2,
    .popular-downloads h2,
    .features-highlight h2,
    .feedback-text h2 {
        font-size: 2rem;
    }
}
