
.scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}


.scroll-content {
    display: flex;
    flex-wrap: nowrap;
    padding: 30px;
    gap: 15px;
}


.scroll-item {
    flex: 0 0 auto;
    width: 280px;
}


@media screen and (max-width: 768px) {
    .scroll-container {
        margin: 0 -15px;
    }

    .scroll-item {
        width: 220px;
    }
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.auto-scroll {
    animation: scroll 20s linear infinite;
}


.payment-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 15px;
}


@media screen and (min-width: 769px) {
    .scroll-content {
        justify-content: center;
        animation: none;
        flex-wrap: wrap;
    }

    .mobile-only-icons {
        display: none;
    }
}


@media screen and (max-width: 768px) {
    .scroll-container {
        width: 100%;
        overflow-x: hidden;
    }

    .scroll-content {
        display: flex;
        gap: 0;
        padding: 15px 0;
        width: 200%;
    }

    .payment-icon {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 10px;
    }

    .mobile-only-icons {
        display: flex;
    }


    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .scroll-content {
        animation: scroll 20s linear infinite;
    }


    .scroll-content:hover {
        animation-play-state: paused;
    }
}


.scroll-content {
    transition: transform 0.5s ease;
}


.table-container {
    position: relative;
    height: 38rem;
    overflow: hidden;
}

.wit-table-body {
    position: absolute;
    width: 100%;
    transition: all 0.5s ease;
}


.table-row {
    height: 50px;
    line-height: 50px;
    transition: opacity 0.3s ease;
}


.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.custom-modal .modal-content {
    position: relative;
    background: #1e1a25;
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 15px;
    padding: 20px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.custom-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-modal .modal-title {
    color: blueviolet;
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-modal:hover {
    opacity: 1;
}

.custom-modal .modal-body {
    color: #fff;
    margin-bottom: 20px;
}

.custom-modal .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-60%);
        opacity: 0;
    }
    to {
        transform: translateY(-50%);
        opacity: 1;
    }
}


@media screen and (max-width: 768px) {
    .custom-modal .modal-content {
        width: 95%;
        margin: 10px;
        padding: 15px;
    }

    .custom-modal .modal-title {
        font-size: 1.2rem;
    }
}


.bounty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.bounty-header {
    margin-bottom: 3rem;
}

.bounty-title {
    color: blueviolet;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bounty-subtitle {
    color: #666;
    font-size: 1.2rem;
}

.bounty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bounty-card {
    background: #1e1a25;
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.bounty-card:hover {
    transform: translateY(-5px);
}

.bounty-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.bounty-card-header i {
    font-size: 2rem;
    margin-right: 1rem;
    color: blueviolet;
}

.bounty-card-header .bounty-card-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.bounty-card-header .bounty-card-icons i {
    margin-right: 0;
}

.bounty-card-header h2 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.3;
}

.bounty-card-body {
    color: #ccc;
}

.bounty-card-body ul,
.bounty-card-body ol {
    padding-left: 1.2rem;
}

.bounty-card-body li {
    margin-bottom: 0.8rem;
}

.bounty-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
    font-style: italic;
}

.claim-card {
    grid-column: 1 / -1;
    background: linear-gradient(145deg, #1e1a25, #2a2433);
}


@media screen and (max-width: 768px) {
    .bounty-container {
        padding: 1rem;
    }

    .bounty-title {
        font-size: 2rem;
    }

    .bounty-card {
        padding: 1rem;
    }

    .bounty-card-header h2 {
        font-size: 1.1rem;
    }
}

.social-platforms {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}


.vip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.vip-header {
    margin-bottom: 3rem;
}

.vip-title {
    color: blueviolet;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vip-subtitle {
    color: #ccc;
    font-size: 1.2rem;
}

.benefit-card {
    background: #1e1a25;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: blueviolet;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #ccc;
}

.info-card, .tips-card {
    background: #1e1a25;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-card h2, .tips-card h2 {
    color: blueviolet;
    margin-bottom: 1.5rem;
}

.info-content, .tips-content {
    color: #ccc;
}

.example-box {
    background: rgba(138, 43, 226, 0.1);
    border-left: 4px solid blueviolet;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 15px 15px 0;
}

.example-box h4 {
    color: blueviolet;
    margin-bottom: 1rem;
}

.tips-content ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.tips-content li {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-style: italic;
    color: #888;
    margin-top: 1.5rem;
}


@media screen and (max-width: 768px) {
    .vip-container {
        padding: 1rem;
    }

    .vip-title {
        font-size: 2rem;
    }

    .benefit-card, .info-card, .tips-card {
        padding: 1.5rem;
    }


}


.vip-levels-section {
    margin: 3rem 0;
    background: #1a1520;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.table-responsive {
    margin-top: 1.5rem;
}

.table {
    color: #a8a8b3;
    margin-bottom: 0;
    background: transparent;
}

.table-bordered {
    border: none;
}

.table thead th {
    background: #241b2d;
    color: #e0e0e0;
    border: none;
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

.table tbody td {
    text-align: center;
    padding: 1.2rem 1rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    color: #8e8e9a;
    vertical-align: middle;
    background: transparent;
}


.table tbody td:first-child {
    color: #b388ff;
    font-weight: 600;
    font-size: 1.1rem;
}


.table tbody td:nth-child(2) {
    color: #81c784;
}


.table tbody td:nth-child(3) {
    color: #64b5f6;
}


.table tbody td:nth-child(4) {
    color: #ffd54f;
    font-weight: 600;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(138, 43, 226, 0.08);
    transform: translateY(-2px);
}


@media screen and (max-width: 768px) {
    .vip-levels-section {
        padding: 1rem;
        margin: 2rem 0;
    }

    .table thead th {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .table tbody td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .table tbody td:first-child {
        font-size: 0.9rem;
    }
}


p {
    font-size: 1.1rem !important;
    line-height: 1.6;
}

.vip-subtitle,
.bounty-subtitle {
    font-size: 1.25rem !important;
}

.benefit-card p {
    font-size: 1.15rem !important;
}

.info-content p,
.tips-content p {
    font-size: 1.15rem !important;
    margin-bottom: 1rem;
}

.example-box p {
    font-size: 1.15rem !important;
    line-height: 1.7;
}

.requirement-note,
.highlight-note {
    font-size: 1.1rem !important;
}


@media screen and (max-width: 768px) {
    p {
        font-size: 1rem !important;
    }

    .vip-subtitle,
    .bounty-subtitle {
        font-size: 1.15rem !important;
    }

    .benefit-card p,
    .info-content p,
    .tips-content p,
    .example-box p {
        font-size: 1.05rem !important;
    }
}


.tips-content ul li,
.info-content ul li,
.bounty-card-body ul li {
    font-size: 1.15rem !important;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
}


.tips-content ul,
.info-content ul {
    list-style-type: none;
    padding-left: 0;
}

.tips-content ul li,
.info-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.tips-content ul li:before,
.info-content ul li:before {
    content: "•";
    color: blueviolet;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px;
}


@media screen and (max-width: 768px) {
    .tips-content ul li,
    .info-content ul li,
    .bounty-card-body ul li {
        font-size: 1.05rem !important;
        line-height: 1.5;
    }
}


.vip-content .tips-content ul li,
.vip-content .info-content ul li {
    font-size: 1.15rem !important;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #e0e0e0;
}


.bounty-card-body ul li {
    font-size: 1rem !important;
    line-height: 1.5;
    margin-bottom: 0.6rem;
    color: #ccc;
}


.vip-content .tips-content ul,
.vip-content .info-content ul {
    list-style-type: none;
    padding-left: 0;
}

.vip-content .tips-content ul li,
.vip-content .info-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.vip-content .tips-content ul li:before,
.vip-content .info-content ul li:before {
    content: "•";
    color: blueviolet;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px;
}


@media screen and (max-width: 768px) {
    .vip-content .tips-content ul li,
    .vip-content .info-content ul li {
        font-size: 1.05rem !important;
    }

    .bounty-card-body ul li {
        font-size: 0.95rem !important;
    }
}


.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.text-gradient {
    background: linear-gradient(45deg, blueviolet, #ff69b4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    margin-bottom: 1rem;
}


.custom-accordion .accordion-item {
    background: #1e1a25;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: #241b2d;
    color: #fff;
    padding: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(145deg, #2a1f35, #1e1a25);
    color: blueviolet;
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    background: #1a1520;
    color: #e0e0e0;
    padding: 1.5rem;
    line-height: 1.7;
}


.contact-form-container {
    background: #1e1a25;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.custom-input {
    background: #241b2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: #2a1f35;
    border-color: blueviolet;
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}


@media screen and (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }

    .text-gradient {
        font-size: 2rem;
    }

    .custom-accordion .accordion-button {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
}
