body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #fff;
    text-align: center;
    padding: 20px;
    transition: background 0.3s ease-in-out;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}



.faq-item {
    background-color: #1e1e1e;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

.faq-item:hover {
    transform: scale(1.02);
}

.faq-question {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease-in-out;
}

.faq-question:hover {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
}

.faq-answer {
    padding: 15px;
    display: none;
    background-color: #292929;
    color: #ddd;
    border-radius: 0 0 10px 10px;
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    transition: transform 0.2s ease-in-out;
}

.faq-question.active::after {
    content: "-";
}

.code-container {
    background-color: #1e1e1e;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
    font-family: monospace;
    overflow: auto;
}

code {
    white-space: nowrap;
    font-size: 14px;
}

.copy-btn {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #FF5722, #FF9800);
    transform: scale(1.1);
}

.warning {
    color: #FF6347;
    font-size: 14px;
    font-weight: bold;
}


.link {
    text-decoration: none; color: white;
}


button#backToHome {
    display: flex;
    padding: 12px 24px;
    font-size: 16px;
    background: linear-gradient(135deg, #FF4081, #4CAF50);
    border-radius: 30px;
    border: none;
    color: white;
    font-weight: bold;
    text-shadow: 0px 2px 10px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    justify-self: center;
}

button#backToHome:hover {
    background: linear-gradient(135deg, #000000, #FF4081);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
button#backToHome:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
