/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "proxima-nova", sans-serif;
    /* background-color: #F3F5F7; */
    line-height: 1.6;
    color: #333;
}

.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .page-wrap {
        padding: 0 15px;
    }
}

/* ===== TABLE OF CONTENTS NAVIGATION ===== */
.guide-nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow-x:auto;
}

.guide-nav__wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-nav__title {
    font-weight: 600;
    color: #259bfe;
    min-width: 120px;
    font-size: 14px;
}

.guide-nav__list {
    display: flex;
    gap: 20px;
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.guide-nav__list::-webkit-scrollbar {
    display: none;
}

.guide-nav__item a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.guide-nav__item a:hover {
    background-color: #f1f5f9;
    color: #259bfe;
    border-color: #259bfe;
}

.guide-nav__progress {
    width: 100%;
    height: 3px;
    background-color: #e2e8f0;
    margin-top: 3px;
}

.guide-nav__progress-bar {
    height: 100%;
    background: #259bfe;
    width: 0%;
    transition: width 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    background-image: url('/images/background-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero__grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding:15px 0;
}

.hero__text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background-color: #259bfe;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: #1e7ae4;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 13px 28px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background-color: white;
    color: #333;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 40px 0;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero__text h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero__text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Casino Listing Section */

.casino-section{
margin-top: 40px
}
.casino-section h2{
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 25px;
color: #259bfe;
}

.casino-deck ul {
margin: 0;
padding: 0;
list-style: none;
}

.casino-deck li {
margin: 0;
padding: 0;
}

.casino-deck p {
margin: 0;
}

.casino-deck {
margin-top: 2rem;
}

.casino-card {
display: flex;
}

.casino-card__preview,
.casino-card__content {
height: 100%;
}

.casino-card__preview {
width: 100%;
padding: 10px;
border-radius: 32px;
position: relative;
display: flex;
align-items: center;
overflow: hidden;
}

.casino-card__preview::after {
content: "";
position: absolute;
right: 0px;
top: 0;
bottom: 0;
width: 2px;
background-image: repeating-linear-gradient(
to bottom,
#ffffff 0px,
#ffffff 10px,
transparent 10px,
transparent 15px
);
}

.casino-card__badge {
position: absolute;
left: 20px;
top: -16px;
z-index: 2;
}

.casino-card__logo-wrap {
padding: 12px;
min-width: 100%;
max-width: 100%;
border-radius: 24px;
overflow: hidden;
position: relative;
max-width: 232px;
height: 132px;
display: flex;
justify-content: center;
background-color: #ffffff;
}

.casino-card__logo {
width: auto;
height: auto;
margin: auto;
max-width: 100%;
max-height: 100%;
object-fit: contain;
}

.casino-card__content {
display: flex;
padding: 18px 0;
}

.casino-card__score {
width: 35.5%;
}

.casino-card__features {
width: 37.5%;
}

.casino-card__actions {
width: 27%;
}

.casino-card__content {
border-radius: 32px;
}

.casino-card__col {
padding: 0 24px;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
}

.casino-card__col:not(:last-child):after {
content: "";
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 2px;
background-image: repeating-linear-gradient(
to bottom,
#ffffff 0px,
#ffffff 10px,
transparent 10px,
transparent 15px
);
}

.casino-card__tag {
background-color: rgba(37, 155, 254, 0.08);
color: #259bfe;
max-width: fit-content;
padding: 2px 12px;
line-height: 1.5;
border-radius: 12px;
font-weight: 700;
font-size: 16px;
max-height: fit-content;
margin-bottom: 0 !important;
}

.casino-card__score-inner {
display: flex;
justify-content: space-between;
align-items: center;
}

.casino-card__offers {
margin-top: 8px;
padding: 6px 16px;
background-color: rgba(37, 155, 254, 0.08);
border-radius: 12px;
overflow: hidden;
position: relative;
}

.casino-card__offers::before {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
height: 100%;
background-color: #259bfe;
opacity: 0.3;
}

.casino-card__offers p {
font-weight: 600;
font-size: 14px;
line-height: 1.5;
margin: 0 !important;
}

.casino-card__offers p b,
.casino-card__offers p strong {
font-weight: 700;
font-size: 16px;
color: #259bfe;
}

.casino-card__feature-list {
padding: 16px 24px !important;
font-size: 16px;
font-weight: 600;
position: relative;
border-top-right-radius: 24px;
border-bottom-right-radius: 24px;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
background-color: rgba(255, 255, 255, 1);
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}

.casino-card--primary .casino-card__feature-list {
background-color: rgba(37, 155, 254, 0.04);
}

.casino-deck--no-bg .casino-card--primary .casino-card__feature-list {
background-color: rgba(255, 255, 255, 1);
}

.casino-card__feature-list::before {
position: absolute;
width: 4px;
left: 0;
content: "";
top: 0;
height: 100%;
background-color: #259bfe;
}

.casino-card__feature-text {
position: relative;
padding-left: 36px;
line-height: 1.33;
padding-top: 2px;
padding-bottom: 2px;
}

.casino-card__feature-icon {
display: block;
position: absolute;
left: 0;
top: 0;
}

.casino-card__feature-item:not(:first-child) {
margin-top: 16px;
}

.casino-card__feature-item {
padding-left: 0 !important;
margin-bottom: 0 !important;
}

.casino-card__feature-item::before {
content: none !important;
display: none !important;
}

.casino-card__btn {
text-decoration: none !important;
outline: none;
width: 100%;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
line-height: 1.5;
padding: 13px 13px;
border-radius: 24px;
font-size: 16px;
font-weight: 700;
transition: 0.3s ease-in-out;
white-space: nowrap;
}

.casino-card__btn:not(:first-child) {
margin-top: 8px;
}

.casino-card__btn--primary {
background-color: #259bfe;
color: #ffffff !important;
border: 1px solid #259bfe;
}

.casino-card__btn--secondary {
color: #000000 !important;
background-color: transparent;
border: 1px solid #259bfe;
}

.casino-card__btn:hover {
color: #000000 !important;
background-color: rgba(255, 255, 255, 1);
box-shadow: 0px 0px 13px 3px rgba(37, 155, 254, 0.15);
}

.casino-card__btn:active {
transform: scale(0.95);
}

.casino-card__btn-icon {
margin-right: 12px;
}

.casino-card__rank {
position: absolute;
color: #ffffff;
background: #259bfe;
line-height: 1.5;
border-radius: 12px;
max-height: fit-content;
font-size: 17px;
font-weight: 700;
left: 0;
top: 6px;
width: 37px;
text-align: center;
}

.casino-card__rating {
--percent: 80;
--hue: 210;
width: 48px;
height: 48px;
border-radius: 50%;
background: conic-gradient(
#259bfe calc(var(--percent) * 1%),
var(--bg) 0
);
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: #000000;
font-size: 16px;
padding: 5px;
background-color: #e6f3ff;
}

.casino-card__rating span {
min-width: 40px;
min-height: 40px;
background-color: var(--bg, #fff);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.score-100 {
--percent: 100;
--bg: #d6f0ff;
}

.score-95 {
--percent: 95;
--bg: #e0f4ff;
}

.casino-card--primary .casino-card__preview,
.casino-card--primary .casino-card__content {
background: #e6f3ff;
}

.casino-card:not(:last-child) {
margin-bottom: 24px;
}

.casino-card__rail {
border-radius: 36px;
padding: 3px;
background: #c7e7ff;
}

.casino-card__rail:nth-child(1) {
width: 22%;
max-width: 256px;
margin-right: -8px;
}

.casino-card__rail:nth-child(2) {
width: 78%;
width: calc(78% + 8px);
}

.casino-card__rail {
background: #e6f3ff;
}

.casino-card__rail:nth-child(2) {
background: #e6f3ff;
}

.casino-card--primary .casino-card__rail {
background: #259bfe;
}

.casino-card--primary .casino-card__rail:nth-child(2) {
background: #4db8ff;
}

.casino-card__rail-inner {
position: relative;
}

.casino-card--style-2 .casino-card__tag {
position: absolute;
z-index: 2;
right: 20px;
transform: translateY(-40%);
background-color: rgba(237, 237, 237, 1);
}

.casino-card--style-2.casino-listing__card--1 .casino-card__tag {
color: #ffffff;
background: #259bfe;
}

.casino-card--style-2 .casino-card__score.casino-listing__content-item {
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.casino-card--style-2 .casino-card__offers {
max-height: fit-content;
width: 100%;
margin-left: 24px;
margin-top: 0;
}

.casino-card--style-2 .casino-card__rating {
width: 80px;
height: 80px;
min-width: 80px;
min-height: 80px;
}

.casino-card--style-2 .casino-card__rating span {
min-width: 70px;
min-height: 70px;
font-size: 20px;
}

@media (min-width: 1025px) {
.casino-card--style-2 .casino-card__score {
width: 42%;
}
.casino-card--style-2 .casino-card__features {
width: 31.5%;
}
.casino-card--style-2 .casino-card__actions {
width: 26%;
}
}

.casino-card--style-2 .casino-card__offers p {
font-size: 16px;
}

.casino-card--style-2 .casino-card__offers p b,
.casino-card--style-2 .casino-card__offers p strong {
font-size: 18px;
}

.casino-card--style-2 .casino-card__feature-list::before {
content: none;
display: none;
}

.casino-card__feature-list {
margin-bottom: 0 !important;
}

.casino-card--style-2 .casino-card__feature-list {
background: transparent !important;
padding: 0 !important;
}

@media (max-width: 1024px) {
.casino-card {
flex-direction: column;
}
.casino-card__rail:nth-child(1) {
margin-right: 0;
margin-bottom: -8px;
width: 100%;
max-width: 100%;
}
.casino-card__rail:nth-child(2) {
width: 100%;
}
.casino-card__content {
flex-direction: column;
}
.casino-card__preview {
padding: 12px;
padding-bottom: 21px;
}
.casino-card__content {
padding: 0 18px;
}
.casino-card__col {
padding: 20px 0;
width: 100%;
}
.casino-card__actions {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.casino-card__btn {
width: 100%;
}
.casino-card {
width: 50%;
}
}

@media (max-width: 767px) {
.casino-card {
width: 100%;
}
}





/* ===== GAME INFO SECTION ===== */
.section-info {
    padding: 20px 0;
    background-color: white;
}

.info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 768px) {
    .info__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.section-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #259bfe;
}

.section-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #259bfe;
}
.feature-frozen h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #259bfe;
}
.feature-frozen h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}
.feature-frozen p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.section-info ul, .section-info ol, .feature-frozen ul, .feature-frozen ol {
    margin-left: 20px;
}
@media (max-width: 768px) {
    .section-info h1 {
        font-size: 2.5rem;
    }
    .section-info h2, .feature-frozen h2 {
        font-size: 2rem;
    }
    .section-info h3, .feature-frozen h3 {
        font-size: 1.5rem;
    }
    .section-info p {
        font-size: 1rem;
    }
}

.info__image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

/* ===== FEATURES SECTION ===== */
.section-features {
    background-image: url('/images/blu-background-square-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    color: white;
}

.features__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(37, 155, 254, 0.85);
}

.features__content {
    position: relative;
    z-index: 10;
}

.features__header {
    text-align: center;
    margin-bottom: 60px;
}

.features__header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.features__header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.features__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.features__item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    text-align: center;
}

.features__item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.features__item p {
    opacity: 0.9;
}

.feature-frozen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-frozen h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-frozen p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.features__tip {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    font-weight: 600;
}

.feature-frozen img, .features__header img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .section-features {
        padding: 50px 0;
    }

    .features__header h2 {
        font-size: 2rem;
    }

    .features__header p {
        font-size: 1rem;
    }

    .features__list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .features__item {
        padding: 20px;
    }

    .feature-frozen {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-frozen h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .feature-frozen p {
        font-size: 1rem;
        text-align: center;
    }
}

/* ===== FAQ SECTION ===== */
.section-faq {
    background-color: #f8fafc;
    padding: 80px 0;
    position: relative;
}
.faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.faq__header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.faq__header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s ease;
}

.faq__question:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.faq__question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq__icon svg {
    width: 20px;
    height: 20px;
}

.faq__answer {
    padding: 25px 30px;
    background: white;
    border-top: 1px solid #f1f5f9;
}

.faq__answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* FAQ items are always expanded by default */
.faq__item {
    margin-bottom: 0;
}

.faq__answer {
    display: block !important;
}

/* Mobile styles for FAQ */
@media (max-width: 768px) {
    .section-faq {
        padding: 50px 0;
    }

    .faq__header h2 {
        font-size: 2rem;
    }

    .faq__header p {
        font-size: 1rem;
    }

    .faq__question {
        padding: 20px 25px;
    }

    .faq__question h3 {
        font-size: 1rem;
    }

    .faq__answer {
        padding: 20px 25px;
    }

    .faq__answer p {
        font-size: 0.95rem;
    }
}

/* ===== TABLE STYLES ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
    table {
        overflow-x: auto;
        display: block;
    }
}
table p {
    margin-bottom:0!important;
}

thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

thead th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #5a6fd8;
}

thead th:first-child {
    border-top-left-radius: 12px;
}

thead th:last-child {
    border-top-right-radius: 12px;
}

tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

tbody td {
    padding: 16px 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #475569;
    vertical-align: middle;
}

tbody td:first-child {
    font-weight: 600;
    color: #1e293b;
}

/* Zebra striping for better readability */
tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

tbody tr:nth-child(even):hover {
    background-color: #f1f5f9;
}

/* Responsive table */
@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    thead th {
        padding: 14px 15px;
        font-size: 0.85rem;
    }
    
    tbody td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

/* Table with borders variant */
.table-bordered {
    border: 2px solid #e2e8f0;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #e2e8f0;
}

/* Compact table variant */
.table-compact th,
.table-compact td {
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Striped table variant */
.table-striped tbody tr:nth-child(odd) {
    background-color: #f8fafc;
}

/* Hover effects for table rows */
.table-hover tbody tr:hover {
    background-color: #f1f5f9;
    cursor: pointer;
}

/* ===== PLAY SECTION ===== */
.section-play {
    background-image: url('/images/background-1.webp');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
    text-align: center;
    color: white;
}

.play__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.play__content {
    position: relative;
    z-index: 10;
}

.section-play h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-play p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.play__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-free {
    background-color: #259bfe;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-free:hover {
    background-color: #1e7ae4;
}

.btn-cash {
    background-color: white;
    color: #259bfe;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cash:hover {
    background-color: #f8f9fa;
}

.play__badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
    .section-play {
        padding: 40px 0;
    }

    .section-play h2 {
        font-size: 2rem;
    }

    .section-play p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .play__actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-free, .btn-cash {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .play__badges {
        flex-direction: column;
        gap: 10px;
        font-size: 0.8rem;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #1a202c;
    color: white;
    padding: 50px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand {
    color: #259bfe;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__brand img {
    height: 40px;
    width: auto;
}

.footer__desc {
    color: #a0aec0;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social a {
    color: #a0aec0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer__social a:hover {
    color: white;
}

.footer__section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: white;
}

.footer__licenses {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.brandmark {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.brandmark:hover {
    opacity: 0.8;
}

.brandmark__img {
    height: 30px;
    width: auto;
}

.footer__bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__brand {
        text-align: center;
        font-size: 1.3rem;
    }

    .footer__desc {
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__section h3 {
        text-align: center;
        margin-bottom: 15px;
    }

    .footer__links {
        text-align: center;
    }

    .footer__licenses {
        justify-content: center;
        gap: 10px;
    }

    .brandmark__img {
        height: 25px;
    }
}