/* ========================================
   RESET STYLES
   ======================================== */
:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

*, ::after, ::before {
    box-sizing: border-box;
}

a, button {
    cursor: revert;
}

menu, ol, ul {
    list-style: none;
}

img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

input, textarea {
    -webkit-user-select: auto;
}

textarea {
    white-space: revert;
}

meter {
    -webkit-appearance: revert;
    -moz-appearance: revert;
    appearance: revert;
}

:where(pre) {
    all: revert;
}

::-moz-placeholder {
    color: unset;
}

::placeholder {
    color: unset;
}

::marker {
    content: initial;
}

:where([hidden]) {
    display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

:where([draggable=true]) {
    -webkit-user-drag: element;
}

:where(dialog[open]) {
    all: revert;
}

/* ========================================
   BASE STYLES
   ======================================== */
html, body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
}

body {
    background: #00100e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

li, p {
    line-height: 150%;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1 {
    font-size: 38px;
    font-weight: 600;
    margin: 25px 0;
    text-align: center;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 20px auto;
    text-align: center;
    border-bottom: 1.5px solid #ff2400;
    max-width: fit-content;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 15px 0;
}

/* ========================================
   LISTS
   ======================================== */
ol, ul {
    padding: 15px 25px;
}

ol {
    list-style: decimal;
}

ul {
    list-style: disc;
}

ol li::marker, ul li::marker {
    color: #ff2400;
    font-weight: 600;
}

/* ========================================
   TABLES
   ======================================== */
table {
    border-collapse: collapse;
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

table tr td, table tr th {
    border: 1px solid #8a8a8a;
    padding: 15px;
}

table tr th {
    background: #ff2400;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

table tr td:hover {
    background-color: rgba(130, 130, 130, 0.1058823529);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: #00100e;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header .container .logo {
    flex: 0 0 120px;
}

.header .container .auth {
    display: flex;
    gap: 15px;
}

.header .container .auth .btn-1 {
    background-color: transparent;
    border: 1px solid #ff2400;
    color: #fff;
}

.header .container .auth .btn-1:hover,
.header .container .auth .btn-2:hover {
    opacity: 0.8;
}

.header .container .auth .btn-2 {
    background-color: #ff2400;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 150px;
    padding: 10px 15px;
    transition: 0.3s;
    color: #fff;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main {
    height: 100%;
    flex: 1 1 auto;
    padding: 0 0 50px;
}

.main .main-btn {
    background-color: #ff2400;
    color: #fff;
    font-weight: 600;
    width: 250px;
    margin: 10px auto;
}

.main .main-btn:hover {
    background-color: #b12c18;
}

/* ========================================
   BANNER SECTION
   ======================================== */
.main .banner {
    padding: 50px 0;
    position: relative;
    background: 100%/contain #0e191e;
    height: 400px;
    display: flex;
    z-index: 0;
}

.main .banner::before {
    content: "";
    background: url(../img/coins.png) center/cover no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: 0.3;
}

.main .banner__icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(55, 36, 36, 0.7098039216);
    border-radius: 93px;
    padding: 50px;
    box-shadow: 0 0 20px #ff2400;
}

.main .banner__icon img {
    width: 200px;
}

.main .banner .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin: 0 50px;
}

.main .banner .item {
    flex: 0 0 60%;
}

.main .banner .item img {
    animation: 5s infinite transform;
    max-width: 400px;
}

.main .banner__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
}

.main .banner__text h1 {
    margin: 0;
    text-align: left;
}

.main .banner__btn a {
    background-color: #ff2400;
    position: relative;
    transition: 0.3s ease-in-out;
    max-width: 300px;
    white-space: nowrap;
    font-size: 20px;
    overflow: hidden;
    width: auto;
    color: #fff;
    padding: 15px;
    box-shadow: 0 8px 16px 0 rgba(97, 229, 146, 0.24);
    animation: 1.3s infinite glowing;
}

.main .banner__btn a:hover {
    opacity: 0.8;
}

.main .banner__btn a::after {
    content: "";
    position: absolute;
    width: 142px;
    height: 100%;
    top: 0;
    left: -142px;
    background: -webkit-linear-gradient(-40deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 25%, #fff 25.2%, #fff 46%, rgba(255, 255, 255, 0) 46.2%, rgba(255, 255, 255, 0) 49%, #fff 49.2%, #fff 53.5%, rgba(255, 255, 255, 0) 53.7%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-size: 100% 100%;
    animation: 3s ease-in-out infinite forwards animation-15c8vog;
    filter: drop-shadow(0px 0px 5px #fff);
}

.main .banner__img {
    text-align: center;
}

/* ========================================
   GAMES SECTION
   ======================================== */
.main .games-wrap {
    padding: 75px 16px;
    box-shadow: 0 0 5px #816aa6;
}

.main .games-wrap h2 {
    margin: 0 auto 70px;
}

.main .games-wrap .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 20px;
}

.main .games-wrap .cards .card {
    background: rgba(255, 100, 100, 0.2);
    border-radius: 16px;
    padding: 24px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.main .games-wrap .cards .card::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 340px;
    height: 272px;
    z-index: -1;
}

.main .games-wrap .cards .card:first-child::before {
    background: url("../img/light.png") center/cover no-repeat;
}

.main .games-wrap .cards .card:nth-child(2)::before {
    background: url("../img/prize.png") center/cover no-repeat;
}

.main .games-wrap .cards .card:nth-child(3)::before {
    background: url("../img/phone.png") center/cover no-repeat;
}

.main .games-wrap .cards .card__title {
    font-size: 26px;
    font-weight: 700;
    max-width: 80%;
}

.main .games-wrap .cards .card__subtitle {
    font-size: 20px;
    font-weight: 600;
    max-width: 80%;
}

/* ========================================
   CONTENT BOX
   ======================================== */
.main .content {
    padding: 50px 0;
}

.main .content .box {
    margin-bottom: 30px;
}

.main .content p {
    margin: 15px 0;
}

.main .content img {
    display: flex;
    margin: 0 auto;
    max-width: 500px;
}

.main .content figure {
    margin: 30px 0;
    text-align: center;
}

/* ========================================
   PROS/CONS SECTION
   ======================================== */
.section-block.pros-cons-block {
    padding: 40px 0;
}

.hits-and-misses {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hits-and-misses .col-12 {
    flex: 1 1 45%;
    min-width: 300px;
}

.pros-cons-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
}

.pros-cons-title.check-title {
    color: #00CFA6;
    border-color: #00CFA6;
}

.pros-cons-title.x-title {
    color: #FF2400;
    border-color: #FF2400;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: 0.3s;
}

.pros-list li:hover, .cons-list li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.type-icon {
    flex-shrink: 0;
}

/* ========================================
   COMMENTS/REVIEWS SECTION
   ======================================== */
.section-block.comments-rating-block {
    padding: 50px 0;
}

.comments-rating {
    max-width: 900px;
    margin: 0 auto;
}

.comments-add-field {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.comment-add-form__header {
    margin-bottom: 20px;
}

.comment-add-form__heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.star-form {
    display: flex;
    justify-content: center;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
}

.comment-input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
}

.comment-input:focus {
    border-color: #ff2400;
    outline: none;
}

textarea.comment-input {
    resize: vertical;
    min-height: 100px;
}

.comment-add-form__btn {
    background: #ff2400;
    padding: 12px 30px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.comment-add-form__btn:hover {
    background: #b12c18;
}

.comments-rating__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comments-rating-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.comments-rating-item__nickname {
    font-weight: 600;
    color: #ff2400;
    margin-bottom: 10px;
}

.comments-rating-item__text {
    margin-bottom: 15px;
    line-height: 1.6;
}

.comment-rate {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-rate-title {
    font-weight: 600;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.section-block.faqs-block {
    padding: 40px 0;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 0;
}

.accordion-button {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button:hover {
    background: rgba(255, 36, 0, 0.1);
}

.accordion-button::after {
    content: '+';
    font-size: 24px;
    transition: 0.3s;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-collapse:not(.collapse) {
    max-height: 1000px;
}

.accordion-body {
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* ========================================
   PAYMENTS SECTION
   ======================================== */
.main .payments {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0;
}

.main .payments .payment {
    cursor: pointer;
    transition: filter 0.4s ease-in-out;
}

.main .payments .payment svg path {
    transition: fill 0.4s ease-in-out;
}

.main .payments .payment:first-child:hover {
    filter: drop-shadow(0px 0px 16px #1f46ff);
}

.main .payments .payment:first-child:hover svg path {
    fill: #1f46ff;
}

.main .payments .payment:nth-child(2):hover {
    filter: drop-shadow(0px 0px 16px #ff8000);
}

.main .payments .payment:nth-child(2):hover svg path {
    fill: #ff8000;
}

.main .payments .payment:nth-child(3):hover {
    filter: drop-shadow(0px 0px 16px #ffc200);
}

.main .payments .payment:nth-child(3):hover svg path {
    fill: #ffc200;
}

.main .payments .payment:nth-child(4):hover {
    filter: drop-shadow(0px 0px 16px #f7931a);
}

.main .payments .payment:nth-child(4):hover svg path {
    fill: #f7931a;
}

.main .payments .payment:nth-child(5):hover {
    filter: drop-shadow(0px 0px 16px #c718e3);
}

.main .payments .payment:nth-child(5):hover svg path {
    fill: #c718e3;
}

.main .payments .payment:nth-child(6):hover {
    filter: drop-shadow(0px 0px 16px #28d49f);
}

.main .payments .payment:nth-child(6):hover svg path {
    fill: #28d49f;
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 16px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12 {
    width: 100%;
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 30px 16px;
    background-color: #1c1d1d;
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 14px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__list {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    width: 100%;
}

.footer__list-title {
    font-weight: 600;
    color: #d2eeed;
}

.footer__list ul {
    padding: 10px 0 0 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__list ul li {
    color: #80858f;
    font-size: 14px;
}

.footer__list ul li a {
    transition: 0.2s ease-in-out;
    display: block;
}

.footer__list ul li a:hover {
    transform: scale(1.12) translate(0.75rem);
}

.footer__list ul li::marker {
    color: #80858f;
}

.footer__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer__icons img {
    height: 30px;
}

.footer-copyright {
    text-align: center;
    color: #80858f;
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   DISCLAIMER
   ======================================== */
.disclaimer-box {
    background: rgba(255, 36, 0, 0.1);
    border: 1px solid #ff2400;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes glowing {
    0%, 100% {
        box-shadow: 0 0 5px #4d4d4d;
    }
    50% {
        box-shadow: 0 0 20px #ff2400;
    }
}

@keyframes transform {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes animation-15c8vog {
    0% {
        left: -142px;
    }
    100% {
        left: 100%;
    }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
    }

    h1 {
        margin: 20px 0;
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
        margin: 15px 0;
    }

    h3 {
        font-size: 20px;
        margin: 10px 0;
    }

    .container, .main .banner .item img, .main .content img {
        max-width: 100%;
    }

    .btn {
        padding: 10px 15px;
    }

    .header {
        padding: 10px 0;
    }

    .header .container {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .header .container .logo {
        flex: auto;
    }

    .header .container .logo img, .main .banner__icon img {
        width: 100px;
    }

    .main {
        padding: 0 0 30px;
    }

    .main .banner {
        height: auto;
        padding: 0;
        background-size: cover;
        background-color: rgba(14, 25, 30, 0);
    }

    .main .banner .container {
        gap: 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        z-index: 3;
        padding: 20px;
        margin: 0 20px;
    }

    .main .banner h1 {
        text-align: center;
    }

    .main .banner__btn a {
        margin: 0 auto;
    }

    .main .banner__img {
        max-width: 250px;
    }

    .main .banner .item {
        flex: 1 1 auto;
    }

    .main .games-wrap {
        padding: 45px 0;
    }

    .main .games-wrap h2 {
        margin: 0 auto 30px;
    }

    .main .games-wrap .cards {
        grid-template-columns: 1fr;
    }

    .main .content {
        padding: 30px 0;
    }

    .main .payments {
        padding: 0 16px;
        gap: 10px;
        justify-content: space-around;
    }

    .main .payments svg {
        height: 30px;
    }

    .col-md-6 {
        width: 100%;
    }

    .hits-and-misses {
        flex-direction: column;
    }

    .footer__list {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .btn {
        width: 120px;
        font-size: 14px;
        padding: 8px 12px;
    }

    .main .banner__btn a {
        font-size: 16px;
        padding: 12px;
    }
}