:root {
    --black: #000000;
    --dark-gray: #111111;
    --gold-1: #d71010 ;
    --gold-2: #f34545 ;
    --metallic-gold: #fff;
    --text-light: #ffffff;
    --text-muted: #cccccc
}

h1 {
    text-align: center;
    background: #000;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 800
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: transparent;
    padding: 20px
}

.faq-item {
    background: var(--dark-gray);
    border: 1px solid var(--gold-1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(181, 126, 16, .3);
    transition: .3s
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 224, 123, .5)
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    color: var(--text-light);
    background: linear-gradient(to top right, rgb(0, 0, 0) 50%, rgba(255,0,0,0.8) 100%);
    transition: background .4s, color .3s
}

.faq-question:hover {
    background: linear-gradient(to top right, rgba(255, 0, 0, 0.623) 00%, rgb(0, 0, 0) 100%);
    color:#fff
}

.faq-question::after {
    content: '►';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform .3s, color .3s;
    color:#fff
}

.faq-question.active::after {
    transform: rotate(90deg);
    color: #fff
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s, padding .4s;
    background: linear-gradient(to top right, rgb(0, 0, 0) 50%, rgba(255,0,0,0.8) 100%);
    border-top: 1px solid rgba(249, 224, 123, .3);
    padding: 0 20px
}

.faq-answer p {
    color: var(--text-muted);
    margin: 15px 0;
    line-height: 1.6
}

.faq-answer.open {
    background-color: #1a1a1a;
    border-top: 1px solid var(--gold-1)
}

@media (max-width:768px) {
    h1 {
        font-size: 1.8rem
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px
    }

    .faq-question::after {
        font-size: 18px
    }

    .faq-answer {
        padding: 0 15px
    }
}

@media (max-width:480px) {
    h1 {
        font-size: 1.6rem
    }

    .faq-question {
        padding: 12px;
        font-size: .95rem
    }

    .faq-question::after {
        font-size: 16px;
        right: 15px
    }

    .faq-answer p {
        font-size: .9rem
    }
}