.V1FortNiteSingle h1 {
    margin-top: 38px;
    font-size: 30px;
    font-weight: 800;
}

.V1FortNiteSingle .FortNiteBigIMG img {
    margin-top: 30px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.V1FortNiteSingle .FortNiteSmallIMG img {
    padding: 30px 0px;
}

.V1FortNiteSingle input,
.V1FortNiteSingle button {
    background: #1b2431;
    border: 1px solid #0000009e;
    margin-bottom: 11px;
    padding: 16px 10px;
    text-align: center;
    width: 100%;
    border-radius: 10px;
}

.V1FortNiteSingle button {
    background: #ffbe00;
    color: #000;
    padding: 9px 5px;
    border: none;
    font-size: 18px;
}

.V1FortNiteSingle .FortniteV2Box {
    min-height: 400px;
}

/* استایل‌های جدید برای سلکت باکس سفارشی */
.select-selected {
    background-color: #1b2431;
    padding: 16px 10px;
    border: 1px solid #0000009e;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 1;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 25px;
    left: 20px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 17px;
}

.select-items {
    position: absolute;
    background-color: #1b2431;
    bottom: -33px;
    left: 0;
    right: 0;
    z-index: 2;
    border: 1px solid #0000009e;
    border-radius: 10px;
    margin-top: 0;
    max-height: 300px;
    overflow-y: auto;
}

.select-hide {
    display: none;
}

.select-items div {
    padding: 16px 10px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    color: #fff;
}

.select-items div:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* استایل‌های سوالات متداول */
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 0 0 44px;
    background: #11161d;
}

.faq-title {
    color: #ffbe00;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    margin-top: 70px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 190, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 190, 0, 0.05);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid rgba(255, 190, 0, 0.1);
}

.faq-icon {
    color: #ffbe00;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 0 15px;
    }

    .faq-question {
        font-size: 18px;
        padding: 12px 15px;
    }

    .faq-answer {
        font-size: 16px;
    }
}

.custom-select-dark {
    background-color: #0d1116;
    color: white;
    border: 1px solid #555;
    border-radius: 15px;
    padding: 16px 10px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: left 8px center;
    padding-left: 30px;
    box-shadow: 0px 0px 2px 2px #00000047;
}

/* استایل برای نمایش تصاویر در select */
.select-items {
    position: absolute;
    background-color: #0d1116;
    color: white;
    width: 100%;
    z-index: 99;
    border-radius: 15px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0px 0px 2px 2px #00000047;
}

.select-items div {
    padding: 12px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.select-items div:hover {
    background-color: #1a2330;
}

.select-items img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

.select-selected {
    background-color: #0d1116;
    border-radius: 15px;
    padding: 16px 10px;
    box-shadow: 0px 0px 2px 2px #00000047;
}

.select-selected img {
    width: 25px;
    height: 25px;
    margin-left: 10px;
}

.select-hide {
    display: none;
}