.section {
    padding-top: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.plugins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.faq-item {
    position: relative;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px calc(15% + 35px) 25px 25px;
    transition: all 0.3s ease;
}

.plugin-download {
    position: absolute;
    right: 0;
    top: 0;
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.plugin-download i {
    font-size: 1.5rem;
    padding: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: border-color 0.3s ease;
    color: rgba(0, 0, 0, 0.1);
}

.plugin-download:hover {
    opacity: 1;
}

.plugin-download:hover i {
    border-color: rgba(0, 0, 0, 0.5);
    color: rgba(0, 0, 0, 0.5);
}

.plugin-download:hover {
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.dark-mode .plugin-download {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .plugin-download i {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.1);
}

.dark-mode .plugin-download:hover i {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.5);
}

.dark-mode .plugin-download:hover {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: block;
    margin-bottom: 15px;
}

.faq-question h3 {
    font-size: 1.25rem;
    margin: 0;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
}

.plugins-details {
    max-width: 800px;
    margin: 0 auto;
}

.plugin-detail {
    margin-bottom: 60px;
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-color);
}

.plugin-detail h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.plugin-detail p {
    margin-bottom: 20px;
    color: var(--text-color);
    opacity: 0.8;
}

.plugin-detail ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.plugin-detail ul li {
    margin-bottom: 10px;
    color: var(--text-color);
    opacity: 0.8;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    background: var(--bg-color);
    border-radius: 12px;
    padding: 20px;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

#video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

#video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .plugins-grid {
        grid-template-columns: 1fr;
    }
    
    .plugin-detail {
        padding: 25px;
    }

    .plugin-download {
        width: 20%;
    }
}
