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

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

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

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

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

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

.pirots-toc__items {
    display: flex;
    gap: 20px;
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* scroll-snap-type: x proximity; */
}

.pirots-toc__items::-webkit-scrollbar {
    display: none;
}

.pirots-toc__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;
    scroll-snap-align: start;
}

.pirots-toc__item a:hover {
    background-color: #f1f5f9;
    color: #259bfe;
    border-color: #259bfe;
}

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

.pirots-toc__bar {
    height: 100%;
    background: #259bfe;
    width: 0%;
    transition: width 0.3s ease;
}

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

    .pirots-toc__title {
        min-width: 80px;
        font-size: 12px;
    }

    .pirots-toc__items {
        gap: 10px;
    }

    .pirots-toc__item a {
        font-size: 12px;
        padding: 4px 8px;
    }
}

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

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

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

.pirots-hero__text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.pirots-hero__text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 100%;
}

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

.pirots-btn--play {
    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;
    max-width: 100%;
}

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

.pirots-btn--learn {
    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;
    max-width: 100%;
}

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

.pirots-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) {
    .pirots-hero {
        min-height: 60vh;
        padding: 40px 0;
        overflow-x: hidden;
    }

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

    .pirots-hero__text h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        word-break: break-word;
        hyphens: auto;
    }

    .pirots-hero__text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        word-break: break-word;
        hyphens: auto;
    }

    .pirots-hero__actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .pirots-btn--play, .pirots-btn--learn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 0;
    }
}

/* Casino Listing Section */

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

.pirots-casinos__deck ul {
margin: 0;
padding: 0;
list-style: none;
}

.pirots-casinos__deck li {
margin: 0;
padding: 0;
}

.pirots-casinos__deck p {
margin: 0;
}

.pirots-casinos__deck {
margin-top: 2rem;
}

.pirots-card {
display: flex;
}

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

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

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

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

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

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

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

.pirots-card__score {
width: 35.5%;
}

.pirots-card__info {
width: 37.5%;
}

.pirots-card__actions {
width: 27%;
}

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

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

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

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

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

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

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

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

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

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

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

.pirots-casinos__deck--no-bg .pirots-card--first .pirots-card__features {
background-color: rgba(255, 255, 255, 1);
}

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

.pirots-card__text {
position: relative;
padding-left: 36px;
line-height: 1.33;
padding-top: 2px;
padding-bottom: 2px;
color: rgb(84, 98, 118);
}

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

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

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

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

.pirots-card__button {
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;
}

.pirots-card__button:not(:first-child) {
margin-top: 8px;
}

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

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

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

.pirots-card__button:active {
transform: scale(0.95);
}

.pirots-card__button-icon {
margin-right: 12px;
}

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

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

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

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

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

.pirots-card--first .pirots-card__preview,
.pirots-card--first .pirots-card__content {
background: #e6f3ff;
}

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

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

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

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

.pirots-card__rail {
background: #e6f3ff;
}

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

.pirots-card--first .pirots-card__rail {
background: #259bfe;
}

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

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

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

.pirots-card--alt.casino-listing__card--1 .pirots-card__ribbon {
color: #ffffff;
background: #259bfe;
}

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

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

.pirots-card--alt .pirots-card__rating {
width: 80px;
height: 80px;
min-width: 80px;
min-height: 80px;
}

.pirots-card--alt .pirots-card__rating span {
min-width: 70px;
min-height: 70px;
font-size: 20px;
}

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

.pirots-card--alt .pirots-card__offers p {
font-size: 16px;
}

.pirots-card--alt .pirots-card__offers p b,
.pirots-card--alt .pirots-card__offers p strong {
font-size: 18px;
}

.pirots-card--alt .pirots-card__features::before {
content: none;
display: none;
}

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

.pirots-card--alt .pirots-card__features {
background: transparent !important;
padding: 0 !important;
}

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

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





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

.pirots-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pirots-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #259bfe;
    line-height: 1.5;
}

.pirots-info h1 {
    font-size: 2.5rem;
    font-size: 700;
    margin-bottom: 30px;
    color: #259bfe;
}

.pirots-info h3 {
    font-size: 1.8rem;
    font-size: 700;
    margin-bottom: 15px;
    color: #259bfe;
}

.pirots-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

/* Content lists spacing */
.pirots-info ul {
    margin: 12px 0 20px 1.25rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.pirots-info li {
    margin: 8px 0;
}

.pirots-info li ul {
    margin-top: 6px;
    margin-bottom: 6px;
}

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

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

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

    .pirots-info h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        /* text-align: center; */
    }

    .pirots-info h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .pirots-info p {
        font-size: 1rem;
        /* text-align: center; */
    }
}

/* ===== FAQ SECTION ===== */
.pirots-faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.pirots-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #259bfe;
    text-align: center;
}

.pirots-faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.pirots-faq__item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 6px 18px rgba(37, 155, 254, 0.06);
}

.pirots-faq__item:not(:last-child) {
    margin-bottom: 14px;
}

.pirots-faq__q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 16px 18px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.pirots-faq__q:focus {
    outline: 2px solid #259bfe;
    outline-offset: 2px;
}

.pirots-faq__indicator {
    margin-left: 12px;
    color: #259bfe;
    font-weight: 700;
}

.pirots-faq__a {
    padding: 0 18px 16px 18px;
    color: #475569;
}

.pirots-faq__a[hidden] {
    display: none;
}

@media (max-width: 768px) {
    .pirots-faq {
        padding: 50px 0;
    }

    .pirots-faq h2 {
        font-size: 2rem;
    }
}

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

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

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

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

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

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

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

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

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

.pirots-features__item p {
    opacity: 0.9;
}

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

.pirots-frozen-fury h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pirots-frozen-fury p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.pirots-frozen-fury img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

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

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

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

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

    .pirots-features__item {
        padding: 20px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pirots-footer__social a:hover {
    color: white;
}

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

.pirots-footer__links {
    list-style: none;
}

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

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

.pirots-footer__links a:hover {
    color: white;
}

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

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

.pirots-brand:hover {
    opacity: 0.8;
}

.pirots-brand__img {
    height: 30px;
    width: auto;
}

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

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

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

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

    .pirots-footer__desc {
        text-align: center;
    }

    .pirots-footer__social {
        justify-content: center;
    }

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

    .pirots-footer__links {
        text-align: center;
    }

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

    .pirots-brand__img {
        height: 25px;
    }
}

/* ===== CONTENT TABLES ===== */
.pirots-info table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(37, 155, 254, 0.08);
}

.pirots-info table td,
.pirots-info table th {
    padding: 14px 18px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
    color: #334155;
    font-size: 1rem;
}

.pirots-info table tr:last-child td,
.pirots-info table tr:last-child th {
    border-bottom: none;
}

/* Header row (first row used as header in current markup) */
.pirots-info table tr:first-child td,
.pirots-info table tr:first-child th {
    background-color: rgba(37, 155, 254, 0.08);
    color: #259bfe;
    font-weight: 700;
}

/* Subtle zebra striping for readability */
.pirots-info table tr:nth-child(even) td {
    background-color: rgba(37, 155, 254, 0.03);
}

/* Hover state */
.pirots-info table tr:hover td {
    background-color: rgba(37, 155, 254, 0.08);
}

/* Tighten paragraph spacing inside cells from current markup */
.pirots-info table td p,
.pirots-info table th p {
    margin: 0;
    color: inherit;
}

/* Mobile: keep layout intact with smooth horizontal scroll */
@media (max-width: 768px) {
    .pirots-info table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border-radius: 10px;
    }

    .pirots-info table td,
    .pirots-info table th {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}