    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #111111;
      color: #fff;
      min-height: 100vh;
    }

    /* Header */
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #1a1a1a;
      border-bottom: 1px solid #252525;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 52px;
      padding: 0 20px;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .toggle-btn {
      background: #2a2a2a;
      border: none;
      color: #fff;
      cursor: pointer;
      font-size: 18px;
      padding: 10px 14px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .toggle-btn:hover {
      background: #3a3a3a;
    }

    .toggle-btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s;
    }

    body.sidebar-collapsed .toggle-btn svg {
      transform: rotate(180deg);
    }

    .logo {
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .header-right {
      display: flex;
      gap: 10px;
    }

    .btn-login {
      background: transparent;
      border: none;
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .btn-signup {
      background: linear-gradient(180deg, #ffb236, #dc7900);
      border: none;
      color: #000;
      padding: 10px 22px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .btn-signup:hover {
      background: linear-gradient(180deg, #ffc04d, #e68a00);
    }

    /* Layout */
    .layout {
      display: flex;
      justify-content: center;
      padding-top: 52px;
    }

    .layout-inner {
      display: flex;
      width: 100%;
    }

    /* Sidebar */
    .sidebar {
      width: 240px;
      min-width: 240px;
      background-color: #1a1a1a;
      padding: 16px 14px;
      height: calc(100vh - 52px);
      position: fixed;
      left: 0;
      top: 52px;
      overflow-y: auto;
      transition: all 0.3s ease;
      z-index: 99;
      border-right: 1px solid #252525;
    }

    body.sidebar-collapsed .sidebar {
      width: 70px;
      min-width: 70px;
      padding: 16px 10px;
    }

    .search-box {
      display: flex;
      align-items: center;
      background: #252525;
      border-radius: 8px;
      padding: 12px;
      margin-bottom: 14px;
      gap: 10px;
      cursor: pointer;
    }

    .search-box svg {
      width: 20px;
      height: 20px;
      color: #888;
      flex-shrink: 0;
    }

    .search-box input {
      background: none;
      border: none;
      color: #555;
      font-size: 13px;
      width: 100%;
      outline: none;
    }

    body.sidebar-collapsed .search-box {
      justify-content: center;
      padding: 12px;
    }

    body.sidebar-collapsed .search-box input {
      display: none;
    }

    /* Welcome Banner */
    .welcome-banner {
      background: linear-gradient(160deg, #1a5c35 0%, #14432a 50%, #0e2e1d 100%);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 10px;
      position: relative;
      overflow: hidden;
    }

    body.sidebar-collapsed .welcome-banner {
      display: none;
    }

    .dragon-icon {
      position: absolute;
      right: 5px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 60px;
      opacity: 0.9;
    }

    .welcome-text {
      font-size: 10px;
      color: #8a8a8a;
      margin-bottom: 2px;
    }

    .welcome-amount {
      font-size: 18px;
      font-weight: 800;
      color: #e5a530;
      line-height: 1.2;
    }

    .welcome-spins {
      font-size: 15px;
      font-weight: 700;
      color: #e5a530;
      margin-bottom: 10px;
    }

    .btn-banner-signup {
      background: linear-gradient(180deg, #ffb236, #dc7900);
      border: none;
      color: #000;
      padding: 9px 20px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      position: relative;
      z-index: 1;
      text-decoration: none;
      display: inline-block;
    }

    /* Tabs */
    .tabs {
      display: flex;
      background: #252525;
      border-radius: 8px;
      margin-bottom: 16px;
      overflow: hidden;
    }

    body.sidebar-collapsed .tabs {
      display: none;
    }

    .tab {
      flex: 1;
      padding: 10px 8px;
      text-align: center;
      font-size: 13px;
      font-weight: 500;
      color: #666;
      cursor: pointer;
      transition: all 0.2s;
    }

    .tab.active {
      background: #333;
      color: #fff;
    }

    /* Nav Items */
    .nav-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 12px;
      color: #a99c92;
      font: 500 14px/20px Geologica, sans-serif;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .nav-item:hover {
      background: #252525;
    }

    .nav-item svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      color: #2d9e2d;
    }

    .nav-item span {
      transition: opacity 0.2s;
    }

    body.sidebar-collapsed .nav-item {
      justify-content: center;
      padding: 14px 10px;
    }

    body.sidebar-collapsed .nav-item span {
      display: none;
    }

    .nav-divider {
      height: 1px;
      background: #252525;
      margin: 10px 0;
    }

    body.sidebar-collapsed .nav-divider {
      margin: 8px 0;
    }

    /* Main Content */
    .main-content {
      flex: 1;
      padding: 20px 24px;
      margin-left: 240px;
      transition: margin-left 0.3s ease;
      overflow: hidden;
    }

    .main-content-inner {
      max-width: 1800px;
      margin: 0 auto;
      width: 100%;
    }

    body.sidebar-collapsed .main-content {
      margin-left: 70px;
    }

    /* Promo Slider */
    .promo-section {
      position: relative;
      width: 100%;
    }

    .promo-slider {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;
      scrollbar-width: none;
      width: 100%;
    }

    .promo-slider::-webkit-scrollbar {
      display: none;
    }

    .promo-card {
      min-width: 370px;
      max-width: 370px;
      height: 210px;
      background: linear-gradient(165deg, #1a6b45 0%, #14553a 40%, #0e4530 70%, #0a3525 100%);
      border-radius: 14px;
      padding: 20px;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }

    .promo-card::before {
      content: '';
      position: absolute;
      top: 50%;
      right: 15%;
      transform: translateY(-50%);
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 30%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .promo-card::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 15%;
      transform: translateY(-50%);
      width: 220px;
      height: 220px;
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 50%;
      pointer-events: none;
    }

    .promo-card-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-size: cover;
      background-position: center right;
      z-index: 0;
    }

    .promo-text {
      width: 190px;
      min-width: 190px;
      z-index: 1;
    }

    .promo-image {
      width: 140px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .promo-image img {

      object-fit: contain;
    }

    .promo-image .character {
      font-size: 100px;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    }

    .promo-label {
      font-size: 10px;
      color: #fff5ed;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      margin-bottom: 6px;
      font-weight: 500;
      opacity: 0.9;
    }

    .promo-title {
      font: 700 24px/28px 'Cinzel', serif;
      color: #fff5ed;
      margin-bottom: 2px;
      text-transform: uppercase;
    }

    .promo-subtitle {
      font: 700 24px/28px 'Cinzel', serif;
      color: #fff5ed;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .btn-promo {
      background: linear-gradient(180deg, #ffb236, #dc7900);
      border: none;
      color: #000;
      padding: 10px 18px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-promo:hover {
      background: linear-gradient(180deg, #ffc04d, #e68a00);
    }

    /* Pagination Dots */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 18px;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #333;
      cursor: pointer;
      transition: all 0.3s;
    }

    .dot.active {
      background: #fff;
      width: 20px;
      border-radius: 3px;
    }

    /* Popular Section */
    .popular-section {
      margin-top: 40px;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .section-title {
      font: 700 18px/24px 'Cinzel', serif;
      color: #fff5ed;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-controls {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-arrows {
      display: flex;
      gap: 8px;
    }

    .nav-arrow {
      width: 36px;
      height: 36px;
      background: #252525;
      border: none;
      border-radius: 8px;
      color: #888;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .nav-arrow:hover {
      background: #333;
      color: #fff;
    }

    .nav-arrow svg {
      width: 18px;
      height: 18px;
    }

    .btn-view-all {
      background: #252525;
      border: none;
      color: #fff;
      padding: 10px 20px;
      border-radius: 8px;
      font: 500 13px/18px 'Geologica', sans-serif;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-view-all:hover {
      background: #333;
    }

    /* Games Grid */
    .games-slider {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;
      scrollbar-width: none;
    }

    .games-slider::-webkit-scrollbar {
      display: none;
    }

    .game-card {
      min-width: 160px;
      max-width: 160px;
      flex-shrink: 0;
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s;
      text-decoration: none;
      display: block;
    }

    .game-card:hover {
      transform: translateY(-4px);
    }

    .game-card:hover .game-overlay {
      opacity: 1;
    }

    .game-image {
      width: 100%;
      aspect-ratio: 1;
      background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }

    .game-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .game-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.7);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .game-title {
      font: 600 12px/16px 'Geologica', sans-serif;
      color: #fff;
      text-align: center;
      padding: 0 10px;
    }

    .game-provider {
      font: 400 10px/14px 'Geologica', sans-serif;
      color: #888;
    }

    .btn-play {
      background: linear-gradient(180deg, #ffb236, #dc7900);
      border: none;
      color: #000;
      padding: 8px 24px;
      border-radius: 6px;
      font: 600 12px/16px 'Geologica', sans-serif;
      cursor: pointer;
      margin-top: 4px;
    }

    .btn-try {
      background: transparent;
      border: none;
      color: #888;
      font: 400 11px/14px 'Geologica', sans-serif;
      cursor: pointer;
    }

    .btn-try:hover {
      color: #fff;
    }

    .game-favorite {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .game-card:hover .game-favorite {
      opacity: 1;
    }

    .game-provider-badge {
      position: absolute;
      bottom: 8px;
      right: 8px;
      font: 400 9px/12px 'Geologica', sans-serif;
      color: #666;
      text-transform: uppercase;
    }

    /* Recent Big Wins Section */
    .recent-wins-section {
      margin-top: 32px;
    }

    .section-title-wins {
      font: 700 14px/20px 'Cinzel', serif;
      color: #fff5ed;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 14px;
    }

    .section-title-wins span {
      color: #e5a530;
    }

    .wins-slider {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;
      scrollbar-width: none;
    }

    .wins-slider::-webkit-scrollbar {
      display: none;
    }

    .win-card {
      min-width: 160px;
      flex-shrink: 0;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .win-game-image {
      width: 65px;
      height: 65px;
      min-width: 65px;
      border-radius: 8px;
      position: relative;
      overflow: hidden;
    }

    .win-game-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    .win-info {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .win-game-image.style-1 {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
    .win-game-image.style-1::before {
      background: 
        radial-gradient(circle at 20% 30%, rgba(255,215,0,0.2) 0%, transparent 40%),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
    }

    .win-game-image.style-2 {
      background: linear-gradient(135deg, #2d132c 0%, #801336 100%);
    }
    .win-game-image.style-2::before {
      background: 
        radial-gradient(circle at 80% 20%, rgba(255,100,100,0.2) 0%, transparent 40%),
        linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
    }

    .win-game-image.style-3 {
      background: linear-gradient(135deg, #0a3d2a 0%, #146b4a 100%);
    }
    .win-game-image.style-3::before {
      background: 
        radial-gradient(circle at 30% 70%, rgba(100,255,150,0.15) 0%, transparent 40%),
        linear-gradient(90deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
    }

    .win-game-image.style-4 {
      background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
    }
    .win-game-image.style-4::before {
      background: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 40%),
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
    }

    .win-game-image.style-5 {
      background: linear-gradient(135deg, #2c1654 0%, #4a1c6b 100%);
    }
    .win-game-image.style-5::before {
      background: 
        radial-gradient(circle at 70% 30%, rgba(200,100,255,0.2) 0%, transparent 40%),
        linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
    }

    .win-game-image.style-6 {
      background: linear-gradient(135deg, #3d2600 0%, #6b4500 100%);
    }
    .win-game-image.style-6::before {
      background: 
        radial-gradient(circle at 25% 25%, rgba(255,200,50,0.25) 0%, transparent 40%),
        linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    }

    .win-game-image.style-7 {
      background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    }
    .win-game-image.style-7::before {
      background: 
        radial-gradient(circle at 50% 50%, rgba(65,150,255,0.15) 0%, transparent 50%);
    }

    .win-game-image.style-8 {
      background: linear-gradient(135deg, #3d0000 0%, #6b1a1a 100%);
    }
    .win-game-image.style-8::before {
      background: 
        radial-gradient(circle at 30% 70%, rgba(255,50,50,0.2) 0%, transparent 40%);
    }

    .win-user {
      font: 400 10px/12px 'Geologica', sans-serif;
      color: #666;
    }

    .win-game-name {
      font: 500 11px/14px 'Geologica', sans-serif;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100px;
    }

    .win-amount {
      font: 400 10px/12px 'Geologica', sans-serif;
      color: #666;
    }

    .win-amount span {
      color: #2d9e2d;
      font-weight: 500;
    }

    /* Top 10 Section */
    .top10-section {
      margin-top: 32px;
    }

    .top10-slider {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;
      scrollbar-width: none;
    }

    .top10-slider::-webkit-scrollbar {
      display: none;
    }

    .top10-card {
      min-width: 180px;
      max-width: 180px;
      flex-shrink: 0;
      position: relative;
      text-decoration: none;
      display: block;
    }

    .top10-wrapper {
      position: relative;
      display: flex;
      align-items: flex-end;
    }

    .top10-number {
      font: 700 120px/1 'Cinzel', serif;
      color: transparent;
      -webkit-text-stroke: 2px #3a3a3a;
      position: absolute;
      left: -10px;
      bottom: -10px;
      z-index: 1;
      pointer-events: none;
    }

    .top10-image {
      width: 140px;
      aspect-ratio: 1;
      border-radius: 12px;
      background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
      margin-left: auto;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    .top10-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .top10-card:hover .top10-image {
      transform: translateY(-4px);
      transition: transform 0.2s;
    }

    .top10-provider {
      position: absolute;
      bottom: 8px;
      right: 8px;
      font: 400 9px/12px 'Geologica', sans-serif;
      color: #666;
      text-transform: uppercase;
      z-index: 3;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .promo-card {
        min-width: 340px;
        max-width: 340px;
        height: 190px;
      }
      .promo-title { font-size: 20px; line-height: 24px; }
      .promo-subtitle { font-size: 20px; line-height: 24px; }
    }

    @media (max-width: 900px) {
      .promo-card {
        min-width: 310px;
        max-width: 310px;
        height: 180px;
      }
      .promo-image .character { font-size: 80px; }
    }

    @media (max-width: 768px) {
      .sidebar {
        transform: translateX(-100%);
      }

      body.sidebar-open .sidebar {
        transform: translateX(0);
      }

      body.sidebar-collapsed .sidebar {
        transform: translateX(-100%);
      }

      body.sidebar-collapsed.sidebar-open .sidebar {
        transform: translateX(0);
      }

      .main-content {
        margin-left: 0;
      }

      body.sidebar-collapsed .main-content {
        margin-left: 0;
      }

      .promo-card {
        min-width: 260px;
        max-width: 260px;
        height: 170px;
        padding: 16px;
      }

      .promo-title { font-size: 15px; }
      .promo-subtitle { font-size: 18px; margin-bottom: 12px; }
      .promo-image .character { font-size: 70px; }
    }

    @media (max-width: 480px) {
      .header-inner { padding: 0 12px; }
      .btn-login { padding: 8px 12px; font-size: 12px; }
      .btn-signup { padding: 8px 14px; font-size: 12px; }
      .main-content { padding: 12px; }
      .promo-card {
        min-width: 240px;
        max-width: 240px;
        height: 160px;
        padding: 14px;
      }
      .promo-title { font-size: 14px; }
      .promo-subtitle { font-size: 16px; }
      .btn-promo { padding: 8px 14px; font-size: 11px; }
      .promo-image .character { font-size: 60px; }
    }

    .overlay {
      display: none;
      position: fixed;
      top: 52px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.7);
      z-index: 98;
    }

    .overlay.show {
      display: block;
    }


  .hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    overflow: hidden;
    background: 
      radial-gradient(ellipse 80% 50% at 50% 100%, rgba(26, 107, 69, 0.4) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 20% 20%, rgba(229, 165, 48, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse 50% 50% at 80% 30%, rgba(26, 107, 69, 0.15) 0%, transparent 50%),
      linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0d1a14 100%);
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 25H55L39 37L44 57L30 45L16 57L21 37L5 25H25L30 5Z' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    pointer-events: none;
  }

  .hero-dragon {
    position: absolute;
    font-size: 280px;
    opacity: 0.06;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    filter: grayscale(50%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-dragon-left {
    left: 5%;
    right: auto;
    transform: translateY(-50%) scaleX(-1);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 158, 45, 0.15);
    border: 1px solid rgba(45, 158, 45, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font: 500 12px/16px 'Geologica', sans-serif;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
  }

  .hero-badge svg {
    width: 16px;
    height: 16px;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  .hero-h1 {
    font: 800 56px/1.1 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }

  .hero-h1 .brand {
    background: linear-gradient(135deg, #ffb236 0%, #ff8c00 50%, #ffb236 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font: 400 18px/1.6 'Geologica', sans-serif;
    color: #a99c92;
    max-width: 600px;
    margin: 0 auto 32px;
  }

  .hero-bonus-highlight {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(26, 92, 53, 0.6) 0%, rgba(14, 46, 29, 0.8) 100%);
    border: 1px solid rgba(45, 158, 45, 0.3);
    border-radius: 16px;
    padding: 20px 32px;
    margin-bottom: 32px;
  }

  .hero-bonus-amount {
    font: 800 42px/1 'Cinzel', serif;
    color: #e5a530;
  }

  .hero-bonus-text {
    text-align: left;
  }

  .hero-bonus-text span {
    display: block;
    font: 600 14px/1.4 'Geologica', sans-serif;
    color: #fff;
  }

  .hero-bonus-text small {
    font: 400 12px/1.4 'Geologica', sans-serif;
    color: #888;
  }

  .hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .hero-btn-primary {
    background: linear-gradient(180deg, #ffb236 0%, #dc7900 100%);
    border: none;
    color: #000;
    padding: 16px 40px;
    border-radius: 8px;
    font: 700 15px/20px 'Geologica', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 178, 54, 0.3);
  }

  .hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 178, 54, 0.4);
  }

  .hero-btn-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font: 500 15px/20px 'Geologica', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }

  .hero-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
  }

  .hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font: 400 13px/18px 'Geologica', sans-serif;
    color: #666;
  }

  .trust-badge svg {
    width: 20px;
    height: 20px;
    color: #2d9e2d;
  }

  @media (max-width: 768px) {
    .hero-section {
      min-height: 480px;
      padding: 60px 16px 40px;
    }
    .hero-h1 {
      font-size: 36px;
    }
    .hero-subtitle {
      font-size: 16px;
    }
    .hero-bonus-highlight {
      flex-direction: column;
      gap: 8px;
      padding: 16px 24px;
    }
    .hero-bonus-text {
      text-align: center;
    }
    .hero-dragon {
      display: none;
    }
  }

  .why-choose-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #0d1a14 0%, #111111 50%, #111111 100%);
    position: relative;
  }

  .why-choose-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .why-choose-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .why-choose-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  .why-choose-h2 .brand {
    color: #e5a530;
  }

  .why-choose-intro {
    font: 400 16px/1.7 'Geologica', sans-serif;
    color: #a99c92;
    max-width: 700px;
    margin: 0 auto;
  }

  .why-choose-h3 {
    font: 600 20px/1.3 'Cinzel', serif;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .why-choose-h3::before,
  .why-choose-h3::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2d9e2d, transparent);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }

  .feature-card {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.5) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid #252525;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
  }

  .feature-card:hover {
    border-color: rgba(45, 158, 45, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(45, 158, 45, 0.2) 0%, rgba(45, 158, 45, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
  }

  .feature-title {
    font: 600 15px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 8px;
  }

  .feature-desc {
    font: 400 13px/1.5 'Geologica', sans-serif;
    color: #888;
  }

  .why-choose-text-block {
    background: linear-gradient(135deg, rgba(26, 92, 53, 0.15) 0%, rgba(17, 17, 17, 0.9) 100%);
    border-left: 3px solid #2d9e2d;
    border-radius: 0 12px 12px 0;
    padding: 32px;
    margin-top: 32px;
  }

  .why-choose-text-block p {
    font: 400 15px/1.8 'Geologica', sans-serif;
    color: #c4b8ae;
    margin-bottom: 16px;
  }

  .why-choose-text-block p:last-child {
    margin-bottom: 0;
  }

  .why-choose-text-block strong {
    color: #fff;
  }

  .highlight-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 165, 48, 0.1);
    padding: 2px 10px;
    border-radius: 4px;
    color: #e5a530;
    font-weight: 500;
  }

  @media (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .why-choose-section {
      padding: 60px 16px;
    }
    .why-choose-h2 {
      font-size: 28px;
    }
    .features-grid {
      grid-template-columns: 1fr;
    }
    .why-choose-h3::before,
    .why-choose-h3::after {
      width: 30px;
    }
  }

  .welcome-section {
    padding: 80px 24px;
    background: 
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(26, 92, 53, 0.2) 0%, transparent 60%),
      #111111;
    position: relative;
  }

  .welcome-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .welcome-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .welcome-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  .welcome-h2 .amount {
    color: #e5a530;
  }

  .welcome-intro {
    font: 400 16px/1.8 'Geologica', sans-serif;
    color: #a99c92;
    max-width: 750px;
    margin: 0 auto;
  }

  .welcome-content {
    margin-bottom: 48px;
  }

  .welcome-text-block {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
    margin-bottom: 32px;
  }

  .welcome-text-block strong {
    color: #fff;
  }

  .welcome-text-block .highlight {
    color: #e5a530;
    font-weight: 600;
  }

  .deposit-breakdown {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.4) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid #252525;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
  }

  .deposit-h3 {
    font: 600 18px/1.3 'Cinzel', serif;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
  }

  .deposit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .deposit-item:last-child {
    border-bottom: none;
  }

  .deposit-label {
    font: 500 14px/1.4 'Geologica', sans-serif;
    color: #888;
  }

  .deposit-value {
    font: 600 15px/1.4 'Geologica', sans-serif;
    color: #fff;
    text-align: right;
  }

  .deposit-value .bonus {
    color: #e5a530;
  }

  .deposit-value .spins {
    color: #4ade80;
    font-size: 13px;
    display: block;
    margin-top: 2px;
  }

  .conditions-block {
    background: rgba(45, 158, 45, 0.08);
    border-left: 3px solid #2d9e2d;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 24px 0;
  }

  .conditions-block p {
    font: 400 14px/1.7 'Geologica', sans-serif;
    color: #a99c92;
    margin: 0;
  }

  .conditions-block strong {
    color: #fff;
  }

  .highroller-section {
    background: linear-gradient(135deg, rgba(229, 165, 48, 0.1) 0%, rgba(17, 17, 17, 0.95) 100%);
    border: 1px solid rgba(229, 165, 48, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
  }

  .highroller-h3 {
    font: 600 20px/1.3 'Cinzel', serif;
    color: #e5a530;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .highroller-h3::before {
    content: '👑';
    font-size: 24px;
  }

  .highroller-text {
    font: 400 15px/1.8 'Geologica', sans-serif;
    color: #c4b8ae;
  }

  .highroller-text strong {
    color: #fff;
  }

  .highroller-text .gold {
    color: #e5a530;
    font-weight: 600;
  }

  .cta-block {
    text-align: center;
    margin-top: 40px;
  }

  .cta-btn {
    background: linear-gradient(180deg, #ffb236 0%, #dc7900 100%);
    border: none;
    color: #000;
    padding: 16px 48px;
    border-radius: 8px;
    font: 700 15px/20px 'Geologica', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 178, 54, 0.3);
  }

  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 178, 54, 0.4);
  }

  @media (max-width: 768px) {
    .welcome-section {
      padding: 60px 16px;
    }
    .welcome-h2 {
      font-size: 28px;
    }
    .deposit-breakdown {
      padding: 24px 20px;
    }
    .deposit-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    .deposit-value {
      text-align: left;
    }
  }


  .journey-section {
    padding: 80px 24px;
    background: 
      radial-gradient(ellipse 70% 50% at 50% 100%, rgba(45, 158, 45, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse 50% 40% at 80% 20%, rgba(229, 165, 48, 0.08) 0%, transparent 40%),
      #111111;
    position: relative;
    overflow: hidden;
  }

  .journey-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .journey-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .journey-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .journey-h2 .gold {
    color: #e5a530;
  }

  .journey-tagline {
    font: 400 16px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .journey-steps {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
  }

  .journey-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, #2d9e2d 0%, #e5a530 50%, #2d9e2d 100%);
    opacity: 0.3;
    z-index: 0;
  }

  .journey-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(165deg, rgba(45, 158, 45, 0.3) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 2px solid #2d9e2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 24px/1 'Cinzel', serif;
    color: #4ade80;
    transition: all 0.3s;
  }

  .journey-step:hover .step-number {
    transform: scale(1.1);
    background: linear-gradient(165deg, rgba(45, 158, 45, 0.5) 0%, rgba(26, 26, 26, 0.9) 100%);
    box-shadow: 0 0 30px rgba(45, 158, 45, 0.3);
  }

  .journey-step:last-child .step-number {
    background: linear-gradient(165deg, rgba(229, 165, 48, 0.3) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-color: #e5a530;
    color: #e5a530;
  }

  .journey-step:last-child:hover .step-number {
    background: linear-gradient(165deg, rgba(229, 165, 48, 0.5) 0%, rgba(26, 26, 26, 0.9) 100%);
    box-shadow: 0 0 30px rgba(229, 165, 48, 0.3);
  }

  .step-title {
    font: 600 16px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 8px;
  }

  .step-desc {
    font: 400 13px/1.6 'Geologica', sans-serif;
    color: #888;
    max-width: 180px;
    margin: 0 auto;
  }

  .journey-bonus-card {
    background: linear-gradient(165deg, rgba(26, 92, 53, 0.4) 0%, rgba(14, 46, 29, 0.8) 50%, rgba(10, 30, 20, 0.9) 100%);
    border: 1px solid rgba(45, 158, 45, 0.3);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
  }

  .journey-bonus-card::before {
    content: '🐉';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .bonus-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
  }

  .bonus-icon {
    font-size: 64px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 20px rgba(229, 165, 48, 0.4));
  }

  .bonus-amount-big {
    font: 800 42px/1 'Cinzel', serif;
    background: linear-gradient(135deg, #ffb236 0%, #fff 40%, #ffb236 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .bonus-spins-big {
    font: 600 18px/1.4 'Geologica', sans-serif;
    color: #4ade80;
    margin-top: 4px;
  }

  .bonus-content {
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .bonus-content h3 {
    font: 600 22px/1.3 'Cinzel', serif;
    color: #fff;
    margin-bottom: 12px;
  }

  .bonus-content p {
    font: 400 15px/1.8 'Geologica', sans-serif;
    color: #a99c92;
    margin-bottom: 20px;
  }

  .bonus-content strong {
    color: #fff;
  }

  .bonus-features {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
  }

  .bonus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font: 500 13px/1.3 'Geologica', sans-serif;
    color: #888;
  }

  .bonus-feature .check {
    color: #4ade80;
    font-size: 16px;
  }

  .journey-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #ffb236 0%, #dc7900 100%);
    border: none;
    color: #000;
    padding: 16px 40px;
    border-radius: 10px;
    font: 700 15px/1 'Geologica', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(255, 178, 54, 0.35);
  }

  .journey-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 178, 54, 0.45);
  }

  .journey-cta svg {
    transition: transform 0.3s;
  }

  .journey-cta:hover svg {
    transform: translateX(4px);
  }

  .journey-note {
    text-align: center;
    margin-top: 32px;
    font: 400 14px/1.6 'Geologica', sans-serif;
    color: #666;
  }

  .journey-note strong {
    color: #888;
  }

  @media (max-width: 900px) {
    .journey-steps {
      flex-direction: column;
      gap: 32px;
    }
    .journey-steps::before {
      display: none;
    }
    .journey-bonus-card {
      flex-direction: column;
      text-align: center;
      padding: 32px 24px;
    }
    .bonus-features {
      justify-content: center;
      flex-wrap: wrap;
    }
  }

  @media (max-width: 768px) {
    .journey-section { padding: 60px 16px; }
    .journey-h2 { font-size: 28px; }
    .bonus-amount-big { font-size: 32px; }
  }

  .games-overview-section {
    padding: 80px 24px;
    background: #111111;
    position: relative;
  }

  .games-overview-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .games-overview-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .games-overview-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  .games-overview-h2 .count {
    color: #e5a530;
  }

  .games-overview-intro {
    font: 400 16px/1.8 'Geologica', sans-serif;
    color: #a99c92;
    max-width: 700px;
    margin: 0 auto;
  }

  .games-text-content {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
    margin-bottom: 40px;
  }

  .games-text-content p {
    margin-bottom: 20px;
  }

  .games-text-content p:last-child {
    margin-bottom: 0;
  }

  .games-text-content strong {
    color: #fff;
  }

  .games-text-content .highlight {
    color: #e5a530;
    font-weight: 500;
  }

  .games-text-content .green {
    color: #4ade80;
    font-weight: 500;
  }

  .categories-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 32px 0;
  }

  .category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 42, 42, 0.6);
    border: 1px solid #333;
    padding: 12px 20px;
    border-radius: 8px;
    font: 500 14px/1.3 'Geologica', sans-serif;
    color: #fff;
    transition: all 0.2s;
  }

  .category-tag:hover {
    border-color: #2d9e2d;
    background: rgba(45, 158, 45, 0.1);
  }

  .category-tag .icon {
    font-size: 18px;
  }

  .providers-block {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid #252525;
    border-radius: 12px;
    padding: 28px;
    margin: 32px 0;
  }

  .providers-label {
    font: 600 13px/1.3 'Geologica', sans-serif;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .providers-list {
    font: 400 14px/1.8 'Geologica', sans-serif;
    color: #a99c92;
  }

  .providers-list strong {
    color: #fff;
  }

  .filter-note {
    background: rgba(45, 158, 45, 0.08);
    border-left: 3px solid #2d9e2d;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-top: 32px;
  }

  .filter-note p {
    font: 400 14px/1.7 'Geologica', sans-serif;
    color: #a99c92;
    margin: 0;
  }

  .filter-note strong {
    color: #fff;
  }

  @media (max-width: 768px) {
    .games-overview-section {
      padding: 60px 16px;
    }
    .games-overview-h2 {
      font-size: 28px;
    }
    .categories-row {
      gap: 8px;
    }
    .category-tag {
      padding: 10px 16px;
      font-size: 13px;
    }
  }

  .slots-section {
    padding: 80px 24px;
    background: 
      radial-gradient(ellipse 60% 40% at 80% 100%, rgba(26, 92, 53, 0.15) 0%, transparent 50%),
      #111111;
    position: relative;
  }

  .slots-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .slots-header {
    margin-bottom: 32px;
  }

  .slots-h2 {
    font: 700 32px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .slots-h2 .accent {
    color: #e5a530;
  }

  .slots-tagline {
    font: 400 15px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .slots-content {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
  }

  .slots-content p {
    margin-bottom: 20px;
  }

  .slots-content strong {
    color: #fff;
  }

  .slots-content .highlight {
    color: #e5a530;
    font-weight: 500;
  }

  .slots-content .green {
    color: #4ade80;
  }

  .games-showcase {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
    border: 1px solid #252525;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 28px 0;
  }

  .showcase-label {
    font: 600 12px/1.3 'Geologica', sans-serif;
    color: #2d9e2d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .showcase-games {
    font: 400 14px/1.8 'Geologica', sans-serif;
    color: #a99c92;
  }

  .showcase-games strong {
    color: #fff;
    font-weight: 500;
  }

  .themes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
  }

  .theme-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 20px;
    font: 400 13px/1.3 'Geologica', sans-serif;
    color: #888;
    transition: all 0.2s;
  }

  .theme-chip:hover {
    border-color: #e5a530;
    color: #e5a530;
  }

  .sorting-block {
    background: rgba(45, 158, 45, 0.06);
    border-left: 3px solid #2d9e2d;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-top: 28px;
  }

  .sorting-block p {
    font: 400 14px/1.7 'Geologica', sans-serif;
    color: #a99c92;
    margin: 0;
  }

  .sorting-block strong {
    color: #fff;
  }

  .sorting-block code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: inherit;
    color: #4ade80;
    font-size: 13px;
  }

  @media (max-width: 768px) {
    .slots-section {
      padding: 60px 16px;
    }
    .slots-h2 {
      font-size: 26px;
    }
    .games-showcase {
      padding: 20px;
    }
  }

  .crash-section {
    padding: 80px 24px;
    background: #111111;
  }

  .crash-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .crash-header {
    margin-bottom: 32px;
  }

  /* Reusing section-title pattern from landing */
  .crash-h2 {
    font: 700 32px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .crash-h2 .accent {
    color: #e5a530;
  }

  .crash-tagline {
    font: 400 15px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .crash-content {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
  }

  .crash-content p {
    margin-bottom: 20px;
  }

  .crash-content strong {
    color: #fff;
  }

  .crash-content .gold {
    color: #e5a530;
    font-weight: 500;
  }

  .crash-content .green {
    color: #4ade80;
    font-weight: 500;
  }

  /* Reusing game card visual pattern */
  .crash-games-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
  }

  .crash-game-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid #252525;
    padding: 12px 18px;
    border-radius: 8px;
    font: 500 13px/1.3 'Geologica', sans-serif;
    color: #fff;
    transition: all 0.2s;
  }

  .crash-game-tag:hover {
    border-color: #2d9e2d;
    transform: translateY(-2px);
  }

  .crash-game-tag .icon {
    font-size: 16px;
  }

  .how-it-works {
    background: rgba(45, 158, 45, 0.06);
    border: 1px solid rgba(45, 158, 45, 0.15);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 28px 0;
  }

  .how-it-works-title {
    font: 600 14px/1.3 'Geologica', sans-serif;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .how-it-works p {
    font: 400 14px/1.8 'Geologica', sans-serif;
    color: #a99c92;
    margin: 0;
  }

  .how-it-works strong {
    color: #fff;
  }

  @media (max-width: 768px) {
    .crash-section {
      padding: 60px 16px;
    }
    .crash-h2 {
      font-size: 26px;
    }
    .crash-games-row {
      gap: 8px;
    }
    .crash-game-tag {
      padding: 10px 14px;
      font-size: 12px;
    }
  }

  .live-casino-section {
    padding: 80px 24px;
    background: 
      radial-gradient(ellipse 50% 40% at 20% 80%, rgba(26, 92, 53, 0.12) 0%, transparent 50%),
      #111111;
  }

  .live-casino-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .live-casino-header {
    margin-bottom: 32px;
  }

  .live-casino-h2 {
    font: 700 32px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .live-casino-h2 .accent {
    color: #e5a530;
  }

  .live-casino-tagline {
    font: 400 15px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .live-casino-content {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
  }

  .live-casino-content p {
    margin-bottom: 20px;
  }

  .live-casino-content strong {
    color: #fff;
  }

  .live-casino-content .gold {
    color: #e5a530;
    font-weight: 500;
  }

  .live-casino-content .green {
    color: #4ade80;
    font-weight: 500;
  }

  .live-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
  }

  .live-game-card {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.5) 0%, rgba(26, 26, 26, 0.7) 100%);
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
  }

  .live-game-card:hover {
    border-color: rgba(45, 158, 45, 0.3);
    transform: translateY(-3px);
  }

  .live-game-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .live-game-name {
    font: 600 14px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 4px;
  }

  .live-game-type {
    font: 400 12px/1.3 'Geologica', sans-serif;
    color: #666;
  }

  .dealer-quality {
    background: linear-gradient(135deg, rgba(229, 165, 48, 0.08) 0%, rgba(17, 17, 17, 0.9) 100%);
    border-left: 3px solid #e5a530;
    border-radius: 0 10px 10px 0;
    padding: 24px;
    margin: 28px 0;
  }

  .dealer-quality-title {
    font: 600 14px/1.3 'Geologica', sans-serif;
    color: #e5a530;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .dealer-quality p {
    font: 400 14px/1.8 'Geologica', sans-serif;
    color: #a99c92;
    margin: 0;
  }

  .dealer-quality strong {
    color: #fff;
  }

  @media (max-width: 768px) {
    .live-casino-section {
      padding: 60px 16px;
    }
    .live-casino-h2 {
      font-size: 26px;
    }
    .live-games-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
  }

  @media (max-width: 480px) {
    .live-games-grid {
      grid-template-columns: 1fr;
    }
  }

  .table-games-section {
    padding: 80px 24px;
    background: #111111;
  }

  .table-games-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .table-games-content p {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
    margin-bottom: 20px;
  }

  .table-games-content strong {
    color: #fff;
  }

  .table-games-content .gold {
    color: #e5a530;
    font-weight: 500;
  }

  .table-games-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
  }

  .table-game-chip {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid #252525;
    padding: 10px 18px;
    border-radius: 8px;
    font: 500 13px/1.3 'Geologica', sans-serif;
    color: #fff;
  }

  @media (max-width: 768px) {
    .table-games-section { padding: 60px 16px; }
  }

  .banking-section {
    padding: 80px 24px;
    background: #111111;
  }

  .banking-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .banking-content p {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
    margin-bottom: 20px;
  }

  .banking-content strong {
    color: #fff;
  }

  .banking-content .gold {
    color: #e5a530;
    font-weight: 500;
  }

  .banking-content .green {
    color: #4ade80;
    font-weight: 500;
  }

  .banking-block {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.4) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
  }

  .banking-block-title {
    font: 600 16px/1.3 'Cinzel', serif;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .banking-block-title .icon {
    font-size: 20px;
  }

  .banking-block p {
    font: 400 14px/1.8 'Geologica', sans-serif;
    color: #a99c92;
    margin-bottom: 12px;
  }

  .banking-block p:last-child {
    margin-bottom: 0;
  }

  .banking-block strong {
    color: #fff;
  }

  .methods-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }

  .method-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    padding: 6px 12px;
    border-radius: 6px;
    font: 400 12px/1.3 'Geologica', sans-serif;
    color: #888;
  }

  @media (max-width: 768px) {
    .banking-section { padding: 60px 16px; }
    .banking-block { padding: 20px; }
  }

  .reload-section {
    padding: 80px 24px;
    background: 
      radial-gradient(ellipse 70% 50% at 50% 100%, rgba(229, 165, 48, 0.08) 0%, transparent 60%),
      #111111;
  }

  .reload-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .reload-intro {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
  }

  .reload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
  }

  .reload-card {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid #252525;
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }

  .reload-card:hover {
    border-color: rgba(45, 158, 45, 0.3);
    transform: translateY(-4px);
  }

  .reload-card.featured {
    border-color: rgba(229, 165, 48, 0.3);
    background: linear-gradient(165deg, rgba(229, 165, 48, 0.1) 0%, rgba(26, 26, 26, 0.95) 100%);
  }

  .reload-card.featured:hover {
    border-color: rgba(229, 165, 48, 0.5);
  }

  .reload-day {
    font: 700 11px/1 'Geologica', sans-serif;
    color: #2d9e2d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .reload-card.featured .reload-day {
    color: #e5a530;
  }

  .reload-name {
    font: 600 18px/1.3 'Cinzel', serif;
    color: #fff;
    margin-bottom: 16px;
  }

  .reload-bonus-value {
    font: 800 28px/1.1 'Cinzel', serif;
    color: #e5a530;
    margin-bottom: 4px;
  }

  .reload-bonus-extra {
    font: 500 14px/1.4 'Geologica', sans-serif;
    color: #4ade80;
    margin-bottom: 16px;
  }

  .reload-min {
    font: 400 13px/1.4 'Geologica', sans-serif;
    color: #666;
  }

  .reload-min strong {
    color: #888;
  }

  .reload-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .reload-terms {
    background: rgba(45, 158, 45, 0.06);
    border-left: 3px solid #2d9e2d;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin-top: 32px;
  }

  .reload-terms p {
    font: 400 14px/1.7 'Geologica', sans-serif;
    color: #a99c92;
    margin: 0;
  }

  .reload-terms strong {
    color: #fff;
  }

  .reload-outro {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
    margin-top: 32px;
    text-align: center;
  }

  @media (max-width: 900px) {
    .reload-grid {
      grid-template-columns: 1fr;
    }
    .reload-row {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .reload-section { padding: 60px 16px; }
    .reload-card { padding: 24px 20px; }
  }

  .vip-section {
    padding: 80px 24px;
    background: 
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 92, 53, 0.25) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 20% 80%, rgba(229, 165, 48, 0.1) 0%, transparent 40%),
      radial-gradient(ellipse 50% 50% at 90% 70%, rgba(26, 92, 53, 0.15) 0%, transparent 40%),
      linear-gradient(180deg, #0a0a0a 0%, #111111 30%, #0d1510 100%);
    position: relative;
    overflow: hidden;
  }

  .vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10L55 40H85L60 58L68 88L50 70L32 88L40 58L15 40H45L50 10Z' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.02'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
  }

  .vip-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .vip-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .vip-crown {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
  }

  .vip-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .vip-h2 .gold {
    background: linear-gradient(135deg, #ffb236 0%, #ff8c00 50%, #ffb236 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .vip-tagline {
    font: 400 16px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .vip-intro {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
  }

  .vip-throne-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 48px;
    padding: 0 20px;
  }

  .throne-level {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .throne-bar {
    width: 40px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, rgba(45, 158, 45, 0.4) 0%, rgba(45, 158, 45, 0.1) 100%);
    border: 1px solid rgba(45, 158, 45, 0.3);
    border-bottom: none;
    position: relative;
    transition: all 0.3s;
  }

  .throne-level:hover .throne-bar {
    background: linear-gradient(180deg, rgba(45, 158, 45, 0.6) 0%, rgba(45, 158, 45, 0.2) 100%);
    border-color: rgba(45, 158, 45, 0.5);
  }

  .throne-bar.gold {
    background: linear-gradient(180deg, rgba(229, 165, 48, 0.6) 0%, rgba(229, 165, 48, 0.15) 100%);
    border-color: rgba(229, 165, 48, 0.4);
  }

  .throne-level:hover .throne-bar.gold {
    background: linear-gradient(180deg, rgba(229, 165, 48, 0.8) 0%, rgba(229, 165, 48, 0.3) 100%);
    border-color: rgba(229, 165, 48, 0.6);
  }

  .throne-label {
    font: 600 10px/1 'Geologica', sans-serif;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .throne-level:hover .throne-label {
    color: #888;
  }

  .vip-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .vip-stat-card {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.5) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid #252525;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
  }

  .vip-stat-card:hover {
    border-color: rgba(229, 165, 48, 0.3);
    transform: translateY(-4px);
  }

  .vip-stat-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .vip-stat-value {
    font: 800 24px/1.1 'Cinzel', serif;
    color: #e5a530;
    margin-bottom: 4px;
  }

  .vip-stat-label {
    font: 400 12px/1.4 'Geologica', sans-serif;
    color: #888;
  }

  .vip-perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .vip-perk {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #1f1f1f;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.2s;
  }

  .vip-perk:hover {
    border-color: #2d9e2d;
    background: rgba(45, 158, 45, 0.05);
  }

  .vip-perk-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(45, 158, 45, 0.2) 0%, rgba(45, 158, 45, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .vip-perk-content h4 {
    font: 600 14px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 4px;
  }

  .vip-perk-content p {
    font: 400 13px/1.5 'Geologica', sans-serif;
    color: #888;
    margin: 0;
  }

  .vip-final-prize {
    background: linear-gradient(135deg, rgba(229, 165, 48, 0.15) 0%, rgba(17, 17, 17, 0.95) 50%, rgba(229, 165, 48, 0.08) 100%);
    border: 1px solid rgba(229, 165, 48, 0.25);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .vip-final-prize::before {
    content: '👑';
    position: absolute;
    font-size: 120px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .final-prize-label {
    font: 500 12px/1 'Geologica', sans-serif;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .final-prize-value {
    font: 800 48px/1.1 'Cinzel', serif;
    background: linear-gradient(135deg, #ffb236 0%, #fff 50%, #ffb236 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
  }

  .final-prize-desc {
    font: 400 14px/1.6 'Geologica', sans-serif;
    color: #a99c92;
  }

  .vip-outro {
    font: 400 15px/1.9 'Geologica', sans-serif;
    color: #c4b8ae;
    text-align: center;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .vip-outro strong {
    color: #fff;
  }

  @media (max-width: 900px) {
    .vip-stats-row {
      grid-template-columns: repeat(2, 1fr);
    }
    .vip-perks-grid {
      grid-template-columns: 1fr;
    }
    .throne-bar { width: 28px; }
  }

  @media (max-width: 768px) {
    .vip-section { padding: 60px 16px; }
    .vip-h2 { font-size: 28px; }
    .vip-throne-visual { display: none; }
    .final-prize-value { font-size: 36px; }
  }

  @media (max-width: 480px) {
    .vip-stats-row { grid-template-columns: 1fr; }
  }


  .trust-section {
    padding: 80px 24px;
    background: 
      radial-gradient(ellipse 50% 40% at 20% 100%, rgba(26, 92, 53, 0.1) 0%, transparent 50%),
      #111111;
  }

  .trust-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .trust-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .trust-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .trust-tagline {
    font: 400 16px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .trust-card {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.5) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid #252525;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
  }

  .trust-card:hover {
    border-color: rgba(45, 158, 45, 0.3);
    transform: translateY(-4px);
  }

  .trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(45, 158, 45, 0.2) 0%, rgba(45, 158, 45, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }

  .trust-card-title {
    font: 600 15px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 8px;
  }

  .trust-card-desc {
    font: 400 13px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .trust-partners {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid #252525;
    border-radius: 14px;
    padding: 32px;
    text-align: center;
  }

  .partners-label {
    font: 600 12px/1 'Geologica', sans-serif;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }

  .partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .partner-item {
    font: 700 14px/1 'Geologica', sans-serif;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    transition: all 0.2s;
  }

  .partner-item:hover {
    color: #888;
    background: rgba(255,255,255,0.06);
  }

  /* HOW TO PLAY SECTION */
  .howto-section {
    padding: 80px 24px;
    background: #0d0d0d;
  }

  .howto-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .howto-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .howto-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .howto-h2 .gold {
    color: #e5a530;
  }

  .howto-tagline {
    font: 400 16px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .howto-steps {
    position: relative;
  }

  .howto-steps::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #2d9e2d 0%, #e5a530 50%, #2d9e2d 100%);
    opacity: 0.3;
  }

  .howto-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
  }

  .howto-step:last-child {
    margin-bottom: 0;
  }

  .step-marker {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(165deg, rgba(45, 158, 45, 0.3) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 2px solid #2d9e2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 20px/1 'Cinzel', serif;
    color: #4ade80;
    position: relative;
    z-index: 1;
  }

  .howto-step:nth-child(even) .step-marker {
    background: linear-gradient(165deg, rgba(229, 165, 48, 0.2) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-color: #e5a530;
    color: #e5a530;
  }

  .step-content {
    flex: 1;
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.4) 0%, rgba(26, 26, 26, 0.7) 100%);
    border: 1px solid #252525;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
  }

  .step-content:hover {
    border-color: rgba(45, 158, 45, 0.25);
  }

  .step-title {
    font: 600 16px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 8px;
  }

  .step-desc {
    font: 400 14px/1.7 'Geologica', sans-serif;
    color: #a99c92;
    margin-bottom: 12px;
  }

  .step-tip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 158, 45, 0.1);
    border-radius: 6px;
    padding: 8px 14px;
    font: 400 12px/1.4 'Geologica', sans-serif;
    color: #4ade80;
  }

  .step-tip .icon {
    font-size: 14px;
  }

  /* RESPONSIBLE GAMING SECTION */
  .responsible-section {
    padding: 80px 24px;
    background: 
      linear-gradient(180deg, #111111 0%, #0d1510 100%);
  }

  .responsible-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .responsible-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .responsible-icon-big {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .responsible-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .responsible-tagline {
    font: 400 16px/1.6 'Geologica', sans-serif;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
  }

  .responsible-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .responsible-card {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.4) 0%, rgba(26, 26, 26, 0.7) 100%);
    border: 1px solid #252525;
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s;
  }

  .responsible-card:hover {
    border-color: rgba(45, 158, 45, 0.25);
  }

  .responsible-card-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .responsible-card h3 {
    font: 600 16px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 10px;
  }

  .responsible-card p {
    font: 400 14px/1.7 'Geologica', sans-serif;
    color: #888;
    margin: 0;
  }

  .responsible-tools {
    background: linear-gradient(135deg, rgba(45, 158, 45, 0.08) 0%, rgba(17, 17, 17, 0.95) 100%);
    border: 1px solid rgba(45, 158, 45, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
  }

  .tools-title {
    font: 600 18px/1.3 'Cinzel', serif;
    color: #4ade80;
    text-align: center;
    margin-bottom: 24px;
  }

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .tool-item {
    text-align: center;
    padding: 20px 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    transition: all 0.2s;
  }

  .tool-item:hover {
    background: rgba(255,255,255,0.05);
  }

  .tool-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .tool-name {
    font: 500 13px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 4px;
  }

  .tool-desc {
    font: 400 11px/1.4 'Geologica', sans-serif;
    color: #666;
  }

  .help-resources {
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
  }

  .help-title {
    font: 600 16px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 16px;
  }

  .help-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 20px;
    font: 500 13px/1 'Geologica', sans-serif;
    color: #a99c92;
    text-decoration: none;
    transition: all 0.2s;
  }

  .help-link:hover {
    border-color: #ef4444;
    color: #fff;
  }

  .help-link .icon {
    font-size: 16px;
  }

  @media (max-width: 1024px) {
    .trust-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .tools-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .trust-section, .howto-section, .responsible-section {
      padding: 60px 16px;
    }
    .trust-h2, .howto-h2, .responsible-h2 {
      font-size: 28px;
    }
    .trust-grid {
      grid-template-columns: 1fr;
    }
    .howto-steps::before {
      display: none;
    }
    .howto-step {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .responsible-content {
      grid-template-columns: 1fr;
    }
    .tools-grid {
      grid-template-columns: 1fr 1fr;
    }
    .partners-grid {
      gap: 16px;
    }
  }

  .ux-howto-section {
    padding: 80px 24px;
    background: #0d0d0d;
  }

  .ux-howto-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .ux-howto-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .ux-howto-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .ux-howto-h2 .ux-gold {
    color: #e5a530;
  }

  .ux-howto-tagline {
    font: 400 16px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .ux-howto-steps {
    position: relative;
    padding-left: 40px;
  }

  .ux-howto-steps::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 32px;
    bottom: 32px;
    width: 3px;
    background: linear-gradient(180deg, #2d9e2d 0%, #e5a530 50%, #2d9e2d 100%);
    opacity: 0.4;
    border-radius: 2px;
  }

  .ux-howto-step {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
  }

  .ux-howto-step:last-child {
    margin-bottom: 0;
  }

  .ux-step-marker {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(165deg, rgba(45, 158, 45, 0.25) 0%, rgba(17, 17, 17, 0.95) 100%);
    border: 2px solid #2d9e2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 22px/1 'Cinzel', serif;
    color: #4ade80;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(45, 158, 45, 0.2);
    transition: all 0.3s;
  }

  .ux-howto-step:hover .ux-step-marker {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(45, 158, 45, 0.35);
  }

  .ux-howto-step:nth-child(2) .ux-step-marker,
  .ux-howto-step:nth-child(4) .ux-step-marker,
  .ux-howto-step:nth-child(6) .ux-step-marker {
    background: linear-gradient(165deg, rgba(229, 165, 48, 0.2) 0%, rgba(17, 17, 17, 0.95) 100%);
    border-color: #e5a530;
    color: #e5a530;
    box-shadow: 0 0 20px rgba(229, 165, 48, 0.2);
  }

  .ux-howto-step:nth-child(2):hover .ux-step-marker,
  .ux-howto-step:nth-child(4):hover .ux-step-marker,
  .ux-howto-step:nth-child(6):hover .ux-step-marker {
    box-shadow: 0 0 30px rgba(229, 165, 48, 0.35);
  }

  .ux-step-content {
    flex: 1;
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.5) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid #252525;
    border-radius: 14px;
    padding: 24px 28px;
    transition: all 0.3s;
  }

  .ux-step-content:hover {
    border-color: rgba(45, 158, 45, 0.3);
    transform: translateX(4px);
  }

  .ux-step-title {
    font: 600 17px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 10px;
  }

  .ux-step-desc {
    font: 400 14px/1.8 'Geologica', sans-serif;
    color: #a99c92;
    margin-bottom: 14px;
  }

  .ux-step-tip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 158, 45, 0.12);
    border: 1px solid rgba(45, 158, 45, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    font: 500 12px/1.4 'Geologica', sans-serif;
    color: #4ade80;
  }

  .ux-step-tip .ux-icon {
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .ux-howto-section {
      padding: 60px 16px;
    }
    
    .ux-howto-h2 {
      font-size: 28px;
    }
    
    .ux-howto-steps {
      padding-left: 0;
    }
    
    .ux-howto-steps::before {
      display: none;
    }
    
    .ux-howto-step {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
    }
    
    .ux-step-content {
      padding: 20px;
    }
    
    .ux-step-content:hover {
      transform: translateY(-4px);
    }
    
    .ux-step-marker {
      width: 56px;
      height: 56px;
      min-width: 56px;
      font-size: 20px;
    }
  }
  .faq-section {
    padding: 80px 24px;
    background: #111111;
  }

  .faq-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .faq-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .faq-tagline {
    font: 400 16px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.4) 0%, rgba(26, 26, 26, 0.7) 100%);
    border: 1px solid #252525;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
  }

  .faq-item:hover {
    border-color: rgba(45, 158, 45, 0.3);
  }

  .faq-item.active {
    border-color: rgba(45, 158, 45, 0.4);
    background: linear-gradient(165deg, rgba(45, 158, 45, 0.08) 0%, rgba(26, 26, 26, 0.9) 100%);
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
  }

  .faq-question h3 {
    font: 500 15px/1.4 'Geologica', sans-serif;
    color: #fff;
    margin: 0;
    flex: 1;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(45, 158, 45, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4ade80;
    transition: all 0.3s;
  }

  .faq-item.active .faq-icon {
    background: rgba(45, 158, 45, 0.25);
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
  }

  .faq-answer-inner {
    padding: 0 24px 24px;
    font: 400 14px/1.8 'Geologica', sans-serif;
    color: #a99c92;
  }

  .faq-answer-inner p {
    margin: 0 0 12px;
  }

  .faq-answer-inner p:last-child {
    margin-bottom: 0;
  }

  .faq-answer-inner strong {
    color: #fff;
  }

  .faq-answer-inner .highlight {
    color: #e5a530;
    font-weight: 500;
  }

  .faq-answer-inner .green {
    color: #4ade80;
    font-weight: 500;
  }

  .faq-answer-inner ul {
    margin: 12px 0;
    padding-left: 20px;
  }

  .faq-answer-inner li {
    margin-bottom: 8px;
    color: #a99c92;
  }

  .faq-answer-inner li strong {
    color: #fff;
  }

  .faq-contact {
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(229, 165, 48, 0.1) 0%, rgba(17, 17, 17, 0.95) 100%);
    border: 1px solid rgba(229, 165, 48, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
  }

  .faq-contact-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .faq-contact h3 {
    font: 600 18px/1.3 'Cinzel', serif;
    color: #fff;
    margin-bottom: 8px;
  }

  .faq-contact p {
    font: 400 14px/1.6 'Geologica', sans-serif;
    color: #888;
    margin-bottom: 20px;
  }

  .faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #ffb236 0%, #dc7900 100%);
    border: none;
    color: #000;
    padding: 14px 32px;
    border-radius: 8px;
    font: 600 14px/1 'Geologica', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
  }

  .faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 178, 54, 0.3);
  }

  @media (max-width: 768px) {
    .faq-section { padding: 60px 16px; }
    .faq-h2 { font-size: 28px; }
    .faq-question { padding: 16px 20px; }
    .faq-question h3 { font-size: 14px; }
    .faq-answer-inner { padding: 0 20px 20px; }
  }

  .testimonials-section {
    padding: 80px 24px;
    background: 
      radial-gradient(ellipse 60% 40% at 30% 100%, rgba(26, 92, 53, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse 50% 50% at 80% 0%, rgba(229, 165, 48, 0.06) 0%, transparent 40%),
      #111111;
    overflow: hidden;
  }

  .testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .testimonials-h2 {
    font: 700 36px/1.2 'Cinzel', serif;
    color: #fff5ed;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .testimonials-h2 .gold {
    color: #e5a530;
  }

  .testimonials-tagline {
    font: 400 16px/1.6 'Geologica', sans-serif;
    color: #888;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }

  .testimonial-card {
    background: linear-gradient(165deg, rgba(42, 42, 42, 0.5) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid #252525;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.3s;
  }

  .testimonial-card:hover {
    border-color: rgba(45, 158, 45, 0.3);
    transform: translateY(-4px);
  }

  .testimonial-card.featured {
    background: linear-gradient(165deg, rgba(229, 165, 48, 0.1) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-color: rgba(229, 165, 48, 0.25);
  }

  .testimonial-card.featured:hover {
    border-color: rgba(229, 165, 48, 0.4);
  }

  .testimonial-quote {
    font-size: 32px;
    color: #2d9e2d;
    opacity: 0.5;
    margin-bottom: 12px;
    line-height: 1;
  }

  .testimonial-card.featured .testimonial-quote {
    color: #e5a530;
  }

  .testimonial-text {
    font: 400 14px/1.8 'Geologica', sans-serif;
    color: #c4b8ae;
    margin-bottom: 20px;
    min-height: 100px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2d9e2d 0%, #1a5c35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 600 16px/1 'Geologica', sans-serif;
    color: #fff;
  }

  .testimonial-card.featured .author-avatar {
    background: linear-gradient(135deg, #e5a530 0%, #dc7900 100%);
    color: #000;
  }

  .author-info {
    flex: 1;
  }

  .author-name {
    font: 600 14px/1.3 'Geologica', sans-serif;
    color: #fff;
    margin-bottom: 2px;
  }

  .author-meta {
    font: 400 12px/1.3 'Geologica', sans-serif;
    color: #666;
  }

  .author-rating {
    color: #e5a530;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid #1f1f1f;
  }

  .stat-item {
    text-align: center;
  }

  .stat-value {
    font: 700 32px/1.1 'Cinzel', serif;
    color: #e5a530;
    margin-bottom: 4px;
  }

  .stat-label {
    font: 400 13px/1.4 'Geologica', sans-serif;
    color: #888;
  }

  /* FOOTER */
  .footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 60px 24px 24px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a1a1a;
  }

  .footer-brand {
    max-width: 300px;
  }

  .footer-logo {
    font: 700 20px/1 'Cinzel', serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-logo .dragon {
    font-size: 28px;
  }

  .footer-desc {
    font: 400 13px/1.7 'Geologica', sans-serif;
    color: #666;
    margin-bottom: 20px;
  }

  .footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-badge {
    background: rgba(255,255,255,0.03);
    border: 1px solid #252525;
    border-radius: 6px;
    padding: 8px 12px;
    font: 400 11px/1.3 'Geologica', sans-serif;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .footer-badge .icon {
    font-size: 14px;
  }

  .footer-column h4 {
    font: 600 13px/1 'Geologica', sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    font: 400 13px/1.4 'Geologica', sans-serif;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: #4ade80;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-copy {
    font: 400 12px/1.4 'Geologica', sans-serif;
    color: #444;
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font: 400 12px/1.4 'Geologica', sans-serif;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover {
    color: #fff;
  }

  .footer-payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .payment-icon {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    padding: 6px 10px;
    font: 500 10px/1 'Geologica', sans-serif;
    color: #666;
  }

  .age-restriction {
    background: #dc2626;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 12px/1 'Geologica', sans-serif;
  }

  .gambling-warning {
    margin-top: 24px;
    padding: 20px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 10px;
    text-align: center;
  }

  .gambling-warning p {
    font: 400 12px/1.6 'Geologica', sans-serif;
    color: #888;
    margin: 0;
  }

  .gambling-warning strong {
    color: #ef4444;
  }

  @media (max-width: 1024px) {
    .footer-top {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
  }

  @media (max-width: 900px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
    .testimonials-stats {
      flex-direction: column;
      gap: 24px;
    }
  }

  @media (max-width: 768px) {
    .testimonials-section { padding: 60px 16px; }
    .testimonials-h2 { font-size: 28px; }
    .footer { padding: 40px 16px 20px; }
    .footer-top {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }

  /* Language Switcher Styles */
.lang-switcher-toggle {
  cursor: pointer;
  position: relative;
}

.lang-switcher-toggle .lang-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform 0.2s;
}

.lang-switcher-toggle.open .lang-arrow {
  transform: rotate(180deg);
}

body.sidebar-collapsed .lang-switcher-toggle .lang-arrow {
  display: none;
}

.lang-dropdown {
  display: none;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  margin: 4px 12px 8px;
  overflow: hidden;
}

.lang-dropdown.show {
  display: block;
}

body.sidebar-collapsed .lang-dropdown {
  position: absolute;
  left: 70px;
  bottom: 10px;
  margin: 0;
  min-width: 180px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

.lang-option:hover {
  background: #252525;
  color: #fff;
}

.lang-option.active {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
}

.lang-option svg:first-child {
  width: 24px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 2px;
}

.lang-option .check-icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: #4ade80;
}

.lang-option:not(.active) .check-icon {
  display: none;
}