/* =========================================
           CSS RESET & VARIABLES
        ========================================= */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --clr-bg-deep: #04142c;
            --clr-bg-main: #07224D;
            --clr-bg-card: #0a2d5e;
            --clr-bg-light: #0d3870;
            --clr-accent-blue: #08519E;
            --clr-orange: #E8652B;
            --clr-orange-hover: #ff763b;
            --clr-green: #2ecc71;
            --clr-red: #e74c3c;
            --clr-text-white: #ffffff;
            --clr-text-muted: #a8b8d0;
            --clr-text-light: #d0dae8;
            --clr-border-subtle: rgba(8, 81, 158, 0.3);
            --clr-border-orange: rgba(232, 101, 43, 0.4);
            
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-md: 0 10px 30px rgba(4, 20, 44, 0.4);
            --shadow-lg: 0 15px 40px rgba(232, 101, 43, 0.25);
            
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 24px;
            --radius-xl: 50px;
            
            --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1300px;
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-main);
            color: var(--clr-text-white);
          background: linear-gradient(0deg, #0A519E 0%, #0A519E 100%), #FFF;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 { font-weight: 700; line-height: 1.2; color: var(--clr-text-white); text-align: left; }
        h1 { font-size: 2.85rem; letter-spacing: -0.5px; }
        h2 { font-size: 2rem; position: relative; padding-bottom: 12px;text-align: center; }
        h3 { font-size: 1.35rem; }
        p { color: var(--clr-text-light); font-size: 1.05rem; margin-bottom: 1rem; }
        .content {background: linear-gradient(0deg, #0A519E 0%, #0A519E 100%), #FFF;}

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(8, 81, 158, 0.30);
            background: #023971;
            backdrop-filter: blur(6px);
        }
.toggle {
  display: none;
}

        .header__container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header__logo {
            position: relative;
            display: flex;
            align-items: center;
            order: 1;
        }

        .header__logo img {
            max-height: 38px;
            display: block;
        }

        .header__logo .btn-logo {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            border: none;
        }

        .header__dropdown {
            order: 2;
            margin-right: auto;
            margin-left: 40px;
        }

        .header__logo_dropdown { display: none; }

        .header__dropdown nav ul {
            display: flex;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .header__dropdown nav ul li a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--clr-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            text-decoration: none;
        }

        .header__dropdown nav ul li a:hover,
        .header__dropdown nav ul li a.active {
            color: var(--clr-orange);
        }

        .header__auth {
            order: 3;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .header__reg-btn, .header__login-btn {
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .header__reg-btn {
            color: #ffffff;
            border: none;
            border-radius: 30px;
            background: radial-gradient(50% 50% at 50% 50%, #FF6420 0%, #FF5001 100%);
            box-shadow: 0 4px 20px 0 rgba(232, 101, 43, 0.40);
            cursor: pointer;
        }

        .header__reg-btn:hover {
     opacity: 0.8;
        }

        .header__login-btn {
            color: #ffffff;
        border-radius: 30px;
        background: #5F87C0;
        box-shadow: 0 4px 20px 0 rgba(232, 101, 43, 0.40);
        cursor: pointer;
        border: none;
        }

        .header__login-btn:hover {
           opacity: 0.8;
        }

        #dropdown-menu, .header__burger { display: none; }

        /* =========================================
           PRIMARY BUTTONS
        ========================================= */
        .cta-button-primary {
            display: inline-block;
            background: linear-gradient(90deg, #E8652B 0%, #f07a45 100%);
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 4px 20px rgba(232, 101, 43, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .cta-button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(232, 101, 43, 0.5);
            color: #ffffff;
        }

        /* =========================================
           MAIN LAYOUT & SECTIONS
        ========================================= */
        .content-wrapper { 
            padding-top: 70px; 
            max-width: 1300px;
    width: 98%;
    margin: 0 auto;
    padding: 70px 10px 0 10px;
        }

        .section {
            padding: 10px 24px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section--alternate {
            max-width: 100%;
        }

        .section--alternate .section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section-header-center {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 50px;
        }

        .section-header-center h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--clr-orange);
            border-radius: 2px;
        }

        .section-header-center p {
            margin-top: 15px;
            font-size: 1.1rem;
            color: var(--clr-text-muted);
        }

       .promo-banner {
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 98%;
  max-width: 1300px;
  padding: 30px;
  margin: 30px auto;
  border-radius: 24px;
  background: #ffffff;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.promo-banner * {
  box-sizing: border-box;
}


.promo-banner__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 60%;
  min-width: 0;
  padding: 30px;
border-radius: 20px;
background: linear-gradient(180deg, #0060CA 0%, #5CA9FF 100%);
box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.00) inset;
}

.promo-banner__tag ,
.title{
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
border-radius: 30px;
border: 1px solid rgba(255, 255, 255, 0.38);
background: rgba(13, 28, 80, 0.31);
color: #FFF;
text-align: center;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
font-size: 13.6px;
font-style: normal;
font-weight: 700;
line-height: 22.44px; 
letter-spacing: 2px;
text-transform: uppercase;
}

.promo-banner__title {
color: #FFF;
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
font-size: 52px;
font-style: normal;
font-weight: 700;
line-height: 110%; 
    text-align: left;
}

.promo-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 10px 20px;
  border: none;
border-radius: 30px;
background: linear-gradient(90deg, #F86F37 0%, #FF4A00 100%);
color: #FFF;
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 800;
line-height: normal;
text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.promo-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(255, 77, 28, 0.48);
}


.promo-banner__image {
  flex: 1 1 40%;
  min-width: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: auto;
}


@media (max-width: 1250px) {
    .promo-banner {
    padding: 20px;
  }

  .promo-banner__title {
    font-size: 42px;
  }
  .promo-banner__tag {
    font-size: 11px;
  }

}

@media (max-width: 700px) {
    .promo-banner,
    .promo-banner__panel {
    padding: 15px;
  }

  .promo-banner__title {
    font-size: 35px;
  }
  .promo-banner__cta {
    font-size: 17px;
  }

}


@media (max-width: 550px) {
  .promo-banner {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
    margin: 15px auto;
  }

  .promo-banner__panel {
    padding: 15px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
  }

  .promo-banner__title {
    font-size: 34px;
    width: 100%;
    text-align: center;
  }

  .promo-banner__cta {
    width: 100%;
    height: 48px;
  }

  .promo-banner__image {
    max-height: 163px;
    background-position: 10% 80%;
  }
}
        /* =========================================
           TILES & CONTENT BLOCKS
        ========================================= */
        .tiles-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: -40px;
            position: relative;
            z-index: 20;
            padding: 0 24px;
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
        }

        .tile-card {
            background: var(--clr-bg-card);
            border: 1px solid var(--clr-border-subtle);
            border-radius: var(--radius-md);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .tile-card:hover {
            transform: translateY(-5px);
            border-color: var(--clr-orange);
            box-shadow: var(--shadow-md);
            background: rgba(13, 56, 112, 1);
        }

        .tile-icon { font-size: 2rem; line-height: 1; }
        .tile-title { font-size: 1.15rem; font-weight: 700; }
        .tile-text { font-size: 0.95rem; color: var(--clr-text-muted); margin: 0; }

        /* TABLES */
        .info-table-wrapper, .games-table-wrapper {
            background: var(--clr-bg-card);
            border: 1px solid var(--clr-border-subtle);
            border-radius: var(--radius-md);
            padding: 8px;
            box-shadow: var(--shadow-md);
            overflow-x: auto;
        }

        table { width: 100%; border-collapse: collapse; text-align: left; font-size: 1rem; }
        th, td { padding: 16px 20px; border-bottom: 1px solid rgba(8, 81, 158, 0.15); }
        th { background-color: rgba(4, 20, 44, 0.4); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; color: var(--clr-text-muted); }
        tr:last-child td { border-bottom: none; }
        tbody tr:hover { background-color: rgba(255, 255, 255, 0.02); }
        .info-label-cell { font-weight: 600; color: var(--clr-text-white); width: 35%; }
        .info-value-cell { color: var(--clr-text-light); }

        /* PROS & CONS */
        .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
        .pros-box, .cons-box { background: rgba(4, 20, 44, 0.3); border-radius: var(--radius-md); padding: 30px; border: 1px solid var(--clr-border-subtle); }
        .pros-box { border-left: 4px solid var(--clr-green); }
        .cons-box { border-left: 4px solid var(--clr-red); }
        .pros-cons-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; }
        .pros-box .pros-cons-title { color: var(--clr-green); }
        .cons-box .pros-cons-title { color: var(--clr-red); }
        .pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .pros-cons-list li { position: relative; padding-left: 28px; color: var(--clr-text-light); font-size: 1rem; }
        .pros-box .pros-cons-list li::before { content: '✓'; position: absolute; left: 0; color: var(--clr-green); font-weight: 700; }
        .cons-box .pros-cons-list li::before { content: '✕'; position: absolute; left: 0; color: var(--clr-red); font-weight: 700; }

        /* EXPERT NOTE & LISTS */
        .expert-note {
            background: linear-gradient(145deg, rgba(8, 81, 158, 0.15) 0%, rgba(7, 34, 77, 0.05) 100%);
            border: 1px solid var(--clr-border-subtle);
            border-left: 4px solid var(--clr-orange);
            border-radius: var(--radius-md);
            padding: 30px; margin: 40px 0; display: flex; gap: 20px; align-items: flex-start;
        }
        .expert-note-icon { font-size: 2.2rem; line-height: 1; }
        .expert-note-content h3 { margin-bottom: 8px; color: var(--clr-orange); }
        .expert-note-content p { margin: 0; font-size: 1rem; color: var(--clr-text-light); }

        .styled-steps-list { list-style: none; counter-reset: steps-counter; display: flex; flex-direction: column; gap: 16px; margin: 30px 0; }
        .styled-steps-list li { counter-increment: steps-counter; background: var(--clr-bg-card); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); padding: 18px 24px 18px 65px; position: relative; color: var(--clr-text-light); }
        .styled-steps-list li::before { content: counter(steps-counter); position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: var(--clr-orange); color: var(--clr-text-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }

        /* PROMO CARDS & REVIEWS */
        .promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
        .promo-card { background: var(--clr-bg-card); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); padding: 30px; text-align: center; transition: var(--transition-smooth); }
        .promo-card:hover { border-color: var(--clr-border-orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .promo-badge { background: rgba(232, 101, 43, 0.15); color: var(--clr-orange); padding: 4px 12px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 15px; }
        .promo-card-title { font-size: 1.4rem; margin-bottom: 8px; }
        .promo-card-text { font-size: 0.95rem; color: var(--clr-text-muted); margin: 0; }

        .app-showcase-box { background: linear-gradient(135deg, var(--clr-bg-card) 0%, var(--clr-bg-light) 100%); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-lg); padding: 50px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
        .app-feature-list { list-style: none; margin: 20px 0 30px; display: flex; flex-direction: column; gap: 12px; }
        .app-feature-list li { position: relative; padding-left: 26px; color: var(--clr-text-light); }
        .app-feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--clr-orange); font-weight: 700; }
        .app-mockup-container { display: flex; justify-content: center; position: relative; }
        .app-screen-placeholder img { width: 260px; height: 480px; background: var(--clr-bg-deep); border: 8px solid #1c2e4a; border-radius: 36px; position: relative; box-shadow: var(--shadow-md); }
        .app-screen-placeholder::after { content: 'Mostbet App'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--clr-text-muted); font-weight: 600; }

        .reviews-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .review-card-item { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); padding: 24px; }
        .review-stars { color: #f1c40f; margin-bottom: 12px; font-size: 1.1rem; }
        .review-user { font-weight: 700; color: var(--clr-text-white); margin-bottom: 6px; }

        /* FAQ */
        .faq-wrapper { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
        .faq-node { background: var(--clr-bg-card); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); overflow: hidden; position: relative; }
        .faq-input { position: absolute; top: 0; left: 0; opacity: 0; width: 100%; height: 56px; cursor: pointer; z-index: 10; }
        .faq-trigger { padding: 18px 50px 18px 24px; display: block; font-weight: 700; font-size: 1.1rem; position: relative; }
        .faq-trigger::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--clr-text-muted); transition: var(--transition-smooth); }
        .faq-content { max-height: 0; overflow: hidden; opacity: 0; padding: 0 24px; transition: all 0.3s ease; }
        .faq-input:checked ~ .faq-trigger::after { transform: translateY(-50%) rotate(45deg); color: var(--clr-orange); }
        .faq-input:checked ~ .faq-content { max-height: 500px; opacity: 1; padding-top: 4px; padding-bottom: 20px;}

        /* AUTHOR BLOCK */
        .author-block { background: rgba(4, 20, 44, 0.4); border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-md); padding: 30px; margin-top: 60px; display: flex; align-items: center; gap: 24px; }
        .author-avatar-placeholder img { width: 70px; height: 70px; background: var(--clr-bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--clr-orange); border: 2px solid var(--clr-border-orange); flex-shrink: 0; }
        
        .comparison-table { width: 100%; border-collapse: collapse; }
        .comparison-table th { background-color: var(--clr-bg-light); color: var(--clr-text-white); }

        /* =========================================
           FOOTER
        ========================================= */
        footer { border-top: 3px solid #FFF;
background: #07224D; padding: 60px 24px 30px; font-size: 0.95rem; }
        .footer-inner { max-width: var(--max-width); margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(8, 81, 158, 0.15); }
        .footer-brand h3 { margin-bottom: 15px; font-size: 1.4rem; }
        .footer-brand p { color: var(--clr-text-muted); max-width: 260px; }
        .footer-links-column h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; color: var(--clr-text-white); }
        .footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
        .footer-links a { color: var(--clr-text-muted); text-decoration: none; transition: var(--transition-smooth); }
        .footer-links a:hover { color: var(--clr-orange); padding-left: 4px; }
        .footer-payment-grid { display: flex; flex-wrap: wrap; gap: 8px; }
        .footer-payment-badge { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 6px 12px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600; color: var(--clr-text-light); }
        .footer-bottom-bar { padding-top: 30px; text-align: center; display: flex; flex-direction: column; gap: 8px; }
        .footer-bottom-bar p { font-size: 0.85rem; color: var(--clr-text-muted); margin: 0; }
        .responsible-gaming-note { border: 1px solid rgba(232, 101, 43, 0.2); background: rgba(232, 101, 43, 0.03); padding: 15px 24px; border-radius: var(--radius-md); margin-top: 20px; text-align: center; font-size: 0.85rem; color: var(--clr-text-muted); }
.footer-block-btn .buttons {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
  .footer-block-btn .buttons .regButton,
  .footer-block-btn .buttons .logButton {
    padding: 7px 5px;
  }
  .footer-block-btn .buttons .logButton {
    width: 38%;
    margin-right: 0;
  }
  .footer-block-btn .buttons .regButton {
    width: 38%;
  }

  .footer-block-btn {
  z-index: 4;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  padding-right: 10px;
  padding-left: 10px;
  background: #023971;
  display: none;
  justify-content: center;
  align-items: center;
}
.footer-block-btn .buttons {
  display: flex;
}
@media (max-width: 600px) {
  .footer-block-btn {
    display: flex;
  }
}
        /* =========================================
           RESPONSIVE
        ========================================= */
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.75rem; }
            
            /* CMS Header Mobile Adaptations */
            .header__dropdown { order: 3; margin: 0; }
            .header__auth { order: 2; margin-right: 15px; }
            .header__burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
            .header__burger span { width: 24px; height: 3px; background-color: var(--clr-text-white); border-radius: 2px; transition: 0.3s; }
            .header__dropdown nav { position: absolute; top: 100%; left: 0; width: 100%; background: #04142c; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
            .header__dropdown nav ul { flex-direction: column; gap: 0; }
            .header__dropdown nav ul li a { display: block; padding: 16px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
            #dropdown-menu:checked ~ nav { max-height: 400px; border-bottom: 1px solid var(--clr-border-subtle); }
            #dropdown-menu:checked ~ .header__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            #dropdown-menu:checked ~ .header__burger span:nth-child(2) { opacity: 0; }
            #dropdown-menu:checked ~ .header__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

            .hero-inner { grid-template-columns: 1fr; padding: 40px 0; text-align: center; }
            .hero-description { margin-left: auto; margin-right: auto; }
            .tiles-grid { grid-template-columns: repeat(2, 1fr); margin-top: 30px; padding: 0; }
            .pros-cons, .promo-grid, .reviews-masonry { grid-template-columns: 1fr; }
            .app-showcase-box { grid-template-columns: 1fr; padding: 30px; text-align: center; }
            .app-mockup-container { order: -1; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .hero-inner { padding: 20px 0 30px; }
            .hero-title { font-size: 1.7rem; margin-bottom: 12px; line-height: 1.2; }
            .hero-description { font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }
            .hero-bonus-ticket { padding: 30px 20px; }
            .ticket-value { font-size: 2.5rem; }
            .ticket-spins { font-size: 1.4rem; }
            .cta-button-primary { padding: 14px 24px; font-size: 0.95rem; width: 100%; display: block; }
            .hero-visual-wrapper { margin-top: 25px; }
            .tiles-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            
            /* Скрываем кнопки авторизации в шапке на мобилках */
            .header__auth { display: none; }

            /* Tables adaptation into mobile system */
            table, thead, tbody, th, td, tr { display: block; }
            thead tr { position: absolute; top: -9999px; left: -9999px; }
            tr { border: 1px solid var(--clr-border-subtle); border-radius: var(--radius-sm); margin-bottom: 12px; background: rgba(4, 20, 44, 0.2); }
            td { border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: relative; font-size: 0.95rem; }
            td:last-child { border-bottom: none; }

            .games-data-table td, .comparison-table td { padding: 12px 16px 12px 50%; text-align: right; }
            .games-data-table td::before, .comparison-table td::before { content: attr(data-label); position: absolute; left: 16px; width: 45%; padding-right: 10px; white-space: nowrap; text-align: left; font-weight: 700; color: var(--clr-text-muted); }

            .info-data-table tr { display: flex; flex-direction: column; padding: 16px; gap: 6px; }
            .info-data-table td { padding: 0; text-align: left; border: none; }
            .info-data-table .info-label-cell { font-size: 0.85rem; color: var(--clr-text-muted); width: 100%; text-transform: uppercase; letter-spacing: 0.5px; }
            .info-data-table .info-value-cell { font-size: 1.1rem; font-weight: 600; color: var(--clr-text-white); }
        }

.advantages__container {
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.advantages__item {
    height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
border-radius: 12px;
border: 1px solid rgba(8, 81, 158, 0.30);
background: #0F3B6D;
box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
}

.advantages__icon {
  width: 51px;
  height: 51px;
  margin-bottom: 11px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 50%;
}

.advantages__icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.advantages__content {
  display: flex;
  flex-direction: column;
}

.advantages__title {
  margin: 0 0 8px;

  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.advantages__text {
  margin: 0;

  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}


/* Tablet */
@media (max-width: 1020px) {
  .advantages {
    padding: 8px 20px 14px;
  }

  .advantages__container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Mobile */
@media (max-width: 600px) {
  .advantages {
    padding: 8px 12px 12px;
  }

  .advantages__container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .advantages__item {
    min-height: auto;
    padding: 16px;
  }

  .advantages__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
  }

  .advantages__icon img {
    width: 29px;
    height: 29px;
  }

  .advantages__title {
    font-size: 17px;
  }

  .advantages__text {
    font-size: 14px;
  }
}