    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #0d0d1a;
      color: #FFFFFF;
      min-height: 100vh;
    }
    
    /* Header */
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background: #151522;
      border-bottom: 1px solid #1f1f2e;
      z-index: 102;
    }
    
    .header-left {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .menu-btn {
      background: #1a1a2e;
      border: 1px solid #2a2a42;
      color: #FFFFFF;
      width: 48px;
      height: 48px;
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: all 0.3s;
    }
    
    .menu-btn:hover {
      background: #242438;
      border-color: #3a3a52;
    }
    
    .logo {
      color: #FFFFFF;
      font-weight: bold;
      font-size: 16px;
      letter-spacing: 1px;
    }
    
    .header-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .search-btn {
      background: #1a1a2e;
      border: 1px solid #2a2a42;
      color: #8a8aa8;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.3s;
      text-decoration: none;
    }
    
    .search-btn:hover {
      background: #242438;
      color: #9a9ab8;
    }
    
    .login-btn {
      background: #1a1a2e;
      border: 1px solid #2a2a42;
      color: #FFFFFF;
      padding: 12px 28px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .login-btn:hover {
      background: #242438;
      border-color: #3a3a52;
    }
    
    .signup-btn {
      background: linear-gradient(180deg, #ffd700 0%, #f5c842 50%, #e4b034 100%);
      border: none;
      color: #1a1a2e;
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      font-size: 14px;
      box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
      transition: all 0.3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .signup-btn:hover {
      background: linear-gradient(180deg, #ffe44d 0%, #ffd04f 50%, #f0bc3e 100%);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
    }
    
    /* Layout */
    .main-container {
      display: flex;
    }
    
    /* Sidebar */
    .sidebar {
      width: 60px;
      min-height: calc(100vh - 72px);
      background: #1a232e;
      padding: 15px 8px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      border-right: 1px solid #252f3a;
    }
    
    .sidebar-icons {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }
    
    .sidebar-bottom {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: auto;
    }
    
    .sidebar-icon {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      transition: all 0.3s;
      position: relative;
      background: #2a3a4a;
      border: 1px solid #3a4a5a;
      text-decoration: none;
      color: inherit;
    }
    
    .sidebar-icon:hover {
      background: #3a4a5a;
      transform: translateY(-2px);
    }
    
    .sidebar-icon.gradient-orange { background: #2a3a4a; border: 1px solid #3a4a5a; }
    .sidebar-icon.gradient-blue { background: #2a3a4a; border: 1px solid #3a4a5a; }
    .sidebar-icon.gradient-purple { background: #2a3a4a; border: 1px solid #3a4a5a; }
    .sidebar-icon.gradient-green { background: #2a3a4a; border: 1px solid #3a4a5a; }
    .sidebar-icon.gradient-pink { background: #2a3a4a; border: 1px solid #3a4a5a; }
    
    .notification-badge {
      position: absolute;
      top: -4px;
      right: -4px;
      background: #00ff88;
      color: #1a1a2e;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid #1a232e;
      box-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: bold;
    }
    
    .lang-btn {
      font-size: 12px;
      font-weight: bold;
      color: #b8b8d2;
      position: relative;
      cursor: pointer;
    }
    
    .lang-dropdown {
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 8px;
      background: #1a1a3a;
      border: 1px solid #2a2a4a;
      border-radius: 8px;
      min-width: 120px;
      display: none;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
      z-index: 1000;
    }
    
    .lang-btn:hover .lang-dropdown,
    .lang-dropdown:hover {
      display: flex;
    }
    
    .lang-option {
      padding: 10px 15px;
      cursor: pointer;
      transition: all 0.2s;
      color: #b8b8d2;
      font-size: 13px;
      border-bottom: 1px solid #252545;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }
    
    .lang-option:last-child {
      border-bottom: none;
    }
    
    .lang-option:hover {
      background: #242450;
      color: #fff;
    }
    
    .lang-option.active {
      background: rgba(99, 102, 241, 0.15);
      color: #6366f1;
      font-weight: 600;
    }
    
    .lang-flag {
      font-size: 16px;
    }
    
    .download-btn {
      background: #2a3a4a;
      border: 1px solid #3a4a5a;
      color: #fff;
    }
    
    /* Expanded Sidebar Menu */
    .sidebar-expanded {
      position: fixed;
      top: 72px;
      left: 0;
      width: 300px;
      height: calc(100vh - 72px);
      background: #0d0d1a;
      z-index: 101;
      padding: 12px 12px;
      display: none;
      flex-direction: column;
      gap: 8px;
      overflow-y: auto;
      border-right: 1px solid #1f1f2e;
      z-index: 101;
    }
    
    .sidebar-expanded.open {
      display: flex;
      z-index: 101;
    }
    
    .menu-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 0;
    }
    
    .menu-item-large {
      background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
      border-radius: 10px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      position: relative;
      border: 1px solid #2a2a4a;
      transition: all 0.3s;
      text-decoration: none;
      color: inherit;
    }
    
    .menu-item-large:hover {
      background: linear-gradient(135deg, #202046 0%, #2d2d5c 100%);
      transform: translateY(-1px);
    }
    
    .menu-item-large .icon {
      font-size: 26px;
    }
    
    .menu-item-large .text {
      font-size: 16px;
      font-weight: 600;
      color: #e8e8f2;
    }
    
    .menu-item-large .badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: #22c55e;
      color: #fff;
      min-width: 22px;
      height: 22px;
      padding: 0 6px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: bold;
    }
    
    .menu-row {
      display: flex;
      gap: 8px;
    }
    
    .menu-item-half {
      flex: 1;
      background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
      border-radius: 10px;
      padding: 14px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      border: 1px solid #2a2a4a;
      transition: all 0.3s;
      text-decoration: none;
      color: inherit;
    }
    
    .menu-item-half:hover {
      background: linear-gradient(135deg, #202046 0%, #2d2d5c 100%);
      transform: translateY(-1px);
    }
    
    .menu-item-half .icon {
      font-size: 22px;
    }
    
    .menu-item-half .text {
      font-size: 13px;
      font-weight: 600;
      color: #e8e8f2;
    }
    
    .menu-item-expandable {
      background: #1a1a3a;
      border-radius: 10px;
      padding: 13px 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      border: 1px solid #2a2a4a;
      transition: all 0.3s;
      text-decoration: none;
      color: inherit;
    }
    
    .menu-item-expandable:hover {
      background: #202046;
    }
    
    .menu-item-expandable .left {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .menu-item-expandable .icon {
      font-size: 19px;
      opacity: 0.8;
    }
    
    .menu-item-expandable .text {
      font-size: 14px;
      font-weight: 500;
      color: #b8b8d2;
    }
    
    .menu-item-expandable .arrow {
      color: #6366f1;
      font-size: 15px;
    }
    
    .menu-bottom {
      display: flex;
      gap: 8px;
      padding-top: 12px;
      border-top: 1px solid #1f1f2e;
      margin-top: 8px;
    }
    
    .menu-bottom-btn {
      flex: 1;
      background: #1a1a3a;
      border-radius: 10px;
      padding: 14px 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      border: 1px solid #2a2a4a;
      transition: all 0.3s;
      text-decoration: none;
      color: inherit;
    }
    
    .menu-bottom-btn:hover {
      background: #202046;
    }
    
    .menu-bottom-btn .icon {
      font-size: 18px;
    }
    
    .menu-bottom-btn .text {
      font-size: 13px;
      font-weight: 600;
      color: #b8b8d2;
    }
    
    .menu-bottom-btn.lang-menu {
      position: relative;
    }
    
    .menu-lang-dropdown {
      position: absolute;
      bottom: 100%;
      left: 0;
      right: 0;
      margin-bottom: 8px;
      background: #1a1a3a;
      border: 1px solid #2a2a4a;
      border-radius: 8px;
      display: none;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
      z-index: 1000;
    }
    
    .menu-bottom-btn.lang-menu:hover .menu-lang-dropdown,
    .menu-lang-dropdown:hover {
      display: flex;
    }
    
    .menu-lang-option {
      padding: 10px 15px;
      cursor: pointer;
      transition: all 0.2s;
      color: #b8b8d2;
      font-size: 13px;
      border-bottom: 1px solid #252545;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }
    
    .menu-lang-option:last-child {
      border-bottom: none;
    }
    
    .menu-lang-option:hover {
      background: #242450;
      color: #fff;
    }
    
    .menu-lang-option.active {
      background: rgba(99, 102, 241, 0.15);
      color: #6366f1;
      font-weight: 600;
    }
    
    .menu-bottom-btn.download {
      background: linear-gradient(135deg, #34d399, #10b981);
      border: none;
    }
    
    .menu-bottom-btn.download .text {
      color: #fff;
    }
    
    .overlay {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.6);
      z-index: 99;
      display: none;
      backdrop-filter: blur(2px);
    }
    
    .overlay.open {
      display: block;
    }
    
    /* Content */
    .content {
      flex: 1;
      padding: 20px;
      display: flex;
      justify-content: center;
      overflow-x: hidden;
    }
    
    .content-inner {
      width: 100%;
      min-width: 300px;
      max-width: 1856px;
    }
    
    /* Banners */
    .banners {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      height: 340px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }
    
    .banners::-webkit-scrollbar {
      display: none;
    }
    
    .banner {
      min-width: calc(50% - 10px);
      flex-shrink: 0;
      border-radius: 16px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
      scroll-snap-align: start;
    }
    
    .banner-cashback {
      background: linear-gradient(135deg, #1a2a3a 0%, #1a4a3a 40%, #2d6b4d 100%);
    }
    
    .banner-luck {
      background: linear-gradient(135deg, #2a1a3a 0%, #4a2a5a 40%, #6a3a7a 100%);
    }
    
    .banner-gangsta {
      background: linear-gradient(135deg, #2a1a3a 0%, #4a2a5a 40%, #6a3a7a 100%);
    }
    
    .banner-welcome {
      background: linear-gradient(135deg, #1a2a3a 0%, #1a4a3a 40%, #2d6b4d 100%);
    }
    
    .banner-image {
      position: absolute;
      right: 40px;
      top: 0;
      bottom: 0;
      height: 100%;
      width: auto;
      max-width: 40%;
      object-fit: contain;
      pointer-events: none;
    }
    
    .banner-image-placeholder {
      position: absolute;
      right: 40px;
      top: 0;
      bottom: 0;
      width: 280px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 64px;
      pointer-events: none;
    }
    
    .banner-tags {
      display: flex;
      gap: 10px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }
    
    .banner-tag {
      display: inline-flex;
      align-items: center;
      padding: 10px 20px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      width: fit-content;
    }
    
    .tag-green { background: #22c55e; color: #fff; }
    .tag-dark { background: rgba(0,0,0,0.35); color: #fff; }
    .tag-purple { background: #a855f7; color: #fff; }
    
    .banner-title {
      font-size: 56px;
      font-weight: 800;
      color: #ffd700;
      margin-bottom: 10px;
      line-height: 1;
    }
    
    .banner-luck .banner-title {
      color: #ffd700;
      font-size: 44px;
    }
    
    .banner-subtitle {
      color: #fff;
      font-size: 18px;
      margin-bottom: 22px;
      font-weight: 500;
    }
    
    .banner-subtitle-small {
      color: rgba(255, 255, 255, 0.9);
      font-size: 15px;
      margin-bottom: 6px;
      font-weight: 400;
      line-height: 1.3;
    }
    
    .banner-btn {
      padding: 14px 35px;
      border-radius: 10px;
      border: none;
      font-weight: bold;
      cursor: pointer;
      font-size: 15px;
      transition: all 0.3s;
      width: fit-content;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .banner-btn:hover {
      transform: translateY(-2px);
    }
    
    .btn-dark {
      background: #1a1a2e;
      color: #fff;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }
    
    .btn-dark:hover {
      background: #242438;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }
    
    .btn-purple {
      background: #6366f1;
      color: #fff;
      box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    }
    
    .btn-purple:hover {
      background: #7c3aed;
      box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    }
    
    .btn-orange {
      background: linear-gradient(135deg, #ff8e53, #ff6b6b);
      color: #fff;
      box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
    }
    
    .btn-orange:hover {
      background: linear-gradient(135deg, #ffa366, #ff7979);
      box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    }
    
    .btn-blue {
      background: linear-gradient(135deg, #4facfe, #00f2fe);
      color: #1a1a2e;
      box-shadow: 0 4px 16px rgba(79, 172, 254, 0.4);
    }
    
    .btn-blue:hover {
      background: linear-gradient(135deg, #6bbdff, #33f5ff);
      box-shadow: 0 6px 20px rgba(79, 172, 254, 0.5);
    }
    
    /* Dots */
    .dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 20px;
    }
    
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #2a2a42;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .dot.active {
      background: #ffd700;
      width: 24px;
      border-radius: 4px;
    }
    
    /* Categories */
    .categories {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #151522;
      padding: 12px 15px;
      border-radius: 12px;
      overflow-x: auto;
    }
    
    .category {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      border-radius: 10px;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.3s;
      background: transparent;
      color: #8a8aa8;
      font-size: 14px;
      font-weight: 500;
      border: none;
      text-decoration: none;
    }
    
    .category:hover {
      color: #a8a8c8;
      background: rgba(255, 255, 255, 0.03);
    }
    
    .category.active {
      background: linear-gradient(135deg, #ffd700 0%, #f5c842 100%);
      color: #1a1a2e;
      font-weight: 700;
      box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    }
    
    .category-icon {
      font-size: 18px;
      filter: grayscale(100%) brightness(1.2);
    }
    
    .category.active .category-icon {
      filter: grayscale(100%) brightness(0.3);
    }
    
    .scroll-btn {
      background: rgba(255, 215, 0, 0.1);
      border: 1px solid rgba(255, 215, 0, 0.3);
      color: #ffd700;
      font-size: 20px;
      cursor: pointer;
      padding: 8px 12px;
      margin-left: auto;
      border-radius: 8px;
      transition: all 0.3s;
    }
    
    .scroll-btn:hover {
      background: rgba(255, 215, 0, 0.2);
      border-color: rgba(255, 215, 0, 0.5);
    }
    
    /* Hide scrollbar */
    .categories::-webkit-scrollbar {
      display: none;
    }
    
    .categories {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    
    /* Games Grid */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 20px;
      margin-top: 30px;
    }
    
    .game-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      background: #1a1a2e;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
      aspect-ratio: 3/4;
    }
    
    .game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    }
    
    .game-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
      height: 100%;
    }
    
    .game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s;
    }
    
    .game-card:hover .game-image {
      transform: scale(1.05);
    }
    
    .game-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
      padding: 20px 15px 15px;
      transition: all 0.3s;
      transform: translateY(0);
    }
    
    .game-card:hover .game-overlay {
      transform: translateY(-2px);
    }
    
    .game-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      text-transform: uppercase;
      line-height: 1.2;
      transition: all 0.3s;
    }
    
    .game-card:hover .game-title {
      color: #ffd700;
    }
    
    .game-provider {
      font-size: 12px;
      color: #8a8aa8;
      font-weight: 500;
      text-transform: uppercase;
      transition: all 0.3s;
    }
    
    .game-card:hover .game-provider {
      color: #a8a8c8;
    }
    
    .play-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s ease-in-out;
      backdrop-filter: blur(4px);
    }
    
    .game-card:hover .play-overlay {
      opacity: 1;
    }
    
    .play-button {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffd700, #f5c842);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
      transform: scale(0.9);
    }
    
    .game-card:hover .play-button {
      transform: scale(1);
    }
    
    .play-button:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(255, 215, 0, 0.6);
    }
    
    .play-icon {
      width: 0;
      height: 0;
      border-left: 18px solid #1a1a2e;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      margin-left: 4px;
    }
    
    .video-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(8px);
      border-radius: 8px;
      padding: 6px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      z-index: 2;
      transition: all 0.3s;
    }
    
    .game-card:hover .video-badge {
      background: rgba(0, 0, 0, 0.9);
      transform: scale(1.05);
    }
    
    .show-more-container {
      display: flex;
      justify-content: center;
      margin-top: 40px;
      margin-bottom: 40px;
    }
    
    .show-more-btn {
      padding: 14px 40px;
      background: #1a1a2e;
      border: 1px solid #2a2a42;
      color: #fff;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    
    .show-more-btn:hover {
      background: #242438;
      border-color: #3a3a52;
      transform: translateY(-2px);
    }
    
    .show-more-icon {
      font-size: 18px;
    }
    
    /* Hot Games Section */
    .hot-games-section {
      margin-top: 50px;
      margin-bottom: 40px;
    }
    
    .hot-games-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .hot-games-title {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
    }
    
    .hot-games-controls {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    
    .slider-arrow {
      width: 44px;
      height: 44px;
      background: #1a1a2e;
      border: 1px solid #2a2a42;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      color: #8a8aa8;
      font-size: 18px;
    }
    
    .slider-arrow:hover {
      background: #242438;
      border-color: #3a3a52;
      color: #a8a8c8;
    }
    
    .slider-arrow:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }
    
    .hot-games-show-more {
      padding: 12px 24px;
      background: #1a1a2e;
      border: 1px solid #2a2a42;
      color: #fff;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }
    
    .hot-games-show-more:hover {
      background: #242438;
      border-color: #3a3a52;
    }
    
    .hot-games-container {
      display: flex;
      flex-direction: column;
      gap: 12px;
      overflow: hidden;
    }
    
    .hot-games-row {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    
    .hot-games-row::-webkit-scrollbar {
      display: none;
    }
    
    .hot-game-card {
      min-width: 280px;
      background: #1a1a2e;
      border-radius: 12px;
      padding: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s;
      border: 1px solid #2a2a42;
      text-decoration: none;
      color: inherit;
    }
    
    .hot-game-card:hover {
      background: #242438;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    
    .hot-game-image {
      width: 60px;
      height: 60px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
    }
    
    .hot-game-info {
      flex: 1;
      min-width: 0;
    }
    
    .hot-game-name {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .hot-game-provider {
      font-size: 12px;
      color: #8a8aa8;
      text-transform: lowercase;
    }
    
    .hot-game-play {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    
    .hot-game-card:hover .hot-game-play {
      background: linear-gradient(135deg, #ffd700, #f5c842);
    }
    
    .hot-game-play-icon {
      width: 0;
      height: 0;
      border-left: 10px solid #fff;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      margin-left: 2px;
    }
    
    .hot-game-card:hover .hot-game-play-icon {
      border-left-color: #1a1a2e;
    }
    
    /* Live Casino Games Section */
    .live-casino-section {
      margin-top: 50px;
      margin-bottom: 40px;
    }
    
    .live-casino-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .live-casino-title {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
    }
    
    .live-casino-controls {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    
    .live-casino-slider {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-bottom: 10px;
    }
    
    .live-casino-slider::-webkit-scrollbar {
      display: none;
    }
    
    .live-casino-card {
      min-width: 320px;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      color: inherit;
      aspect-ratio: 16/10;
    }
    
    .live-casino-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    }
    
    .live-casino-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s;
    }
    
    .live-casino-card:hover .live-casino-image {
      transform: scale(1.05);
    }
    
    .live-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #ff3b3b;
      color: #fff;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(255, 59, 59, 0.4);
      z-index: 2;
    }
    
    .live-play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s;
      z-index: 2;
    }
    
    .live-casino-card:hover .live-play-icon {
      opacity: 1;
    }
    
    .live-play-icon::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 20px solid #1a1a2e;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      margin-left: 5px;
    }
    
    .live-casino-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
      padding: 40px 20px 20px;
      transition: all 0.3s;
    }
    
    .live-casino-name {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      text-transform: uppercase;
      line-height: 1.2;
    }
    
    .live-casino-provider {
      font-size: 13px;
      color: #8a8aa8;
      text-transform: uppercase;
      font-weight: 500;
    }
    
    @media (min-width: 1400px) {
      .games-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 24px;
      }
    }
    
    @media (min-width: 1100px) and (max-width: 1399px) {
      .games-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 18px;
      }
    }
    
    @media (min-width: 901px) and (max-width: 1099px) {
      .games-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 16px;
      }
    }
    
    .sidebar-expanded::-webkit-scrollbar {
      width: 6px;
    }
    
    .sidebar-expanded::-webkit-scrollbar-track {
      background: transparent;
    }
    
    .sidebar-expanded::-webkit-scrollbar-thumb {
      background: #2a2a42;
      border-radius: 3px;
    }

    @media (max-width: 900px) and (min-width: 641px) {
      .banners {
        overflow-x: auto;
        height: 320px;
      }
      .banner {
        min-width: 100%;
        padding: 35px 30px;
      }
      .banner > div:first-child {
        max-width: 65%;
        position: relative;
        z-index: 1;
      }
      .banner-title {
        font-size: 40px;
      }
      .banner-luck .banner-title,
      .banner-gangsta .banner-title {
        font-size: 34px;
      }
      .banner-image-placeholder {
        width: 180px;
        font-size: 56px;
        right: 30px;
        opacity: 0.28;
      }
      .sidebar-expanded {
        width: 280px;
      }
      .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 20px;
      }
    }
    
    @media (max-width: 640px) {
      .content {
        padding: 15px;
      }
      .banners {
        gap: 15px;
        margin-bottom: 15px;
        height: 280px;
      }
      .banner {
        padding: 30px 20px;
        min-height: 280px;
        min-width: 100%;
      }
      .banner > div:first-child {
        max-width: 60%;
        position: relative;
        z-index: 1;
      }
      .banner-title {
        font-size: 30px;
        line-height: 1.05;
        margin-bottom: 8px;
      }
      .banner-luck .banner-title,
      .banner-gangsta .banner-title {
        font-size: 26px;
      }
      .banner-subtitle {
        font-size: 14px;
        margin-bottom: 18px;
      }
      .banner-subtitle-small {
        font-size: 12px;
        margin-bottom: 4px;
      }
      .banner-tag {
        font-size: 11px;
        padding: 7px 12px;
      }
      .banner-tags {
        margin-bottom: 14px;
        gap: 8px;
      }
      .banner-btn {
        padding: 11px 22px;
        font-size: 13px;
      }
      .banner-image-placeholder {
        width: 140px;
        font-size: 40px;
        right: 15px;
        opacity: 0.25;
      }
      .header {
        padding: 10px 15px;
        z-index: 101;
      }
      .login-btn {
        padding: 10px 20px;
        font-size: 13px;
      }
      .signup-btn {
        padding: 10px 20px;
        font-size: 13px;
      }
      .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 20px;
      }
      .game-title {
        font-size: 14px;
      }
      .game-provider {
        font-size: 11px;
      }
      .play-button {
        width: 50px;
        height: 50px;
      }
      .play-icon {
        border-left: 14px solid #1a1a2e;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
      }
      .show-more-container {
        margin-top: 30px;
        margin-bottom: 30px;
      }
      .video-badge {
        top: 10px;
        right: 10px;
        padding: 5px 9px;
        font-size: 18px;
      }
    }
    
    @media (max-width: 480px) {
      .banners {
        height: 260px;
      }
      .banner {
        min-height: 260px;
        padding: 25px 18px;
      }
      .banner > div:first-child {
        max-width: 65%;
      }
      .banner-title {
        font-size: 26px;
        line-height: 1.05;
      }
      .banner-luck .banner-title,
      .banner-gangsta .banner-title {
        font-size: 20px;
      }
      .banner-tag {
        font-size: 10px;
        padding: 6px 10px;
      }
      .banner-tags {
        margin-bottom: 12px;
        gap: 6px;
      }
      .banner-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
      }
      .banner-subtitle-small {
        font-size: 11px;
        margin-bottom: 3px;
      }
      .banner-btn {
        padding: 10px 20px;
        font-size: 12px;
      }
      .banner-image-placeholder {
        width: 110px;
        font-size: 32px;
        right: 10px;
        opacity: 0.2;
      }
      .logo {
        font-size: 14px;
      }
      .login-btn, .signup-btn {
        padding: 8px 16px;
        font-size: 12px;
      }
      .games-grid {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
      }
      .game-overlay {
        padding: 15px 12px 12px;
      }
      .game-title {
        font-size: 13px;
      }
      .game-provider {
        font-size: 10px;
      }
      .play-button {
        width: 45px;
        height: 45px;
      }
      .play-icon {
        border-left: 12px solid #1a1a2e;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
      }
      .show-more-btn {
        padding: 12px 32px;
        font-size: 14px;
      }
      .video-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 16px;
      }
      .hot-games-section {
        margin-top: 30px;
      }
      .hot-games-title {
        font-size: 20px;
      }
      .hot-games-controls {
        gap: 6px;
      }
      .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
      }
      .hot-games-show-more {
        padding: 8px 16px;
        font-size: 12px;
      }
      .hot-game-card {
        min-width: 220px;
      }
      .hot-game-image {
        width: 48px;
        height: 48px;
      }
      .hot-game-name {
        font-size: 13px;
      }
      .hot-game-provider {
        font-size: 10px;
      }
      .hot-game-play {
        width: 36px;
        height: 36px;
      }
      .live-casino-section {
        margin-top: 30px;
      }
      .live-casino-title {
        font-size: 20px;
      }
      .live-casino-card {
        min-width: 240px;
      }
      .live-casino-name {
        font-size: 14px;
      }
      .live-casino-provider {
        font-size: 10px;
      }
      .live-play-icon {
        width: 50px;
        height: 50px;
      }
      .live-play-icon::after {
        border-left: 16px solid #1a1a2e;
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
      }
      .live-badge {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 10px;
      }
      .live-casino-overlay {
        padding: 25px 14px 14px;
      }
    }

    /* ============================================ */
/* FOOTER STYLES */
/* ============================================ */

.site-footer {
  background: #0a0a14;
  color: #8a8aa8;
  margin-top: 0;
}

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

/* Footer Main */
.footer-main {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #0d0d1a 0%, #0a0a14 100%);
  border-top: 1px solid #1f1f2e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Brand Column */
.footer-brand {
  padding-right: 30px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.logo-icon {
  font-size: 36px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #f5c842 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #7a7a9a;
  margin-bottom: 25px;
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s;
}

.social-link:hover {
  background: linear-gradient(135deg, #252550 0%, #3a3a6a 100%);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-column {
  min-width: 0;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, transparent);
}

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

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

.footer-links a {
  color: #7a7a9a;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

/* Footer Section Title */
.footer-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #a8a8c8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-align: center;
}

/* Payment Methods */
.footer-payments {
  padding: 30px 0;
  border-top: 1px solid #1a1a2e;
  border-bottom: 1px solid #1a1a2e;
}

.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-icon {
  width: 60px;
  height: 38px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #a8a8c8;
  transition: all 0.3s;
}

.payment-icon:hover {
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: translateY(-2px);
}

/* Game Providers */
.footer-providers {
  padding: 30px 0;
}

.provider-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.provider-name {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #1a1a2e;
  border-radius: 20px;
  font-size: 12px;
  color: #6a6a8a;
  transition: all 0.3s;
}

.provider-name:hover {
  border-color: #2a2a4a;
  color: #a8a8c8;
}

.provider-name:last-child {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}

/* Licenses Section */
.footer-licenses {
  padding: 35px 0;
  background: #08080f;
  border-top: 1px solid #1a1a2e;
}

.licenses-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.license-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.license-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 8px;
}

.badge-icon {
  font-size: 18px;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}

.responsible-badges {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.responsible-badge {
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
  transition: all 0.3s;
}

.responsible-badge:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
}

.age-badge {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
  background: #06060c;
}

.footer-legal {
  margin-bottom: 25px;
}

.legal-text {
  font-size: 12px;
  line-height: 1.7;
  color: #5a5a7a;
  margin-bottom: 12px;
  text-align: center;
}

.legal-text:last-child {
  margin-bottom: 0;
}

.legal-text strong {
  color: #7a7a9a;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid #1a1a2e;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright p {
  font-size: 13px;
  color: #5a5a7a;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  color: #5a5a7a;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #ffd700;
}

.footer-bottom-links span {
  color: #3a3a4a;
}


@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-grid .footer-column:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .footer-main {
    padding: 50px 0 35px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }
  
  .footer-brand {
    grid-column: span 2;
    padding-right: 0;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-links a:hover {
    transform: none;
  }
  
  .footer-grid .footer-column:last-child {
    grid-column: span 1;
  }
  
  .licenses-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .license-badges {
    justify-content: center;
  }
  
  .responsible-badges {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .footer-brand-desc {
    font-size: 13px;
  }
  
  .footer-heading {
    font-size: 15px;
    margin-bottom: 18px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .payment-icons {
    gap: 8px;
  }
  
  .payment-icon {
    width: 50px;
    height: 32px;
    font-size: 12px;
  }
  
  .provider-name {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .license-badges {
    gap: 12px;
  }
  
  .license-badge {
    padding: 8px 14px;
  }
  
  .badge-text {
    font-size: 11px;
  }
  
  .responsible-badge {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .age-badge {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  
  .legal-text {
    font-size: 11px;
    text-align: left;
  }
  
  .footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-copyright p {
    font-size: 12px;
  }
  
  .footer-bottom-links {
    gap: 10px;
  }
  
  .footer-bottom-links a {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .footer-logo {
    flex-direction: column;
    gap: 8px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .license-badge {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    padding: 10px 12px;
  }
}

@media (max-width: 1100px) {
  .providers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet - 900px */
@media (max-width: 900px) {
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .winners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .winners-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .help-organizations {
    grid-template-columns: 1fr;
  }
  
  .winners-podium {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .podium-item {
    order: unset !important;
  }
  
  .podium-item.first {
    width: 100%;
  }
  
  .about-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Mobile - 700px */
@media (max-width: 700px) {
  .providers-section,
  .winners-section,
  .about-section,
  .responsible-section,
  .faq-section {
    padding: 50px 0;
  }
  
  /* Providers */
  .providers-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .provider-card {
    padding: 14px 16px;
  }
  
  .provider-logo {
    width: 48px;
    height: 48px;
  }
  
  .provider-name {
    font-size: 13px;
  }
  
  .providers-text {
    padding: 28px 20px;
  }
  
  .providers-text h3 {
    font-size: 20px;
  }
  
  .providers-text p {
    font-size: 14px;
  }
  
  /* Winners */
  .winners-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .winner-tab {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .winners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .winner-card {
    padding: 18px;
  }
  
  .winners-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-icon {
    font-size: 28px;
  }
  
  .stat-value {
    font-size: 22px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .winners-podium {
    padding: 10px;
    gap: 20px;
  }
  
  .podium-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .podium-item.first .podium-avatar {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .podium-stand {
    width: 90px;
    font-size: 24px;
  }
  
  .podium-item.first .podium-stand {
    width: 110px;
    height: 80px;
  }
  
  .podium-item.second .podium-stand {
    height: 55px;
  }
  
  .podium-item.third .podium-stand {
    height: 40px;
  }
  
  .podium-amount {
    font-size: 20px;
  }
  
  .podium-item.first .podium-amount {
    font-size: 22px;
  }
  
  .winners-text {
    padding: 28px 20px;
  }
  
  /* About */
  .about-intro {
    padding: 28px 20px;
  }
  
  .about-intro h3 {
    font-size: 18px;
  }
  
  .about-feature {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
  }
  
  .about-feature-icon {
    margin: 0 auto;
  }
  
  .about-stats-card {
    padding: 25px 20px;
  }
  
  .about-stat-value {
    font-size: 18px;
  }
  
  .about-text {
    padding: 28px 20px;
  }
  
  .about-text h3 {
    font-size: 20px;
  }
  
  /* Responsible Gaming */
  .responsible-icon-large {
    font-size: 50px;
  }
  
  .responsible-intro h3 {
    font-size: 22px;
  }
  
  .responsible-intro p {
    font-size: 14px;
  }
  
  .responsible-tools h3,
  .responsible-signs h3,
  .responsible-help h3,
  .responsible-commitment h3 {
    font-size: 18px;
  }
  
  .tool-card {
    padding: 20px;
  }
  
  .tool-icon {
    font-size: 28px;
  }
  
  .tool-card h4 {
    font-size: 15px;
  }
  
  .signs-list {
    padding: 20px;
  }
  
  .signs-list li {
    font-size: 13px;
    padding-left: 25px;
  }
  
  .help-org {
    padding: 18px;
  }
  
  .cta-btn-secondary {
    padding: 14px 30px;
    font-size: 14px;
  }
  
  /* FAQ */
  .faq-categories {
    gap: 8px;
  }
  
  .faq-category {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 14px;
  }
  
  .faq-item.open .faq-answer {
    padding: 0 20px 20px;
  }
  
  .faq-answer p {
    font-size: 13px;
  }
  
  .faq-contact {
    padding: 30px 20px;
  }
  
  .faq-contact h3 {
    font-size: 18px;
  }
  
  .faq-contact-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .faq-contact-btn {
    justify-content: center;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .providers-section,
  .winners-section,
  .about-section,
  .responsible-section,
  .faq-section {
    padding: 40px 0;
  }
  
  .provider-logo {
    width: 44px;
    height: 44px;
  }
  
  .provider-logo-text {
    font-size: 10px;
  }
  
  .winners-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .winner-tab {
    text-align: center;
  }
  
  .live-win-item {
    padding: 10px 12px;
    gap: 10px;
  }
  
  .live-win-avatar {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .live-win-player {
    font-size: 13px;
  }
  
  .live-win-game {
    font-size: 11px;
  }
  
  .live-win-amount {
    font-size: 15px;
  }
  
  .winners-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .stat-card {
    padding: 16px 12px;
  }
  
  .stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .stat-value {
    font-size: 18px;
  }
  
  .about-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .about-feature-content h4 {
    font-size: 16px;
  }
  
  .about-stat {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .license-badges {
    flex-direction: column;
  }
  
  .license-badge {
    text-align: center;
  }
  
  .responsible-icon-large {
    font-size: 40px;
  }
  
  .responsible-intro h3 {
    font-size: 18px;
  }
  
  .tool-card {
    padding: 18px 15px;
  }
  
  .tool-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .tool-card h4 {
    font-size: 14px;
  }
  
  .tool-card p {
    font-size: 12px;
  }
  
  .faq-question {
    padding: 15px;
    font-size: 13px;
    gap: 10px;
  }
  
  .faq-question span:first-child {
    flex: 1;
  }
  
  .faq-icon {
    font-size: 20px;
    flex-shrink: 0;
  }
  
  .faq-item.open .faq-answer {
    padding: 0 15px 15px;
  }
  
  .faq-answer p {
    font-size: 12px;
  }
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.section-title .highlight {
  background: linear-gradient(135deg, #ffd700 0%, #f5c842 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: #a8a8c8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}


.why-choose-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #151528 50%, #0d0d1a 100%);
}

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

.feature-card {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 35px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.feature-desc {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
}

.why-choose-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.why-choose-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.why-choose-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.cta-container {
  text-align: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 55px;
  background: linear-gradient(180deg, #ffd700 0%, #f5c842 50%, #e4b034 100%);
  color: #1a1a2e;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.cta-subtext {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  color: #a8a8c8;
}


.how-to-start-section {
  padding: 70px 0;
  background: #0d0d1a;
}

.steps-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
}

.step-card {
  flex: 1;
  max-width: 350px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 20px;
  padding: 45px 30px 35px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-card.featured {
  background: linear-gradient(135deg, #2a1a4a 0%, #3a2a60 100%);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

.step-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700, #f5c842);
  color: #1a1a2e;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 34px;
  height: 34px;
  background: rgba(99, 102, 241, 0.2);
  border: 2px solid #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #6366f1;
}

.step-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.step-desc {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
  text-align: left;
}

.step-highlights span {
  font-size: 13px;
  color: #22c55e;
  padding-left: 5px;
}

.step-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #6366f1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
}

.step-btn:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.step-btn-outline {
  background: transparent;
  border: 2px solid #6366f1;
  color: #6366f1;
}

.step-btn-outline:hover {
  background: #6366f1;
  color: #fff;
}

.step-btn-gold {
  background: linear-gradient(180deg, #ffd700 0%, #f5c842 50%, #e4b034 100%);
  color: #1a1a2e;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.step-btn-gold:hover {
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  position: relative;
}

.connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2a2a4a, #6366f1, #2a2a4a);
}

.connector-arrow {
  position: absolute;
  color: #6366f1;
  font-size: 24px;
  font-weight: bold;
  animation: pulse-arrow 1.5s infinite;
}

@keyframes pulse-arrow {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
}

.how-to-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.how-to-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.how-to-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.how-to-text p:last-child {
  margin-bottom: 0;
}

.bonus-reminder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 25px 35px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
}

.bonus-reminder-icon {
  font-size: 45px;
}

.bonus-reminder-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bonus-reminder-title {
  font-size: 18px;
  font-weight: 700;
  color: #22c55e;
}

.bonus-reminder-desc {
  font-size: 14px;
  color: #a8a8c8;
}

.bonus-reminder-btn {
  padding: 14px 35px;
  background: #22c55e;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  white-space: nowrap;
}

.bonus-reminder-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}


.bonuses-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #12122a 50%, #0d0d1a 100%);
}

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

.bonus-card {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 20px;
  padding: 35px 25px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

.bonus-welcome::before { background: linear-gradient(90deg, #ffd700, #f5c842); }
.bonus-cashback::before { background: linear-gradient(90deg, #22c55e, #10b981); }
.bonus-reload::before { background: linear-gradient(90deg, #f97316, #fb923c); }
.bonus-spins::before { background: linear-gradient(90deg, #a855f7, #c084fc); }
.bonus-vip::before { background: linear-gradient(90deg, #ffd700, #fbbf24, #ffd700); }
.bonus-tournaments::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }

.bonus-ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  background: #ef4444;
  color: #fff;
  padding: 5px 40px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bonus-ribbon.ribbon-gold {
  background: linear-gradient(135deg, #ffd700, #f5c842);
  color: #1a1a2e;
}

.bonus-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.bonus-type {
  font-size: 13px;
  font-weight: 600;
  color: #8a8aa8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.bonus-value {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.bonus-value span {
  font-size: 16px;
  font-weight: 600;
  color: #a8a8c8;
}

.bonus-extra {
  font-size: 16px;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 18px;
}

.bonus-description {
  text-align: left;
  margin-bottom: 18px;
  padding: 0 5px;
}

.bonus-description p {
  font-size: 13px;
  color: #9898b8;
  line-height: 1.6;
}

.bonus-details {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  text-align: left;
}

.bonus-details li {
  font-size: 13px;
  color: #a8a8c8;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 22px;
}

.bonus-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.bonus-details li:last-child {
  border-bottom: none;
}

.bonus-details li strong {
  color: #d8d8f8;
}

.bonus-terms {
  font-size: 11px;
  color: #6a6a8a;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  line-height: 1.5;
}

.bonus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(180deg, #ffd700 0%, #f5c842 50%, #e4b034 100%);
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bonus-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.bonus-btn-green {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.bonus-btn-orange {
  background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.bonus-btn-purple {
  background: linear-gradient(180deg, #a855f7 0%, #9333ea 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.bonus-btn-gold {
  background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
  color: #1a1a2e;
}

.bonus-btn-blue {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.bonuses-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
}

.bonuses-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.bonuses-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.bonuses-footer {
  text-align: center;
}

.bonuses-note {
  font-size: 16px;
  color: #8a8aa8;
}

.bonuses-note a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.bonuses-note a:hover {
  color: #ffe44d;
}


.providers-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #12122a 50%, #0d0d1a 100%);
}

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

.provider-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.provider-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.provider-logo {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #ff6b35, #f7931a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.provider-logo-text {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.1;
}

.provider-evolution { background: linear-gradient(135deg, #c8102e, #e8324a); }
.provider-netent { background: linear-gradient(135deg, #78be20, #9edd33); }
.provider-playngo { background: linear-gradient(135deg, #0066cc, #0088ff); }
.provider-nolimit { background: linear-gradient(135deg, #1a1a2e, #2a2a4e); border: 1px solid #444; }
.provider-push { background: linear-gradient(135deg, #7b2d8e, #9b4db0); }
.provider-redtiger { background: linear-gradient(135deg, #d4213d, #f44058); }
.provider-hacksaw { background: linear-gradient(135deg, #00c4cc, #00e6ef); }
.provider-pgsoft { background: linear-gradient(135deg, #ffc107, #ffdb4d); }
.provider-pgsoft .provider-logo-text { color: #1a1a2e; }
.provider-relax { background: linear-gradient(135deg, #6c5ce7, #8e7cf3); }
.provider-bgaming { background: linear-gradient(135deg, #ff9500, #ffb347); }
.provider-wazdan { background: linear-gradient(135deg, #2ecc71, #54d98c); }
.provider-evoplay { background: linear-gradient(135deg, #3498db, #5dade2); }
.provider-thunderkick { background: linear-gradient(135deg, #e74c3c, #ec7063); }
.provider-quickspin { background: linear-gradient(135deg, #9b59b6, #b07cc6); }
.provider-plus { background: linear-gradient(135deg, #ffd700, #f5c842); }
.provider-plus .provider-logo-text { color: #1a1a2e; font-size: 16px; }

.provider-info {
  flex: 1;
  min-width: 0;
}

.provider-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.provider-games {
  font-size: 12px;
  color: #8a8aa8;
}

.provider-card.provider-more {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, #2a2a4a 0%, #3a3a5a 100%);
}

.provider-card.provider-more:hover {
  background: linear-gradient(135deg, #3a3a5a 0%, #4a4a6a 100%);
}

.providers-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.providers-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.providers-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

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

.providers-cta {
  text-align: center;
}


.winners-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #1a0a2e 50%, #0d0d1a 100%);
  overflow: hidden;
}

.winners-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.winner-tab {
  padding: 14px 28px;
  background: #1a1a3a;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  color: #a8a8c8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.winner-tab:hover {
  background: #252550;
  color: #fff;
}

.winner-tab.active {
  background: linear-gradient(135deg, #ffd700, #f5c842);
  border-color: transparent;
  color: #1a1a2e;
}

.winners-content {
  margin-bottom: 40px;
}

.winners-panel {
  display: none;
}

.winners-panel.active {
  display: block;
}

/* Live Wins Ticker */
.live-wins-container {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  max-height: 400px;
}

.live-wins-ticker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.live-wins-container:hover .live-wins-ticker {
  animation-play-state: paused;
}

.live-win-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.3s;
}

.live-win-item:hover {
  background: rgba(255, 215, 0, 0.1);
}

.live-win-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.live-win-info {
  flex: 1;
  min-width: 0;
}

.live-win-player {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.live-win-game {
  font-size: 12px;
  color: #8a8aa8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-win-amount {
  font-size: 18px;
  font-weight: 800;
  color: #22c55e;
  white-space: nowrap;
}

.live-win-amount.big-win {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.live-win-time {
  font-size: 11px;
  color: #6a6a8a;
  white-space: nowrap;
}

.live-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 13px;
  color: #8a8aa8;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Winners Grid (Today) */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.winner-card {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}

.winner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.winner-card.top-winner {
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #2a2a4a 0%, #3a2a5a 100%);
}

.winner-rank {
  font-size: 12px;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 10px;
}

.winner-card.top-winner .winner-rank {
  color: #ffd700;
}

.winner-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
}

.winner-card.top-winner .winner-avatar {
  background: linear-gradient(135deg, #ffd700, #f5c842);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.winner-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.winner-game {
  font-size: 12px;
  color: #8a8aa8;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-amount {
  font-size: 22px;
  font-weight: 800;
  color: #22c55e;
}

.winner-card.top-winner .winner-amount {
  color: #ffd700;
}

/* Winners Podium (Month) */
.winners-podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px;
}

.podium-item {
  text-align: center;
  transition: all 0.3s;
}

.podium-item:hover {
  transform: translateY(-5px);
}

.podium-item.first {
  order: 2;
}

.podium-item.second {
  order: 1;
}

.podium-item.third {
  order: 3;
}

.podium-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 15px;
  position: relative;
}

.podium-item.first .podium-avatar {
  width: 100px;
  height: 100px;
  font-size: 40px;
  background: linear-gradient(135deg, #ffd700, #f5c842);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.podium-item.second .podium-avatar {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}

.podium-item.third .podium-avatar {
  background: linear-gradient(135deg, #cd7f32, #e8a850);
}

.podium-crown {
  position: absolute;
  top: -20px;
  font-size: 28px;
}

.podium-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.podium-amount {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.podium-item.first .podium-amount {
  color: #ffd700;
  font-size: 28px;
}

.podium-item.second .podium-amount {
  color: #c0c0c0;
}

.podium-item.third .podium-amount {
  color: #cd7f32;
}

.podium-stand {
  width: 120px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
}

.podium-item.first .podium-stand {
  height: 100px;
  background: linear-gradient(180deg, #ffd700, #b8860b);
  width: 140px;
}

.podium-item.second .podium-stand {
  height: 70px;
  background: linear-gradient(180deg, #c0c0c0, #a0a0a0);
}

.podium-item.third .podium-stand {
  height: 50px;
  background: linear-gradient(180deg, #cd7f32, #a0642a);
}

/* Winners Stats */
.winners-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
}

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

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: #8a8aa8;
}

.winners-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.winners-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.winners-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

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

.winners-cta {
  text-align: center;
}

.cta-btn-pulse {
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 8px 50px rgba(255, 215, 0, 0.7); }
}

.about-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #151528 50%, #0d0d1a 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 50px;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-intro {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 35px;
}

.about-intro h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s;
}

.about-feature:hover {
  transform: translateX(5px);
  border-color: rgba(255, 215, 0, 0.3);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2a2a4a, #3a3a5a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.about-feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.about-feature-content p {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.7;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-stats-card {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 30px 25px;
}

.about-stats-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
}

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

.about-stat:last-child {
  border-bottom: none;
}

.about-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.about-stat-label {
  font-size: 13px;
  color: #8a8aa8;
}

.about-licenses {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 25px;
}

.about-licenses h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  text-align: center;
}

.license-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.license-badge {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.about-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
}

.about-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

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


.responsible-section {
  padding: 70px 0;
  background: #0d0d1a;
}

.responsible-content {
  max-width: 900px;
  margin: 0 auto;
}

.responsible-intro {
  text-align: center;
  margin-bottom: 50px;
}

.responsible-icon-large {
  font-size: 64px;
  margin-bottom: 20px;
}

.responsible-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.responsible-intro p {
  font-size: 16px;
  color: #a8a8c8;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.responsible-tools {
  margin-bottom: 50px;
}

.responsible-tools h3,
.responsible-signs h3,
.responsible-help h3,
.responsible-commitment h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.responsible-tools > p,
.responsible-signs > p,
.responsible-help > p,
.responsible-commitment > p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

.tool-card {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s;
}

.tool-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.tool-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.tool-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 13px;
  color: #a8a8c8;
  line-height: 1.6;
}

.responsible-signs {
  margin-bottom: 50px;
}

.signs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 25px 30px;
}

.signs-list li {
  font-size: 14px;
  color: #b8b8d8;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 28px;
}

.signs-list li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
  font-size: 14px;
}

.signs-list li:last-child {
  border-bottom: none;
}

.responsible-help {
  margin-bottom: 50px;
}

.help-organizations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.help-org {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.help-org:hover {
  border-color: #6366f1;
  transform: translateY(-3px);
}

.help-org-name {
  font-size: 16px;
  font-weight: 700;
  color: #6366f1;
}

.help-org-desc {
  font-size: 13px;
  color: #8a8aa8;
}

.responsible-commitment {
  margin-bottom: 40px;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.commitment-list li {
  font-size: 14px;
  color: #b8b8d8;
  padding: 10px 0;
  position: relative;
  padding-left: 28px;
}

.commitment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
  font-size: 16px;
}

.responsible-cta {
  text-align: center;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid #22c55e;
  color: #22c55e;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s;
}

.cta-btn-secondary:hover {
  background: #22c55e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}


.faq-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #12122a 50%, #0d0d1a 100%);
}

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

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.faq-category {
  padding: 12px 24px;
  background: #1a1a3a;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #a8a8c8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-category:hover {
  background: #252550;
  color: #fff;
}

.faq-category.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-color: transparent;
  color: #fff;
}

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

.faq-item {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: #6366f1;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 25px 25px;
}

.faq-answer p {
  font-size: 14px;
  color: #a8a8c8;
  line-height: 1.8;
}

.faq-contact {
  text-align: center;
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.faq-contact h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.faq-contact > p {
  font-size: 15px;
  color: #a8a8c8;
  margin-bottom: 25px;
}

.faq-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.faq-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #6366f1;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.faq-contact-btn:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.faq-contact-icon {
  font-size: 20px;
}

/* ============================================ */
/* SECTION 4: PAYMENT METHODS */
/* ============================================ */

.payment-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d1a 0%, #0f0f24 100%);
}

.payment-features {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.payment-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-feature-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1a1a3a, #252550);
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.payment-feature-text {
  display: flex;
  flex-direction: column;
}

.payment-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.payment-feature-desc {
  font-size: 13px;
  color: #8a8aa8;
}

.payment-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.payment-category {
  background: linear-gradient(135deg, #1a1a3a 0%, #252550 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.payment-category:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payment-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.payment-category-icon {
  font-size: 30px;
}

.payment-category-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex: 1;
}

.payment-category-badge {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.payment-category-badge.badge-popular {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.payment-category-desc {
  font-size: 13px;
  color: #9898b8;
  line-height: 1.6;
  margin-bottom: 18px;
}

.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.payment-method:hover {
  background: rgba(255, 255, 255, 0.05);
}

.payment-method-logo {
  width: 36px;
  height: 24px;
  background: linear-gradient(135deg, #f7931a, #ffb347);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

/* Crypto logos */
.payment-method-logo.crypto-btc { background: linear-gradient(135deg, #f7931a, #ffb347); }
.payment-method-logo.crypto-eth { background: linear-gradient(135deg, #627eea, #8c9eff); }
.payment-method-logo.crypto-sol { background: linear-gradient(135deg, #9945ff, #14f195); }
.payment-method-logo.crypto-usdt { background: linear-gradient(135deg, #26a17b, #50d9a0); }
.payment-method-logo.crypto-ltc { background: linear-gradient(135deg, #bfbbbb, #d3d3d3); color: #345d9d; }
.payment-method-logo.crypto-doge { background: linear-gradient(135deg, #c2a633, #e8d54a); color: #1a1a2e; }
.payment-method-logo.crypto-bnb { background: linear-gradient(135deg, #f3ba2f, #ffd93d); color: #1a1a2e; }
.payment-method-logo.crypto-ada { background: linear-gradient(135deg, #0033ad, #0052ff); }
.payment-method-logo.crypto-xrp { background: linear-gradient(135deg, #23292f, #3a4149); }
.payment-method-logo.crypto-trx { background: linear-gradient(135deg, #ff0013, #ff4d5a); }

/* Card logos */
.payment-method-logo.card-visa { background: linear-gradient(135deg, #1a1f71, #0056b3); font-size: 9px; }
.payment-method-logo.card-mc { background: linear-gradient(135deg, #eb001b, #ff5f00); }
.payment-method-logo.card-maestro { background: linear-gradient(135deg, #0099df, #6c7c8e); }

/* E-wallet logos */
.payment-method-logo.wallet-skrill { background: linear-gradient(135deg, #832c8e, #a855f7); }
.payment-method-logo.wallet-neteller { background: linear-gradient(135deg, #7ab800, #9edd00); color: #1a1a2e; }
.payment-method-logo.wallet-ecopayz { background: linear-gradient(135deg, #00a651, #39b54a); }
.payment-method-logo.wallet-mifinity { background: linear-gradient(135deg, #00bcd4, #00acc1); }
.payment-method-logo.wallet-jeton { background: linear-gradient(135deg, #ff6b00, #ff8c00); }
.payment-method-logo.wallet-sticpay { background: linear-gradient(135deg, #5c6bc0, #7986cb); }
.payment-method-logo.wallet-astropay { background: linear-gradient(135deg, #003366, #0066cc); }
.payment-method-logo.wallet-cashlib { background: linear-gradient(135deg, #ff1493, #ff69b4); }

/* Bank logos */
.payment-method-logo.bank-transfer { background: linear-gradient(135deg, #37474f, #546e7a); }
.payment-method-logo.bank-rapid { background: linear-gradient(135deg, #d32f2f, #f44336); }
.payment-method-logo.bank-paysafe { background: linear-gradient(135deg, #003087, #0070ba); }
.payment-method-logo.bank-neosurf { background: linear-gradient(135deg, #ff5722, #ff7043); }
.payment-method-logo.bank-flexepin { background: linear-gradient(135deg, #00796b, #26a69a); }

.payment-method-name {
  font-size: 13px;
  font-weight: 500;
  color: #c8c8e8;
}

.payment-category-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-category-info span {
  font-size: 12px;
  color: #6a6a8a;
}

.payment-category-info span:last-child {
  color: #22c55e;
  font-weight: 600;
}

.payment-text {
  background: linear-gradient(135deg, #1a1a3a 0%, #202050 100%);
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.payment-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.payment-text p {
  font-size: 15px;
  color: #b8b8d8;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.payment-cta {
  text-align: center;
}

.payment-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 55px;
  background: linear-gradient(180deg, #ffd700 0%, #f5c842 50%, #e4b034 100%);
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.payment-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.payment-cta-btn span:first-child {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-cta-bonus {
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  opacity: 0.85;
}


/* Tablet - 1100px */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet - 900px */
@media (max-width: 900px) {
  .section-title {
    font-size: 30px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  /* How to Start - Steps */
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .step-card {
    max-width: 450px;
    width: 100%;
  }
  
  .step-connector {
    width: 2px;
    height: 40px;
    flex-direction: row;
  }
  
  .connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #2a2a4a, #6366f1, #2a2a4a);
  }
  
  .connector-arrow {
    transform: rotate(90deg);
  }
  
  @keyframes pulse-arrow {
    0%, 100% { opacity: 0.5; transform: rotate(90deg) translateX(0); }
    50% { opacity: 1; transform: rotate(90deg) translateX(5px); }
  }
  
  /* Bonus Reminder */
  .bonus-reminder {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }
  
  /* Payment Features */
  .payment-features {
    gap: 25px;
  }
  
  .payment-feature {
    width: calc(50% - 15px);
  }
  
  /* Payment Categories */
  .payment-categories {
    grid-template-columns: 1fr;
  }
}

/* Mobile - 700px */
@media (max-width: 700px) {
  .why-choose-section,
  .how-to-start-section,
  .bonuses-section,
  .payment-section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .section-title {
    font-size: 26px;
    padding: 0 10px;
  }
  
  .section-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }
  
  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 28px 22px;
  }
  
  .feature-icon {
    font-size: 42px;
  }
  
  .feature-title {
    font-size: 18px;
  }
  
  .feature-desc {
    font-size: 13px;
  }
  
  /* Why Choose Text */
  .why-choose-text,
  .how-to-text,
  .bonuses-text,
  .payment-text {
    padding: 28px 22px;
    margin-bottom: 30px;
  }
  
  .why-choose-text h3,
  .how-to-text h3,
  .bonuses-text h3,
  .payment-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .why-choose-text p,
  .how-to-text p,
  .bonuses-text p,
  .payment-text p {
    font-size: 14px;
    line-height: 1.7;
  }
  
  /* CTA Button */
  .cta-btn {
    padding: 16px 40px;
    font-size: 15px;
  }
  
  .cta-subtext {
    font-size: 13px;
  }
  
  /* Steps */
  .step-card {
    padding: 40px 22px 30px;
  }
  
  .step-icon {
    font-size: 48px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-desc {
    font-size: 13px;
  }
  
  .step-highlights span {
    font-size: 12px;
  }
  
  /* Bonuses Grid */
  .bonuses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bonus-card {
    padding: 30px 20px 25px;
  }
  
  .bonus-icon {
    font-size: 44px;
  }
  
  .bonus-value {
    font-size: 34px;
  }
  
  .bonus-value span {
    font-size: 14px;
  }
  
  .bonus-extra {
    font-size: 14px;
  }
  
  .bonus-description p {
    font-size: 12px;
  }
  
  .bonus-details li {
    font-size: 12px;
    padding: 8px 0 8px 20px;
  }
  
  .bonus-terms {
    font-size: 10px;
    padding: 10px;
  }
  
  .bonus-btn {
    padding: 13px 20px;
    font-size: 14px;
  }
  
  .bonuses-note {
    font-size: 14px;
  }
  
  /* Payment Features */
  .payment-features {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  
  .payment-feature {
    width: 100%;
    max-width: 300px;
  }
  
  .payment-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  
  .payment-feature-title {
    font-size: 14px;
  }
  
  .payment-feature-desc {
    font-size: 12px;
  }
  
  /* Payment Categories */
  .payment-category {
    padding: 22px 18px;
  }
  
  .payment-category-header {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .payment-category-icon {
    font-size: 26px;
  }
  
  .payment-category-title {
    font-size: 16px;
    flex: auto;
    width: 100%;
    order: 2;
    margin-top: 5px;
  }
  
  .payment-category-badge {
    order: 1;
    font-size: 10px;
    padding: 4px 10px;
  }
  
  .payment-category-desc {
    font-size: 12px;
    margin-bottom: 15px;
  }
  
  .payment-methods-grid {
    gap: 8px;
  }
  
  .payment-method {
    padding: 8px 10px;
  }
  
  .payment-method-logo {
    width: 30px;
    height: 20px;
    font-size: 10px;
  }
  
  .payment-method-name {
    font-size: 11px;
  }
  
  .payment-category-info {
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .payment-category-info span {
    font-size: 11px;
  }
  
  /* Payment CTA */
  .payment-cta-btn {
    padding: 18px 35px;
  }
  
  .payment-cta-btn span:first-child {
    font-size: 15px;
  }
  
  .payment-cta-bonus {
    font-size: 12px;
  }
  
  /* Bonus Reminder */
  .bonus-reminder-icon {
    font-size: 38px;
  }
  
  .bonus-reminder-title {
    font-size: 16px;
  }
  
  .bonus-reminder-desc {
    font-size: 13px;
  }
  
  .bonus-reminder-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .why-choose-section,
  .how-to-start-section,
  .bonuses-section,
  .payment-section {
    padding: 40px 0;
  }
  
  .section-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .section-subtitle {
    font-size: 13px;
  }
  
  .feature-card {
    padding: 24px 18px;
  }
  
  .feature-icon {
    font-size: 38px;
    margin-bottom: 15px;
  }
  
  .feature-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
  
  .step-card {
    padding: 35px 18px 25px;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
    top: 15px;
    left: 15px;
  }
  
  .step-icon {
    font-size: 42px;
    margin-bottom: 15px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .bonus-card {
    padding: 28px 16px 22px;
  }
  
  .bonus-ribbon {
    font-size: 10px;
    padding: 4px 35px;
    top: 15px;
    right: -35px;
  }
  
  .bonus-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .bonus-value {
    font-size: 30px;
  }
  
  .cta-btn {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
  }
  
  .why-choose-text,
  .how-to-text,
  .bonuses-text,
  .payment-text {
    padding: 22px 16px;
  }
  
  .why-choose-text h3,
  .how-to-text h3,
  .bonuses-text h3,
  .payment-text h3 {
    font-size: 18px;
  }
  
  .why-choose-text p,
  .how-to-text p,
  .bonuses-text p,
  .payment-text p {
    font-size: 13px;
  }
  
  .payment-cta-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 25px;
  }
  
  .payment-cta-btn span:first-child {
    font-size: 14px;
    text-align: center;
  }
  
  .bonus-reminder {
    padding: 22px 18px;
  }
  
  .bonus-reminder-icon {
    font-size: 32px;
  }
  
  .bonus-reminder-title {
    font-size: 15px;
  }
  
  .bonus-reminder-desc {
    font-size: 12px;
  }
  
  .bonus-reminder-btn {
    width: 100%;
    text-align: center;
  }
}


.main-container {
  display: flex;
  position: relative;
}

/* Sticky Sidebar */
.sidebar {
  width: 60px;
  height: calc(100vh - 72px); /* Viewport height minus header */
  background: #1a232e;
  padding: 15px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid #252f3a;
  position: sticky;
  top: 72px; /* Header height */
  left: 0;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 50;
}

/* Custom scrollbar for sidebar */
.sidebar::-webkit-scrollbar {
  width: 4px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: #2a3a4a;
  border-radius: 2px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: #3a4a5a;
}

.sidebar-icons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.sidebar-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #252f3a;
}

.content {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  min-width: 0; /* Prevents flex item overflow */
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #151522;
  border-bottom: 1px solid #1f1f2e;
  position: sticky;
  top: 0;
  z-index: 101;
}


.sidebar-expanded {
  position: fixed;
  top: 72px; /* Header height */
  left: 0;
  width: 300px;
  height: calc(100vh - 72px);
  background: #0d0d1a;
  z-index: 100;
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  border-right: 1px solid #1f1f2e;
}

.sidebar-expanded.open {
  display: flex;
}

.overlay {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  display: none;
  backdrop-filter: blur(2px);
}

.overlay.open {
  display: block;
}


@media (max-width: 768px) {
  .sidebar {
    display: none; /* Hide on mobile */
  }
  
  .main-container {
    flex-direction: column;
  }
  
  .content {
    width: 100%;
  }
  
  /* Show mobile menu button */
  .menu-btn {
    display: flex;
  }
  
  .sidebar-expanded {
    width: 280px;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .sidebar {
    width: 54px;
    padding: 12px 5px;
  }
  
  .sidebar-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Large screens */
@media (min-width: 1400px) {
  .sidebar {
    width: 65px;
    padding: 18px 10px;
  }
  
  .sidebar-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
.sidebar-bottom {
  overflow: visible;
}

.sidebar {
  overflow: visible;
}

.sidebar-icon.lang-btn {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  left: 100%;
  bottom: -10px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.lang-dropdown-inner {
  min-width: 180px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.lang-dropdown-inner::before {
  content: '';
  position: absolute;
  left: -6px;
  bottom: 20px;
  width: 12px;
  height: 12px;
  background: #1a1a2e;
  border-left: 1px solid #2a2a4a;
  border-bottom: 1px solid #2a2a4a;
  transform: rotate(45deg);
}

.lang-btn:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #a8a8c8;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lang-option.active {
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
}

.lang-flag {
  font-size: 18px;
}
  