 /* ===== 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;
}

.layout-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ===== TABLE OF CONTENTS NAVIGATION ===== */
.trail-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;
}

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

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

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

.trail-nav__menu::-webkit-scrollbar {
    display: none;
}

.trail-nav__entry 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;
}

.trail-nav__entry a:hover {
    background-color: #f1f5f9;
    color: #259bfe;
    border-color: #259bfe;
}

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

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

/* Mobile */
@media (max-width: 768px) {
    .trail-nav__inner {
        gap: 15px;
        padding: 10px 15px;
    }

    .trail-nav__label {
        min-width: 80px;
        font-size: 12px;
    }

    .trail-nav__menu {
        gap: 10px;
    }

    .trail-nav__entry a {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* ===== HERO SECTION ===== */
.banner-ice {
    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;
}

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

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

.banner-ice__copy h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-ice__copy p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.cta-start {
    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;
}

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

.cta-info {
    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;
}

.cta-info:hover {
    background-color: white;
    color: #333;
}

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

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

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

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

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

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

    .cta-start, .cta-info {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Casino Listing Section */

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

.ice-cards ul {
margin: 0;
padding: 0;
list-style: none;
}

.ice-cards li {
margin: 0;
padding: 0;
}

.ice-cards p {
margin: 0;
}

.ice-cards {
margin-top: 2rem;
}

.venue-card {
display: flex;
}

.venue-card__preview,
.venue-card__body {
height: 100%;
}

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

.venue-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
);
}

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

.venue-card__logo-box {
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;
}

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

.venue-card__body {
display: flex;
padding: 18px 0;
}

.venue-card__score {
width: 35.5%;
}

.venue-card__info {
width: 37.5%;
}

.venue-card__actions {
width: 27%;
}

.venue-card__body {
border-radius: 32px;
}

.venue-card__cell {
padding: 0 24px;
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

.venue-card__cell: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
);
}

.venue-card__ribbon {
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;
}

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

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

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

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

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

.venue-card__features {
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;
}

.venue-card--alpha .venue-card__features {
background-color: rgba(37, 155, 254, 0.04);
}

.ice-cards--plain .venue-card--alpha .venue-card__features {
background-color: rgba(255, 255, 255, 1);
}

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

.venue-card__text {
position: relative;
padding-left: 36px;
line-height: 1.33;
padding-top: 2px;
padding-bottom: 2px;
}

.venue-card__icon {
display: block;
position: absolute;
left: 0;
top: 0;
}

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

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

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

.venue-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;
}

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

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

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

.venue-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);
}

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

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

.venue-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;
}

.venue-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;
}

.venue-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;
}

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

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

.venue-card--alpha .venue-card__preview,
.venue-card--alpha .venue-card__body {
background: #e6f3ff;
}

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

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

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

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

.venue-card__rail {
background: #e6f3ff;
}

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

.venue-card--alpha .venue-card__rail {
background: #259bfe;
}

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

.venue-card__rail-in {
position: relative;
}

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

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

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

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

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

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

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

.venue-card--style-2 .venue-card__perks p {
font-size: 16px;
}

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

.venue-card--style-2 .venue-card__features::before {
content: none;
display: none;
}

.venue-card__features {
margin-bottom: 0 !important;
}

.venue-card--style-2 .venue-card__features {
background: transparent !important;
padding: 0 !important;
}

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

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





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

.lore__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.section-lore h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #259bfe;
}

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

.section-lore ul, .section-lore ol, .perk-fury ul, .perk-fury ol {
    margin-left: 20px;
}
.section-lore p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}

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

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

    .lore__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-lore h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .section-lore h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-lore p {
        font-size: 1rem;
    }
}

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

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

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

.perks__header {
    text-align: center;
    margin-bottom: 20px;
}

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

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

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

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

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

.perks__item p {
    opacity: 0.9;
}

.perk-fury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.perk-fury h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.perk-fury h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

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

.perk-fury img, .perks__header img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 10px;
}

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

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

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

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

    .perks__item {
        padding: 20px;
    }

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

    .perk-fury h3 {
        font-size: 1.5rem;
    }

    .perk-fury p {
        font-size: 1rem;
    }
}

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

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

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

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

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

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

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

.cta-demo:hover {
    background-color: #1e7ae4;
}

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

.cta-real:hover {
    background-color: #f8f9fa;
}

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

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

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

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

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

    .cta-demo, .cta-real {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1rem;
    }

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

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

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

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

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

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

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

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

.credits__social a:hover {
    color: white;
}

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

.credits__links {
    list-style: none;
}

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

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

.credits__links a:hover {
    color: white;
}

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

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

.sigil:hover {
    opacity: 0.8;
}

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

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

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

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

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

    .credits__desc {
        text-align: center;
    }

    .credits__social {
        justify-content: center;
    }

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

    .credits__links {
        text-align: center;
    }

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

    .sigil__img {
        height: 25px;
    }
}

/* ===== FAQ SECTION ===== */
.section-faq {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}


.faq__content {
    position: relative;
    z-index: 2;
}

.faq__header {
    text-align: center;
    margin-bottom: 20px;
}

.faq__header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.faq__header p {
    font-size: 1.1rem;
    color: #000;
    margin: 0 auto;
}


.faq__item {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.faq__question {
    padding: 25px 30px;
    background: linear-gradient(135deg, #259bfe 0%, #1e40af 100%);
    color: white;
    cursor: default;
}

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

.faq__answer {
    padding: 25px 30px;
    background: white;
}

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

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

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

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

    .faq__question {
        padding: 20px 25px;
    }

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

    .faq__answer {
        padding: 20px 25px;
    }

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

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a; 
    color: #f8fafc;
    font-size: 15px;
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.2);
    margin-bottom:20px;
}

table th {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 12px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease, transform 0.2s ease;
}

table tr:nth-child(even) td {
    background-color: rgba(255, 255, 255, 0.05);
}

table tr:hover td {
    background: rgba(59, 130, 246, 0.15);
    transform: scale(1.01);
}

table td, table th {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}
table td:first-child, table th:first-child {
    border-left: none;
}

table p {
    margin: 0 !important;
}

.section-lore table p {
    color:#fff;
}
@media (max-width: 768px) {
    table {
        overflow-x: auto;
        display: block;
    }
}