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

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

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

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

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

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

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

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

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

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

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

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

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

     .waypoint-nav__title {
         min-width: 80px;
         font-size: 12px;
     }

     .waypoint-nav__list {
         gap: 10px;
     }

     .waypoint-nav__item a {
         font-size: 12px;
         padding: 4px 8px;
     }
 }

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

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

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

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

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

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

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

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

 .btn-details {
     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-details:hover {
     background-color: white;
     color: #333;
 }

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

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

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

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

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

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

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

 /* Casino Listing Section */
 .casino-showcase {
     margin-top: 60px;
     margin-bottom: 40px;
     padding: 40px 0;
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     border-radius: 20px;
     position: relative;
     overflow: hidden;
 }

 .casino-showcase::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
         radial-gradient(circle at 20% 80%, rgba(37, 155, 254, 0.05) 0%, transparent 50%),
         radial-gradient(circle at 80% 20%, rgba(37, 155, 254, 0.05) 0%, transparent 50%);
     pointer-events: none;
 }

 .casino-showcase h2 {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 30px;
     color: #1e293b;
     text-align: center;
     position: relative;
     z-index: 2;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 .casino-showcase h3 {
     font-size: 1.4rem;
     font-weight: 600;
     margin-bottom: 15px;
     color: #374151;
     line-height: 1.4;
 }

 .casino-showcase p {
     font-size: 1.1rem;
     line-height: 1.6;
     color: #64748b;
     margin-bottom: 15px;
 }

 .casino-showcase strong,
 .casino-showcase b {
     color: #259bfe;
     font-weight: 700;
 }

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

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

 .casino-showcase a {
     color: #259bfe;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .casino-showcase a:hover {
     color: #1d4ed8;
     text-decoration: underline;
 }

 /* Mobile styles for casino showcase */
 @media (max-width: 768px) {
     .casino-showcase {
         margin-top: 40px;
         margin-bottom: 30px;
         padding: 30px 0;
         border-radius: 16px;
     }

     .casino-showcase h2 {
         font-size: 2.2rem;
         margin-bottom: 25px;
     }

     .casino-showcase h3 {
         font-size: 1.2rem;
         margin-bottom: 12px;
     }

     .casino-showcase p {
         font-size: 1rem;
         margin-bottom: 12px;
     }
 }

 .arctic-grid li {
     margin: 0;
     padding: 0;
 }

 .arctic-grid p {
     margin: 0;
 }

 .arctic-grid {
     margin-top: 2rem;
 }

 .lodge-card {
     display: flex;
 }

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

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

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

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

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

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

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

 .lodge-card__score {
     width: 35.5%;
 }

 .lodge-card__info {
     width: 37.5%;
 }

 .lodge-card__actions {
     width: 27%;
 }

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

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

 .lodge-card__section: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);
 }

 .lodge-card__label {
     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;
 }

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

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

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

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

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

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

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

 .arctic-grid--no-bg .lodge-card--first .lodge-card__features {
     background-color: rgba(255, 255, 255, 1);
 }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .lodge-card__rail {
     background: #e6f3ff;
 }

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

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

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

 .lodge-card__rail-core {
     position: relative;
 }

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

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

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

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

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

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

 @media (min-width: 1025px) {
     .lodge-card--style-2 .lodge-card__score {
         width: 42%;
     }

     .lodge-card--style-2 .lodge-card__info {
         width: 31.5%;
     }

     .lodge-card--style-2 .lodge-card__actions {
         width: 26%;
     }
 }

 .lodge-card--style-2 .lodge-card__benefits p {
     font-size: 16px;
 }

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

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

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

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

 @media (max-width: 1024px) {
     .lodge-card {
         flex-direction: column;
     }

     .lodge-card__rail:nth-child(1) {
         margin-right: 0;
         margin-bottom: -8px;
         width: 100%;
         max-width: 100%;
     }

     .lodge-card__rail:nth-child(2) {
         width: 100%;
     }

     .lodge-card__content {
         flex-direction: column;
     }

     .lodge-card__preview {
         padding: 12px;
         padding-bottom: 21px;
     }

     .lodge-card__content {
         padding: 0 18px;
     }

     .lodge-card__section {
         padding: 20px 0;
         width: 100%;
     }

     .lodge-card__actions {
         flex-direction: row;
         justify-content: space-between;
         align-items: center;
     }

     .lodge-card__button {
         width: 100%;
     }

     .lodge-card {
         width: 50%;
     }
 }

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





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

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

 .section-brief h1 {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: #259bfe;
 }

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

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

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

 .section-brief ul li,
 .section-brief ol li {
     margin-left: 20px;
 }

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

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

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

     .section-brief h2 {
         font-size: 2rem;
         margin-bottom: 20px;
         text-align: center;
     }

     .section-brief p {
         font-size: 1rem;
         text-align: center;
     }
 }

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

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

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

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

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

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

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

 .traits__item {
     background-color: rgba(255, 255, 255, 0.1);
     padding: 30px;
     text-align: center;
     border-radius: 12px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

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

 .traits__item p {
     opacity: 0.9;
     margin: 0;
 }

 .trait-fury {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: start;
     margin-bottom: 40px;
 }

 .trait-fury h2 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 20px;
     color: white;
 }

 .trait-fury h3 {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 15px;
     color: white;
 }

 .trait-fury p {
     font-size: 1.1rem;
     margin-bottom: 20px;
     opacity: 0.9;
     color: white;
 }

 .trait-fury ul {
     list-style: none;
     padding: 0;
     margin: 20px 0;
 }

 .trait-fury li {
     background-color: rgba(255, 255, 255, 0.1);
     padding: 12px 16px;
     margin-bottom: 8px;
     border-radius: 8px;
     border-left: 4px solid #3b82f6;
     color: white;
 }

 .trait-fury li:before {
     content: "•";
     color: #3b82f6;
     font-weight: bold;
     margin-right: 8px;
 }

 .traits__tip {
     background-color: rgba(255, 255, 255, 0.2);
     padding: 20px;
     font-weight: 600;
     border-radius: 8px;
     margin-top: 20px;
 }

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

 /* Стили для таблицы внутри trait-fury */
 .trait-fury table {
     margin: 20px 0;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .trait-fury thead {
     background: rgba(59, 130, 246, 0.8);
 }

 .trait-fury td {
     color: white;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .trait-fury tbody tr:nth-child(even) {
     background-color: rgba(255, 255, 255, 0.05);
 }

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

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

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

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

     .traits__item {
         padding: 20px;
     }

     .trait-fury {
         grid-template-columns: 1fr;
         gap: 30px;
         margin-bottom: 30px;
     }

     .trait-fury h2 {
         font-size: 1.5rem;
         text-align: center;
     }

     .trait-fury h3 {
         font-size: 1.3rem;
         text-align: center;
     }

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

     .trait-fury li {
         padding: 10px 14px;
         font-size: 0.95rem;
     }
 }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .crest:hover {
     opacity: 0.8;
 }

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

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

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

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

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

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

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

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

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

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

     .crest__img {
         height: 25px;
     }
 }

 /* ===== FAQ SECTION ===== */
 .section-inquiries {
     background: #ffffff;
     padding: 80px 0;
     position: relative;
     overflow: hidden;
 }

 .section-inquiries::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;
 }

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

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

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

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

 .inquiries__list {
     max-width: 800px;
     margin: 0 auto;
 }

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

 .inquiries__item:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
     border-color: #3b82f6;
 }

 .inquiries__question {
     padding: 28px 32px;
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
     color: white;
     cursor: default;
     position: relative;
 }

 .inquiries__question::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, #f59e0b, #ef4444, #8b5cf6);
 }

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

 .inquiries__answer {
     padding: 28px 32px;
     background: #fafafa;
     position: relative;
 }

 .inquiries__answer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
 }

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

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

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

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

     .inquiries__question {
         padding: 24px 28px;
     }

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

     .inquiries__answer {
         padding: 24px 28px;
     }

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

 /* ===== TABLE STYLES ===== */
 table {
     width: 100%;
     border-collapse: collapse;
     margin: 20px 0;
     background: #ffffff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     border: 1px solid #e2e8f0;
 }

 thead {
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
     color: white;
 }

 table p {
     margin: 0 !important;
 }

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

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

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

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

 tbody tr:hover {
     transform: translateY(-1px);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

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

 tbody tr:last-child td:first-child {
     border-bottom-left-radius: 12px;
 }

 tbody tr:last-child td:last-child {
     border-bottom-right-radius: 12px;
 }

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

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


 @media (max-width: 768px) {
     .table-responsive {
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
         border-radius: 12px;
     }

     table {
         min-width: 600px;
         margin: 0;
         border-radius: 0;
         box-shadow: none;
         border: none;
     }

     thead th {
         padding: 12px 16px;
         font-size: 0.85rem;
         white-space: nowrap;
     }

     td {
         padding: 10px 16px;
         font-size: 0.85rem;
         white-space: nowrap;
     }

     thead th:first-child,
     thead th:last-child,
     tbody tr:last-child td:first-child,
     tbody tr:last-child td:last-child {
         border-radius: 0;
     }
 }