body {
    background: #0e0e0e;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 30px;
}

.help-title {
    font-size: 2.5rem;
    color: #ff8000;
    margin-bottom: 30px;
    text-align: center;
}

.accordion {
    max-width: 900px;
    margin: auto;
}

.accordion-item {
    background: #1a1a1a;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #444;
}

.accordion-header {
    width: 100%;
    background: #ff8000;
    color: #000;
    cursor: pointer;
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    text-align: left;
    font-weight: bold;
}

.accordion-header.active {
    background: #e67000;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #121212;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.accordion-content p {
    margin: 15px 0;
}

.accordion-content iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}
