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

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

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

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

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

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

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

.toc-items::-webkit-scrollbar {
    display: none;
}

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

.toc-item a:hover {
    background-color: #f1f5f9;
    color: #259bfe;
    border-color: #259bfe;
}

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

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

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

    .toc-title {
        min-width: 80px;
        font-size: 12px;
    }

    .toc-items {
        gap: 10px;
    }

    .toc-item a {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    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-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding:10px 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-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

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

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

.btn-learn: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));
    border-radius: 10px;
}

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

    .hero-content {
        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-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

/* Casino Listing Section */

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

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

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

.casino-listing__container p {
margin: 0;
}

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

.casino-listing__card {
display: flex;
}

.casino-listing__preview,
.casino-listing__content {
height: 100%;
}

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

.casino-listing__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-listing__badge {
position: absolute;
left: 20px;
top: -16px;
z-index: 2;
}

.casino-listing__image-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-listing__image {
width: auto;
height: auto;
margin: auto;
max-width: 100%;
max-height: 100%;
object-fit: contain;
}

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

.casino-listing__bonus {
width: 35.5%;
}

.casino-listing__info {
width: 37.5%;
}

.casino-listing__actions {
width: 27%;
}

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

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

.casino-listing__content-item: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-listing__bonus-title {
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-listing__bonus-inner {
display: flex;
justify-content: space-between;
align-items: center;
}

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

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

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

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

.casino-listing__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-listing__card--1 .casino-listing__feature-list {
background-color: rgba(37, 155, 254, 0.04);
}

.casino-listing__container--no-bg .casino-listing__card--1 .casino-listing__feature-list {
background-color: rgba(255, 255, 255, 1);
}

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

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

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

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

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

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

.casino-listing__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;
}

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

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

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

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

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

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

.casino-listing__number {
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-listing__rating-circle {
--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-listing__rating-circle span {
min-width: 40px;
min-height: 40px;
background-color: var(--bg, #fff);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

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

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

.casino-listing__card--1 .casino-listing__preview,
.casino-listing__card--1 .casino-listing__content {
background: #e6f3ff;
}

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

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

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

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

.casino-listing__border {
background: #e6f3ff;
}

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

.casino-listing__card--1 .casino-listing__border {
background: #259bfe;
}

.casino-listing__card--1 .casino-listing__border:nth-child(2) {
background: #4db8ff;
}

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

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

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

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

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

.casino-listing__card-style-2 .casino-listing__rating-circle {
width: 80px;
height: 80px;
min-width: 80px;
min-height: 80px;
}

.casino-listing__card-style-2 .casino-listing__rating-circle span {
min-width: 70px;
min-height: 70px;
font-size: 20px;
}

@media (min-width: 1025px) {
.casino-listing__card-style-2 .casino-listing__bonus {
width: 42%;
}
.casino-listing__card-style-2 .casino-listing__info {
width: 31.5%;
}
.casino-listing__card-style-2 .casino-listing__actions {
width: 26%;
}
}

.casino-listing__card-style-2 .casino-listing__bonus-list p {
font-size: 16px;
}

.casino-listing__card-style-2 .casino-listing__bonus-list p b,
.casino-listing__card-style-2 .casino-listing__bonus-list p strong {
font-size: 18px;
}

.casino-listing__card-style-2 .casino-listing__feature-list::before {
content: none;
display: none;
}

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

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

@media (max-width: 1024px) {
.casino-listing__card {
flex-direction: column;
}
.casino-listing__border:nth-child(1) {
margin-right: 0;
margin-bottom: -8px;
width: 100%;
max-width: 100%;
}
.casino-listing__border:nth-child(2) {
width: 100%;
}
.casino-listing__content {
flex-direction: column;
}
.casino-listing__preview {
padding: 12px;
padding-bottom: 21px;
}
.casino-listing__content {
padding: 0 18px;
}
.casino-listing__content-item {
padding: 20px 0;
width: 100%;
}
.casino-listing__actions {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.casino-listing__button {
width: 100%;
}
.casino-listing__card {
width: 50%;
}
}

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





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

.game-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 768px) {
    .game-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.game-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #259bfe;
}
.game-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #259bfe;
}
.game-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #259bfe;
}
.game-info ul, .game-info ol {
    margin-left:20px;
}
.game-info ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}

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

.game-info-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}
/* ===== FEATURES SECTION ===== */
.features-section {
    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;
}

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

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

.feature-item p {
    opacity: 0.9;
}

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

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

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

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

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

/* Mobile */
@media (max-width: 768px) {
    .features-section {
        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;
    }

    .feature-item {
        padding: 20px;
    }

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

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

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

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

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

.faq-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #2d3748;
    padding: 25px 30px;
    background-color: white;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.faq-section h3:hover {
    background-color: #259bfe;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 155, 254, 0.3);
}

.faq-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    padding: 25px 30px;
    background-color: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.faq-section > .container > div > div {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-section > .container > div > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-section > .container > div > div:last-child {
    margin-bottom: 0;
}

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

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-section h3 {
        font-size: 1.1rem;
        padding: 20px 25px;
    }

    .faq-section p {
        font-size: 1rem;
        padding: 20px 25px;
    }

    .faq-section > .container > div > div {
        margin-bottom: 15px;
    }
}

/* ===== PLAY SECTION ===== */
.play-section {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-content {
    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-description {
    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;
}

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

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    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) {
    .footer {
        padding: 40px 0 20px;
    }

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

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

    .footer-description {
        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;
    }

    .logo-image {
        height: 25px;
    }
}

/* ===== TABLE STYLES ===== */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    font-family: "proxima-nova", sans-serif;
}

thead {
    background: linear-gradient(135deg, #259bfe 0%, #1e7ae4 100%);
    color: #ffffff;
}

thead th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
}

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

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

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

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

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

tbody td {
    padding: 16px 20px;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    border: none;
    vertical-align: middle;
}

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

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

/* Стили для разных типов данных в таблице */
.table-number {
    text-align: right;
    font-weight: 600;
    color: #259bfe;
}

.table-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-status.success {
    background-color: #d6f0ff;
    color: #259bfe;
}

.table-status.warning {
    background-color: #fff3cd;
    color: #856404;
}

.table-status.error {
    background-color: #f8d7da;
    color: #721c24;
}

.table-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #259bfe;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.table-action:hover {
    background-color: #1e7ae4;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 155, 254, 0.3);
}

/* Мобильная версия с горизонтальной прокруткой */
@media (max-width: 768px) {
    .table-container, table {
        overflow-x: auto;
        display:block;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    thead th,
    tbody td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .table-action {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .table-status {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* Дополнительные стили для пустых таблиц */
table:empty::before {
    content: "Нет данных для отображения";
    display: block;
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    font-style: italic;
}

/* Стили для заголовка таблицы */
.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.table-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.table-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Стили для пагинации */
.table-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 20px 0;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: #259bfe;
    color: #ffffff;
    border-color: #259bfe;
}

.pagination-btn.active {
    background-color: #259bfe;
    color: #ffffff;
    border-color: #259bfe;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover {
    background-color: #ffffff;
    color: #333;
    border-color: #e2e8f0;
}

/* ===== PROS CONS BLOCK ===== */
.pros-cons-container {
    margin: 40px 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.pros-section,
.cons-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pros-section::before,
.cons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pros-section::before {
    background: linear-gradient(135deg, #259bfe 0%, #4db8ff 100%);
}

.cons-section::before {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

.pros-section:hover,
.cons-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pros-header,
.cons-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.pros-icon,
.cons-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #259bfe 0%, #4db8ff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 155, 254, 0.3);
}

.cons-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.pros-header h3,
.cons-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.pros-list,
.cons-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pros-item,
.cons-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.pros-item:hover,
.cons-item:hover {
    transform: translateX(5px);
}

.pros-bullet,
.cons-bullet {
    font-size: 1.2rem;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 50%;
    background: #e6f3ff;
    color: #259bfe;
    font-weight: bold;
}

.cons-bullet {
    background: #ffe6e6;
    color: #ff6b6b;
}

.pros-item p,
.cons-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

/* Анимация появления элементов */
.pros-item,
.cons-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.pros-item:nth-child(1) { animation-delay: 0.1s; }
.pros-item:nth-child(2) { animation-delay: 0.2s; }
.pros-item:nth-child(3) { animation-delay: 0.3s; }
.pros-item:nth-child(4) { animation-delay: 0.4s; }
.pros-item:nth-child(5) { animation-delay: 0.5s; }

.cons-item:nth-child(1) { animation-delay: 0.1s; }
.cons-item:nth-child(2) { animation-delay: 0.2s; }
.cons-item:nth-child(3) { animation-delay: 0.3s; }
.cons-item:nth-child(4) { animation-delay: 0.4s; }
.cons-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pros-section,
    .cons-section {
        padding: 20px;
    }
    
    .pros-header,
    .cons-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .pros-icon,
    .cons-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .pros-header h3,
    .cons-header h3 {
        font-size: 1.3rem;
    }
    
    .pros-item,
    .cons-item {
        gap: 10px;
        padding: 10px 0;
    }
    
    .pros-bullet,
    .cons-bullet {
        font-size: 1rem;
        min-width: 20px;
        height: 20px;
    }
    
    .pros-item p,
    .cons-item p {
        font-size: 0.9rem;
    }
}