﻿body {
    margin: 0;
    line-height: normal;
    background-image: linear-gradient( -45deg, rgba(215, 29, 29, 0.7) 0%, rgba(35, 35, 35, 0.7) 50%, rgba(21, 21, 21, 0.7) 100% ), url("/img/LoLxSpoker/modern-background-with-lines.jpg");
    background-size: cover;
    background-position: center;
    font-family: "Oswald", sans-serif;
}

/* or if you want Oswald */
h1,
h2 {
    font-family: "Oswald", sans-serif;
}

:root {
    /* Color */
    --color-white: #fff;
    --color-crimson: #de2e35;
    --color-gold: #ffc426;
    --color-yellow: #fcee21;
    --color-red: #de2e35;
    /* BorderRadius */
    --br-20: 20px;
    /* Font */
    --font-oswald: Oswald;
    --font-inherit: inherit;
    /* FontSize */
    --font-size-32: 32px;
    --font-size-40: 40px;
    --font-size-24: 24px;
    --font-size-64: 64px;
}
/* FIRST SECTION START */

.first-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 3em 0 0 0;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

    .first-section img {
        padding-bottom: 100px;
        max-width: 50%;
        height: auto;
        width: 100%;
        object-fit: contain;
    }

/* Button Start */

/* From Uiverse.io by doniaskima */
.btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-17 {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    background-color: #000;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-oswald);
    font-size: 100%;
    font-weight: 900;
    line-height: 1.5;
    margin: 0;
    -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
    padding: 0;
    text-transform: uppercase;
}

    .btn-17:disabled {
        cursor: default;
    }

    .btn-17:-moz-focusring {
        outline: auto;
    }

    .btn-17 svg {
        display: block;
        vertical-align: middle;
    }

    .btn-17 [hidden] {
        display: none;
    }

.btn-17 {
    border-radius: 99rem;
    border-width: 2px;
    padding: 1.2rem 4rem;
    z-index: 0;
    font-size: 1.2rem;
}

    .btn-17,
    .btn-17 .text-container {
        overflow: hidden;
        position: relative;
    }

        .btn-17 .text-container {
            display: block;
            mix-blend-mode: difference;
        }

        .btn-17 .text {
            display: block;
            position: relative;
        }

        .btn-17:hover .text {
            -webkit-animation: move-up-alternate 0.3s forwards;
            animation: move-up-alternate 0.3s forwards;
        }

@-webkit-keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

.btn-17:after,
.btn-17:before {
    --skew: 0.2;
    background: #fff;
    content: "";
    display: block;
    height: 102%;
    left: calc(-50% - 50% * var(--skew));
    pointer-events: none;
    position: absolute;
    top: -104%;
    transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
    transition: transform 0.2s ease;
    width: 100%;
}

.btn-17:after {
    --progress: 0%;
    left: calc(50% + 50% * var(--skew));
    top: 102%;
    z-index: -1;
}

.btn-17:hover:before {
    --progress: 100%;
}

.btn-17:hover:after {
    --progress: -102%;
}

/* Button End */

/* FIRST SECTION END */

/* SECOND SECTION START */

.second-section {
    width: 100%;
    margin: 0;
    background: linear-gradient(110deg, #060606, #b20000);
}

/* CARDS START */

.cards {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 120px 41px 120px;
    padding: 60px 0;
    font-size: 1.7rem;
}

.card {
    overflow: visible;
    width: 360px;
    height: 280px;
}

.content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    box-shadow: 0px 0px 10px 1px #000000ee;
    border-radius: 5px;
}

.front,
.back {
    background-color: #151515;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
}

.back {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: rotateY(0deg);
}

    .back::before {
        position: absolute;
        content: " ";
        display: block;
        width: 160px;
        height: 220%;
        background: linear-gradient( 90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent );
        animation: rotation_481 5000ms infinite linear;
    }

.back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: #151515;
    border-radius: 5px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.front {
    transform: rotateY(180deg);
    color: white;
    display: none;
}

    .front .img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffbb66;
    position: relative;
    filter: blur(15px);
    animation: floating 2600ms infinite linear;
}

#bottom {
    background-color: #ff8866;
    left: 50px;
    top: 0px;
    width: 150px;
    height: 150px;
    animation-delay: -800ms;
}

#right {
    background-color: #ff2233;
    left: 160px;
    top: -80px;
    width: 30px;
    height: 30px;
    animation-delay: -1800ms;
}

@keyframes rotation_481 {
    0% {
        transform: rotateZ(0deg);
    }

    0% {
        transform: rotateZ(360deg);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* CARDS END */

.call-to-action {
    width: 100%;
    justify-items: center;
    padding-bottom: 60px;
}

.reviews {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 14rem;
}

.right-reviews,
.left-reviews {
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.center-llama {
    height: 100%;
    width: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

    .center-llama img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.review-card-upper,
.review-card-lower {
    width: 480px;
    height: 180px;
    background-color: #151515;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1); /* semi-transparent white */
    backdrop-filter: blur(10px); /* frosted glass blur */
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    border: 1px solid rgba(255, 255, 255, 0.3); /* optional border to enhance the effect */
    border-radius: 12px; /* rounded corners for a modern look */
    padding: 20px;
    align-content: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

    .review-card-upper img,
    .review-card-lower img {
        width: 60px;
        height: 60px;
    }

.review-stars {
    margin: 0;
}

.star {
    color: gold;
    font-size: 1.7rem;
    margin: 0;
}

.review-card-upper-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
}

/* SECOND SECTION END */

/* THIRD SECTION START */

.third-section {
    width: 100%;
    margin: 0;
    padding-bottom: 100px;
    color: white;
    justify-items: center;
    align-items: center;
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
}

.rule-frame-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

    .rule-frame-group h2 {
        font-size: 2em;
        font-weight: bold;
        background-color: #b20000;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.rule-title {
    font-size: 1.5em;
    font-weight: bold;
}

.rule-description {
    text-align: center;
    margin-top: 10px;
}

.prize-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(3, auto); /* 3 rows */
    gap: 4px 12px;
    max-width: 350px;
}

    .prize-list li {
        text-align: center;
        margin: 2px 0;
        font-size: 1em;
    }

/* THIRD SECTION END */

/* FOURTH SECTION START */

.fourth-section {
    background: linear-gradient(110deg, #d5242b 49%, #b20000 51%);
    background-size: cover;
    height: auto;
    width: 100%;
    padding: 4em 0 2em 0;
    position: relative;
    z-index: 2;
    gap: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.fourth-section-top-container,
.fourth-section-bottom-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.fourth-section-bottom-container {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    padding: 0 14vw;
}

.fourth-section-bottom-container-content {
    display: flex;
    flex-direction: column;
    width: 42%;
}

.image-stack {
    position: relative;
    width: 20vw;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-text {
    position: absolute;
    z-index: 1;
    width: 100%;
    align-self: start;
}

.stacked-image {
    position: absolute;
    z-index: 2;
    width: 60%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.stacked-button {
    position: relative;
    z-index: 3;
    font-weight: bold;
    align-self: end;
    left: 0;
}

    .stacked-button.Sign_Up_Button {
        background-color: #fff;
        color: #b8860b; /* gold text */
        border: 3px solid #b8860b;
        box-shadow: 0 8px 32px rgba(184, 134, 11, 0.35), 0 2px 8px rgba(0, 0, 0, 0.25);
    }

        .stacked-button.Sign_Up_Button:hover {
            background-color: #b8860b;
            color: #fff;
            border-color: #fff;
            box-shadow: 0 12px 40px rgba(184, 134, 11, 0.5), 0 4px 16px rgba(0, 0, 0, 0.65);
        }

        .stacked-button.Sign_Up_Button::before {
            /* If you want to adjust the shine effect color, you can do so here */
            background-image: linear-gradient( 120deg, rgba(255, 215, 0, 0) 30%, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0) 70% );
        }

.video-container {
    position: relative;
    width: 20vw;
    /* max-width: 400px; or whatever width you want */
    aspect-ratio: 16 / 9;
}

    .video-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

.phone-hands {
    width: 48%;
    height: auto;
}

.lower-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 4em;
    font-weight: 900;
    font-family: "Futura XBlk BT";
}

.lower-container img {
    width: 80%;
    height: auto;
}

.you-are-one {
    font-size: 2em;
    text-align: center;
    color: #fff;
}

/* FOURTH SECTION END */

/* BREAKPOINTS START */

@media (max-width: 1024px) {
    /* Third Section Tablet Responsive */
    .third-section h2 {
        font-size: 2.8em !important;
    }

    .rules-container {
        width: 95%;
        gap: 18px;
    }

    .rule-frame-group h2 {
        font-size: 1.8em;
        width: 55px;
        height: 55px;
    }

    .rule-title {
        font-size: 1.4em;
    }

    .rule-description {
        font-size: 0.95em;
    }

    /* Second Section Tablet Responsive */
    .cards {
        margin: 0 24px;
        padding: 50px 0;
        font-size: 1.5rem;
    }

    .card {
        width: 320px;
        height: 250px;
    }

    .back-content {
        gap: 25px;
    }

        .back-content img {
            height: 140px;
            width: 140px;
        }

    .btn-17 {
        padding: 1rem 3.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .mask-group-icon {
        -webkit-mask-image: linear-gradient(to right, #000 30%, transparent 100%);
        mask-image: linear-gradient(to bottom, #000 30%, transparent 100%);
    }

    .hero-image-icon {
        width: 100%;
    }

    .hero-content {
        margin: 0 1rem;
        align-items: center;
    }

    .Sign_Up_Button {
        padding-block: 0.7rem;
        padding-inline: 4.25rem;
        left: 0;
    }

    /* Second Section Mobile Responsive */
    .cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 0 20px;
        padding: 40px 0;
        font-size: 1.3rem;
    }

    .card {
        width: 300px;
        height: 220px;
    }

    .back-content {
        gap: 20px;
    }

        .back-content img {
            height: 120px;
            width: 120px;
        }

    /* Third Section Responsive */
    .third-section {
        padding-bottom: 60px;
    }

        .third-section h2 {
            font-size: 2.5em !important;
            text-align: center;
            margin-bottom: 30px;
        }

    .rules-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 95%;
        padding: 15px;
    }

    /* Button Responsive for Mobile */
    .btn-17 {
        padding: 0.9rem 3rem;
        font-size: 1rem;
    }

    .rule-frame-group h2 {
        font-size: 1.5em;
        width: 50px;
        height: 50px;
    }

    .rule-title {
        font-size: 1.2em;
    }

    .rule-description {
        font-size: 0.9em;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .first-section{
        padding-bottom: 32px;
    }

    .first-section img {
        padding-bottom: 40px;
        max-width: 85%;
    }

    .lower-container img {
        width: 70%;
    }

    /* Second Section Small Mobile Responsive */
    .cards {
        margin: 0 15px;
        padding: 30px 0;
        gap: 25px;
        font-size: 1.1rem;
    }

    .card {
        width: 280px;
        height: 200px;
    }

    .back-content {
        gap: 15px;
    }

        .back-content img {
            height: 100px;
            width: 100px;
        }

    /* Third Section Mobile Responsive */
    .third-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

        .third-section h2 {
            font-size: 2em !important;
            margin-bottom: 20px;
        }

    .rules-container {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 90%;
        padding: 10px;
    }

    .rule-frame-group h2 {
        font-size: 1.3em;
        width: 45px;
        height: 45px;
    }

    .rule-title {
        font-size: 1.1em;
    }

    .rule-description {
        font-size: 0.85em;
        margin-top: 6px;
    }

    .btn-17 {
        padding: 0.8rem 2.5rem;
        font-size: 0.9rem;
    }

    .you-are-one{
        font-size: 1em;
    }

    /*Fourth Section Responsive*/

    .fourth-section{
        padding: 2em 0 2em 0;
    }
}

/* BREAKPOINTS END */
