 /* ===== 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-frame {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .layout-frame {
         padding: 0 15px;
     }
 }

 /* ===== TABLE OF CONTENTS NAVIGATION ===== */
 .compass-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;
 }

 .compass-nav__wrap {
     display: flex;
     align-items: center;
     gap: 30px;
     padding: 12px 20px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .compass-nav__title {
     font-weight: 600;
     color: #259bfe;
     min-width: 120px;
     font-size: 14px;
 }

 .compass-nav__items {
     display: flex;
     gap: 20px;
     flex: 1;
     margin: 0;
     padding: 0;
     list-style: none;
     overflow-x: auto;
     -ms-overflow-style: none;
     scrollbar-width: none;
 }

 .compass-nav__items::-webkit-scrollbar {
     display: none;
 }

 .compass-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;
 }

 .compass-nav__item a:hover {
     background-color: #f1f5f9;
     color: #259bfe;
     border-color: #259bfe;
 }

 .compass-nav__track {
     width: 100%;
     height: 3px;
     background-color: #e2e8f0;
     margin-top: 3px;
 }

 .compass-nav__bar {
     height: 100%;
     background: #259bfe;
     width: 0%;
     transition: width 0.3s ease;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .compass-nav__wrap {
         gap: 15px;
         padding: 10px 15px;
     }

     .compass-nav__title {
         min-width: 80px;
         font-size: 12px;
     }

     .compass-nav__items {
         gap: 10px;
     }

     .compass-nav__item a {
         font-size: 12px;
         padding: 4px 8px;
     }
 }

 /* ===== HERO SECTION ===== */
 .glacier-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;
 }

 .glacier-hero__overlay {
     position: absolute;
     inset: 0;
     background-color: rgba(0, 0, 0, 0.6);
 }

 .glacier-hero__grid {
     position: relative;
     z-index: 10;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
     padding: 10px 0px;
 }

 .glacier-hero__text h1 {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .glacier-hero__text p {
     font-size: 1.1rem;
     margin-bottom: 20px;
     opacity: 0.9;
 }

 .glacier-hero__actions {
     display: flex;
     gap: 20px;
     align-items: center;
 }

 .btn-go {
     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-go:hover {
     background-color: #1e7ae4;
     transform: translateY(-2px);
 }

 .btn-more {
     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-more:hover {
     background-color: white;
     color: #333;
 }

 .glacier-hero__art img {
     max-width: 100%;
     height: auto;
     filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
 }

 /* Mobile */
 @media (max-width: 768px) {
     .glacier-hero {
         min-height: 60vh;
         padding: 40px 0;
     }

     .glacier-hero__grid {
         grid-template-columns: 1fr;
         gap: 30px;
         text-align: center;
     }

     .glacier-hero__text h1 {
         font-size: 2.5rem;
         margin-bottom: 15px;
     }

     .glacier-hero__text p {
         font-size: 1.1rem;
         margin-bottom: 25px;
     }

     .glacier-hero__actions {
         flex-direction: column;
         gap: 15px;
         width: 100%;
     }

     .btn-go,
     .btn-more {
         width: 100%;
         justify-content: center;
         padding: 12px 20px;
         font-size: 1rem;
     }
 }

 /* Casino Listing Section */

 .casinos-board {
     margin-top: 40px
 }

 .casinos-board h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: #259bfe;
 }

 .parlor-deck ul {
     margin: 0;
     padding: 0;
     list-style: none;
 }

 .parlor-deck li {
     margin: 0;
     padding: 0;
 }

 .parlor-deck p {
     margin: 0;
 }

 .parlor-deck {
     margin-top: 2rem;
 }

 .parlor-card {
     display: flex;
 }

 .parlor-card__preview,
 .parlor-card__content {
     height: 100%;
 }

 .parlor-card__preview {
     width: 100%;
     padding: 10px;
     border-radius: 32px;
     position: relative;
     display: flex;
     align-items: center;
     overflow: hidden;
 }

 .parlor-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);
 }

 .parlor-card__badge {
     position: absolute;
     left: 20px;
     top: -16px;
     z-index: 2;
 }

 .parlor-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;
 }

 .parlor-card__logo {
     width: auto;
     height: auto;
     margin: auto;
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
 }

 .parlor-card__content {
     display: flex;
     padding: 18px 0;
 }

 .parlor-card__score {
     width: 35.5%;
 }

 .parlor-card__info {
     width: 37.5%;
 }

 .parlor-card__actions {
     width: 27%;
 }

 .parlor-card__content {
     border-radius: 32px;
 }

 .parlor-card__slot {
     padding: 0 24px;
     position: relative;
     display: flex;
     flex-direction: row;
     justify-content: center;
     align-items: center;
 }

 .parlor-card__slot: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);
 }

 .parlor-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;
 }

 .parlor-card__score-wrap {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .parlor-card__offers {
     margin-top: 8px;
     padding: 6px 16px;
     background-color: rgba(37, 155, 254, 0.08);
     border-radius: 12px;
     overflow: hidden;
     position: relative;
 }

 .parlor-card__offers::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 4px;
     height: 100%;
     background-color: #259bfe;
     opacity: 0.3;
 }

 .parlor-card__offers p {
     font-weight: 600;
     font-size: 14px;
     line-height: 1.5;
     margin: 0 !important;
 }

 .parlor-card__offers p b,
 .parlor-card__offers p strong {
     font-weight: 700;
     font-size: 16px;
     color: #259bfe;
 }

 .parlor-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;
 }

 .parlor-card--one .parlor-card__features {
     background-color: rgba(37, 155, 254, 0.04);
 }

 .parlor-deck--no-bg .parlor-card--one .parlor-card__features {
     background-color: rgba(255, 255, 255, 1);
 }

 .parlor-card__features::before {
     position: absolute;
     width: 4px;
     left: 0;
     content: "";
     top: 0;
     height: 100%;
     background-color: #259bfe;
 }

 .parlor-card__text {
     position: relative;
     padding-left: 36px;
     line-height: 1.33;
     padding-top: 2px;
     padding-bottom: 2px;
 }

 .parlor-card__icon {
     display: block;
     position: absolute;
     left: 0;
     top: 0;
 }

 .parlor-card__feature:not(:first-child) {
     margin-top: 16px;
 }

 .parlor-card__feature {
     padding-left: 0 !important;
     margin-bottom: 0 !important;
 }

 .parlor-card__feature::before {
     content: none !important;
     display: none !important;
 }

 .parlor-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;
 }

 .parlor-card__button:not(:first-child) {
     margin-top: 8px;
 }

 .parlor-card__button--primary {
     background-color: #259bfe;
     color: #ffffff !important;
     border: 1px solid #259bfe;
 }

 .parlor-card__button--secondary {
     color: #000000 !important;
     background-color: transparent;
     border: 1px solid #259bfe;
 }

 .parlor-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);
 }

 .parlor-card__button:active {
     transform: scale(0.95);
 }

 .parlor-card__button-icon {
     margin-right: 12px;
 }

 .parlor-card__index {
     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;
 }

 .parlor-card__meter {
     --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;
 }

 .parlor-card__meter span {
     min-width: 40px;
     min-height: 40px;
     background-color: var(--bg, #fff);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .rank-100 {
     --percent: 100;
     --bg: #d6f0ff;
 }

 .rank-95 {
     --percent: 95;
     --bg: #e0f4ff;
 }

 .parlor-card--one .parlor-card__preview,
 .parlor-card--one .parlor-card__content {
     background: #e6f3ff;
 }

 .parlor-card:not(:last-child) {
     margin-bottom: 24px;
 }

 .parlor-card__rail {
     border-radius: 36px;
     padding: 3px;
     background: #c7e7ff;
 }

 .parlor-card__rail:nth-child(1) {
     width: 22%;
     max-width: 256px;
     margin-right: -8px;
 }

 .parlor-card__rail:nth-child(2) {
     width: 78%;
     width: calc(78% + 8px);
 }

 .parlor-card__rail {
     background: #e6f3ff;
 }

 .parlor-card__rail:nth-child(2) {
     background: #e6f3ff;
 }

 .parlor-card--one .parlor-card__rail {
     background: #259bfe;
 }

 .parlor-card--one .parlor-card__rail:nth-child(2) {
     background: #4db8ff;
 }

 .parlor-card__rail-inner {
     position: relative;
 }

 .parlor-card--style-2 .parlor-card__tag {
     position: absolute;
     z-index: 2;
     right: 20px;
     transform: translateY(-40%);
     background-color: rgba(237, 237, 237, 1);
 }

 .parlor-card--style-2.casino-listing__card--1 .parlor-card__tag {
     color: #ffffff;
     background: #259bfe;
 }

 .parlor-card--style-2 .parlor-card__score.casino-listing__content-item {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
 }

 .parlor-card--style-2 .parlor-card__offers {
     max-height: fit-content;
     width: 100%;
     margin-left: 24px;
     margin-top: 0;
 }

 .parlor-card--style-2 .parlor-card__meter {
     width: 80px;
     height: 80px;
     min-width: 80px;
     min-height: 80px;
 }

 .parlor-card--style-2 .parlor-card__meter span {
     min-width: 70px;
     min-height: 70px;
     font-size: 20px;
 }

 @media (min-width: 1025px) {
     .parlor-card--style-2 .parlor-card__score {
         width: 42%;
     }

     .parlor-card--style-2 .parlor-card__info {
         width: 31.5%;
     }

     .parlor-card--style-2 .parlor-card__actions {
         width: 26%;
     }
 }

 .parlor-card--style-2 .parlor-card__offers p {
     font-size: 16px;
 }

 .parlor-card--style-2 .parlor-card__offers p b,
 .parlor-card--style-2 .parlor-card__offers p strong {
     font-size: 18px;
 }

 .parlor-card--style-2 .parlor-card__features::before {
     content: none;
     display: none;
 }

 .parlor-card__features {
     margin-bottom: 0 !important;
 }

 .parlor-card--style-2 .parlor-card__features {
     background: transparent !important;
     padding: 0 !important;
 }

 @media (max-width: 1024px) {
     .parlor-card {
         flex-direction: column;
     }

     .parlor-card__rail:nth-child(1) {
         margin-right: 0;
         margin-bottom: -8px;
         width: 100%;
         max-width: 100%;
     }

     .parlor-card__rail:nth-child(2) {
         width: 100%;
     }

     .parlor-card__content {
         flex-direction: column;
     }

     .parlor-card__preview {
         padding: 12px;
         padding-bottom: 21px;
     }

     .parlor-card__content {
         padding: 0 18px;
     }

     .parlor-card__slot {
         padding: 20px 0;
         width: 100%;
     }

     .parlor-card__actions {
         flex-direction: row;
         justify-content: space-between;
         align-items: center;
     }

     .parlor-card__button {
         width: 100%;
     }

     .parlor-card {
         width: 50%;
     }
 }

 @media (max-width: 767px) {
     .parlor-card {
         width: 100%;
     }
 }





 /* ===== GAME INFO SECTION ===== */
 .section-overview {
     padding: 20px 0;
     background-color: white;
 }

 .overview__grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .section-overview h1 {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: #259bfe;
 }

 .section-overview h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: #259bfe;
 }

 .section-overview h3 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: #259bfe;
 }
 @media (max-width: 768px) {
     .section-overview h3 {
         font-size: 1.5rem;
         margin-bottom: 10px;
     }
 }

 .section-overview p {
     font-size: 1.1rem;
     margin-bottom: 10px;
     color: #555;
 }

 .overview__image img,
 .highlights__header img {
     max-width: 100%;
     height: auto;
     margin: 0 auto;
     display: block;
     border-radius: 10px;
     ;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .section-overview {
         padding: 20px 0;
     }

     .overview__grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .section-overview h2 {
         font-size: 2rem;
         margin-bottom: 10px;
     }

     .section-overview p {
         font-size: 1rem;
     }
 }

 /* ===== FEATURES SECTION ===== */
 .section-highlights {
     background-image: url('/images/blu-background-square-1.jpg');
     background-size: cover;
     background-position: center;
     padding: 80px 0;
     position: relative;
     color: white;
 }

 .highlights__overlay {
     position: absolute;
     inset: 0;
     background-color: rgba(37, 155, 254, 0.85);
 }

 .highlights__content {
     position: relative;
     z-index: 10;
 }

 .highlights__header {
     text-align: center;
     margin-bottom: 60px;
 }

 .highlights__header h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .highlights__header p {
     font-size: 1rem;
     opacity: 0.9;
     margin-bottom:10px;
 }

 .highlights__list {
     list-style: none;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
 }

 .highlights__item {
     background-color: rgba(255, 255, 255, 0.1);
     padding: 30px;
     text-align: center;
 }

 .highlights__item h3 {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .highlights__item p {
     opacity: 0.9;
 }

 .highlight-fury {
     display: grid;
 }

 .highlight-fury h3 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .highlight-fury ul,
 highlight-fury ol,
 .section-overview ul,
 .section-overview ol {
     margin-left: 20px;
     text-align: left;
 }


 .highlight-fury p {
     font-size: 1.1rem;
     margin-bottom: 20px;
     opacity: 0.9;
     text-align: left;
 }

 .highlights__tip {
     background-color: rgba(255, 255, 255, 0.2);
     padding: 20px;
     font-weight: 600;
 }

 .highlight-fury img {
     max-width: 100%;
     height: auto;
     margin: 0 auto;
     display: block;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .section-highlights {
         padding: 50px 0;
     }

     .highlights__header h2 {
         font-size: 2rem;
     }

     .highlights__header p {
         font-size: 1rem;
     }

     .highlights__list {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-bottom: 40px;
     }

     .highlights__item {
         padding: 20px;
     }

     .highlight-fury {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .highlight-fury h3 {
         font-size: 1.5rem;
     }

     .highlight-fury p {
         font-size: 1rem;
     }
 }

 /* ===== PLAY SECTION ===== */
 .section-start {
     background-image: url('/images/background-1.webp');
     background-size: cover;
     background-position: center;
     padding: 60px 0;
     position: relative;
     text-align: center;
     color: white;
 }

 .start__overlay {
     position: absolute;
     inset: 0;
     background-color: rgba(0, 0, 0, 0.7);
 }

 .start__content {
     position: relative;
     z-index: 10;
 }

 .section-start h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .section-start p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     opacity: 0.9;
 }

 .start__actions {
     display: flex;
     gap: 20px;
     justify-content: center;
     margin-bottom: 30px;
 }

 .btn-try {
     background-color: #259bfe;
     color: white;
     padding: 15px 30px;
     text-decoration: none;
     font-size: 1.1rem;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-try:hover {
     background-color: #1e7ae4;
 }

 .btn-real {
     background-color: white;
     color: #259bfe;
     padding: 15px 30px;
     text-decoration: none;
     font-size: 1.1rem;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-real:hover {
     background-color: #f8f9fa;
 }

 .start__badges {
     display: flex;
     justify-content: center;
     gap: 30px;
     font-size: 0.9rem;
     opacity: 0.8;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .section-start {
         padding: 40px 0;
     }

     .section-start h2 {
         font-size: 2rem;
     }

     .section-start p {
         font-size: 1rem;
         margin-bottom: 25px;
     }

     .start__actions {
         flex-direction: column;
         align-items: center;
         gap: 15px;
     }

     .btn-try,
     .btn-real {
         width: 100%;
         max-width: 300px;
         padding: 12px 20px;
         font-size: 1rem;
     }

     .start__badges {
         flex-direction: column;
         gap: 10px;
         font-size: 0.8rem;
     }
 }

 /* ===== FOOTER ===== */
 .site-tail {
     background-color: #1a202c;
     color: white;
     padding: 50px 0 30px;
 }

 .tail__grid {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 40px;
     margin-bottom: 40px;
 }

 .tail__brand {
     color: #259bfe;
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .tail__brand img {
     height: 40px;
     width: auto;
 }

 .tail__desc {
     color: #a0aec0;
     margin-bottom: 20px;
 }

 .tail__social {
     display: flex;
     gap: 15px;
 }

 .tail__social a {
     color: #a0aec0;
     font-size: 1.2rem;
     transition: color 0.3s ease;
 }

 .tail__social a:hover {
     color: white;
 }

 .tail__section h3 {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .tail__links {
     list-style: none;
 }

 .tail__links li {
     margin-bottom: 10px;
 }

 .tail__links a {
     color: #a0aec0;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .tail__links a:hover {
     color: white;
 }

 .tail__licenses {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
 }

 .emblem {
     display: inline-block;
     transition: opacity 0.3s ease;
 }

 .emblem:hover {
     opacity: 0.8;
 }

 .emblem__img {
     height: 30px;
     width: auto;
 }

 .tail__bottom {
     border-top: 1px solid #4a5568;
     padding-top: 30px;
     text-align: center;
     color: #a0aec0;
     font-size: 0.9rem;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .site-tail {
         padding: 40px 0 20px;
     }

     .tail__grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .tail__brand {
         text-align: center;
         font-size: 1.3rem;
     }

     .tail__desc {
         text-align: center;
     }

     .tail__social {
         justify-content: center;
     }

     .tail__section h3 {
         text-align: center;
         margin-bottom: 15px;
     }

     .tail__links {
         text-align: center;
     }

     .tail__licenses {
         justify-content: center;
         gap: 10px;
     }

     .emblem__img {
         height: 25px;
     }
 }

 /* ===== FAQ SECTION ===== */
 .section-questions {
     background: #ffffff;
     padding: 80px 0;
     position: relative;
     overflow: hidden;
 }

 .section-questions::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, #f8fafc 25%, transparent 25%),
         linear-gradient(-45deg, #f8fafc 25%, transparent 25%),
         linear-gradient(45deg, transparent 75%, #f8fafc 75%),
         linear-gradient(-45deg, transparent 75%, #f8fafc 75%);
     background-size: 20px 20px;
     background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
     opacity: 0.3;
     z-index: 1;
 }

 .questions__content {
     position: relative;
     z-index: 2;
 }

 .questions__header {
     text-align: center;
     margin-bottom: 60px;
 }

 .questions__header h2 {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1e293b;
     margin-bottom: 15px;
     text-shadow: none;
 }

 .questions__header p {
     font-size: 1.1rem;
     color: #64748b;
     max-width: 600px;
     margin: 0 auto;
 }

 .questions__list {
     max-width: 800px;
     margin: 0 auto;
 }

 .questions__item {
     background: #ffffff;
     border-radius: 16px;
     margin-bottom: 24px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     border: 2px solid #e2e8f0;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .questions__item:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
     border-color: #3b82f6;
 }

 .questions__question {
     padding: 28px 32px;
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
     color: white;
     cursor: default;
     position: relative;
 }

 .questions__question::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, #f59e0b, #ef4444, #8b5cf6);
 }

 .questions__question h3 {
     font-size: 1.25rem;
     font-weight: 600;
     margin: 0;
     line-height: 1.4;
 }

 .questions__answer {
     padding: 28px 32px;
     background: #fafafa;
     position: relative;
 }

 .questions__answer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
 }

 .questions__answer p {
     font-size: 1rem;
     line-height: 1.7;
     color: #374151;
     margin: 0;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .section-questions {
         padding: 60px 0;
     }

     .questions__header h2 {
         font-size: 2rem;
     }

     .questions__header p {
         font-size: 1rem;
     }

     .questions__question {
         padding: 24px 28px;
     }

     .questions__question h3 {
         font-size: 1.1rem;
     }

     .questions__answer {
         padding: 24px 28px;
     }

     .questions__answer p {
         font-size: 0.95rem;
     }
 }

 table {
     width: 100%;
     border-collapse: collapse;
     border-spacing: 0;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
     font-size: 15px;
 }

 table th {
     background: linear-gradient(90deg, #93c5fd, #67e8f9, #f0abfc);
     color: #1e293b;
     font-weight: 600;
     padding: 12px;
     text-align: left;
     border: 1px solid #e2e8f0;
 }

 table td {
     background-color: #ffffff;
     padding: 12px;
     border: 1px solid #e2e8f0;
     transition: background-color 0.2s ease;
 }

 table tr:nth-child(even) td {
     background-color: #f9fbff;
 }

 table tr:hover td {
     background-color: #eef6ff;
 }

 table p {
     margin: 0 !important;
 }

 .highlight-fury table p {
     color: #000;
 }
 @media (max-width: 768px) {
     table {
         overflow-x: auto;
         display: block;
     }
 }