:root {
      /* Updated colors to match screenshot */
      --primary-color: #8fd22a;      --secondary-color: #1c68b4;
      --header-blue: #0d5092;
      --dark-blue: #0c3b69;
      --dark-blue-alt: #ccc8c8;
      --nav-dark: #000000;
      --light-text: #fff;
      --light-text-secondary: #b7d7f7;
      --border-radius: 4px;
      --header-height: 64px;
      --sidebar-width: 0px; /* Remove sidebar width */
      --special-green: #b6d94c;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
      body {
      margin: 0;
      padding: 0;
      background: var(--dark-blue);
      font-family: 'Segoe UI', Arial, sans-serif;
      font-size: 14px;
      color: var(--light-text);
      overflow-x: hidden;
      overflow-y: auto;
    }
    
    /* Main container & header - remove left margin */
    .main-container {
      margin-left: 0;
    }    .header {
      /* White background with subtle borders */
      background: white;
      height: var(--header-height);
      border-top: 1px solid rgba(200, 200, 200, 0.7);
      border-bottom: 1px solid rgba(200, 200, 200, 0.7);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      position: sticky;
      top: 0;
      z-index: 99;
    }
    
    .header .logo {
      height: 32px;
      margin-left: 0;
    }
    
    .header .logo img {
      height: 100%;
      width: auto;
      display: block;
    }
    
    .header .actions {
      display: flex;
      align-items: center;
    }
    
    .header .btn {
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
    }
    
    .header .btn.reg {
      background: var(--primary-color);
      color: #0a1e37;
      font-size: 0.9em;
      padding: 8px 16px;
      margin-right: 8px;
      text-transform: uppercase;
      border-radius: var(--border-radius);
    }
    
    .header .btn.login {
      background: #2673b5;
      color: var(--light-text);
      font-size: 0.9em;
      padding: 8px 16px;
      margin-right: 8px;
      text-transform: uppercase;
      border-radius: var(--border-radius);
    }
    
    .header .settings {
      display: flex;
      align-items: center;
      position: relative;
      margin-left: 10px;
    }
    
    .header .flag-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
    }
    
    .header .clock-btn {
      background: var(--dark-blue-alt);
      color: var(--light-text);
      border: none;
      border-radius: 4px;
      font-size: 0.9em;
      padding: 4px 10px;
      cursor: pointer;
    }      /* Navigation */    .navigation {
      background: linear-gradient(to right, #0f61ad, #0e5a9f); /* Slightly darker beginning, still lighter overall */
      min-height: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      border-top: 1px solid rgba(255, 255, 255, 0.5);
      overflow-x: auto;
      white-space: nowrap;
      width: 100%; /* Ensure full width */
    }
      .navigation-wrapper {
      display: flex;
      align-items: center;
      height: 34px;
      /* Remove padding to allow full width */
      padding: 0 24px; /* Add padding instead of using the sidebar offset */
      max-width: none; /* Ensure full width */
    }
    
    .navigation ul {
      display: flex;
      list-style: none;
      gap: 12px;
      /* Add padding to match sidebar offset */
      padding: 0; /* Remove the sidebar offset padding */
      width: 100%;
    }      .navigation li {
      color: #ffffff; /* Bright white for maximum contrast against dark background */
      padding: 0 12px;
      font-weight: 700; /* Make text bolder for better visibility */
      cursor: pointer;
      text-transform: uppercase;
      font-size: 0.9em; /* Increased from 0.8em for bigger text */
      line-height: 34px;
    }
    
    .navigation li.promo {
      color: var(--primary-color);
    }
    
    .navigation li.special {
      color: var(--special-green);
    }
      /* Navigation logo styling */
    .navigation .logo {
      display: flex;
      align-items: center;
      height: 26px;
      margin-right: 20px;
    }
    
    .navigation .logo img {
      height: 100%;
      width: auto;
      object-fit: contain;
    }
    
    /* Main content */
    .content-container {
      display: flex;
      max-width: 1400px; /* Full width since sidebar is gone */
      margin: 16px auto;
      padding: 0 16px;
      gap: 16px;
      flex-direction: row-reverse; /* Reverse the order to put registration on left */
    }
    
    /* Main content left column */
    .content-main {
      flex: 2; /* Take more space for the main content */
      min-width: 0;
    }
    
    /* Banner and slider */
    .main-banner {
      background: var(--dark-blue-alt);
      border-radius: var(--border-radius);
      overflow: hidden;
      position: relative;
      margin-bottom: 16px;
      display: flex;
      min-height: 250px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }
    
    .banner-content {
      flex: 1;
      padding: 32px;
      z-index: 1;
    }
    
    .banner-content h2 {
      font-size: 2em;
      margin-bottom: 12px;
      color: var(--light-text);
    }
    
    .banner-content p {
      color: var(--light-text-secondary);
      margin-bottom: 20px;
      max-width: 70%;
    }
    
    .banner-content .cta-button {
      background: var(--primary-color);
      color: var(--dark-blue);
      border: none;
      border-radius: var(--border-radius);
      padding: 12px 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.2s;
      text-transform: uppercase;
    }
    
    .banner-content .cta-button:hover {
      background: #7daa2f;
    }
    
    .banner-image {
      position: absolute;
      right: 0;
      bottom: 0;
      height: 100%;
      display: flex;
      align-items: flex-end;
    }
    
    .banner-image img {
      max-height: 100%;
      max-width: 320px;
    }
    
    .banner-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    
    .banner-dot {
      width: 12px;
      height: 12px;
      background: rgba(255,255,255,0.3);
      border-radius: 50%;
      cursor: pointer;
    }
    
    .banner-dot.active {
      background: #fff;
      border: 2px solid var(--primary-color);
    }
    
    /* Games grid */
    .games-grid {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 16px;
      margin-bottom: 16px;
      scrollbar-width: thin;
      scrollbar-color: var(--secondary-color) var(--dark-blue);
    }
    
    .game-card {
      flex: 0 0 auto;
      width: 180px;
      background: var(--dark-blue-alt);
      border-radius: var(--border-radius);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 0;
      border: 2px solid var(--dark-blue-alt);
    }
    
    .game-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary-color);
    }
    
    .game-card img {
      width: 160px;
      height: 80px;
      object-fit: cover;
      border-radius: 6px;
      margin-bottom: 8px;
    }
    
    .game-card-title {
      color: var(--light-text);
      font-weight: 500;
      text-align: center;
      font-size: 0.9em;
      padding: 0 10px 10px;
    }
    
    /* News ticker */
    .news-ticker {
      background: var(--secondary-color);
      border-radius: var(--border-radius);
      height: 40px;
      margin-bottom: 16px;
      overflow: hidden;
      position: relative;
    }
    
    .ticker-content {
      position: absolute;
      white-space: nowrap;
      will-change: transform;
      animation: ticker 30s linear infinite;
      display: flex;
      align-items: center;
      height: 100%;
    }
    
    .ticker-item {
      display: inline-flex;
      align-items: center;
      padding: 0 15px;
    }
    
    .ticker-separator {
      margin: 0 5px;
      color: var(--light-text);
    }
    
    @keyframes ticker {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }
    
    /* Matches bar */
    .matches-bar {
      background: var(--dark-gray);
      border-radius: var(--border-radius);
      padding: 12px 16px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      overflow-x: auto;
      white-space: nowrap;
    }
    
    .matches-bar-item {
      margin-right: 16px;
      cursor: pointer;
    }
    
    .matches-bar-item:hover {
      color: var(--primary-color);
    }
    
    .matches-search {
      margin-left: auto;
      background: var(--dark-blue-alt);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      color: var(--light-text);
      padding: 6px 12px;
      min-width: 200px;
    }
    
    /* Matches table */
    .matches-table {
      background: var(--dark-blue-alt);
      border-radius: var(--border-radius);
      overflow: hidden;
      margin-bottom: 32px;
    }
    
    .matches-table-header {
      display: flex;
      background: var(--dark-gray);
      padding: 12px 16px;
      font-weight: 500;
    }
    
    .matches-table-cell {
      flex: 1;
    }
    
    .matches-table-cell.narrow {
      flex: 0 0 80px;
      text-align: center;
    }
    
    .matches-table-row {
      display: flex;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .matches-table-row:hover {
      background: rgba(255,255,255,0.05);
    }
    
    .matches-table-row .team {
      font-weight: 500;
    }
    
    .matches-table-row .time {
      color: var(--light-text-secondary);
      font-size: 0.9em;
    }
    
    .matches-table-row .odds {
      display: flex;
      gap: 8px;
    }
    
    .matches-table-row .odd-button {
      background: rgba(255,255,255,0.1);
      border: none;
      border-radius: 4px;
      color: var(--light-text);
      padding: 6px 12px;
      cursor: pointer;
      font-weight: 500;
    }
    
    .matches-table-row .odd-button:hover {
      background: var(--secondary-color);
    }
    
    /* Registration sidebar - move to left */
    .sidebar-right {
      width: 320px; /* Slightly narrower to fit better on left */
      flex-shrink: 0;
    }
    
    .registration-panel {
      background: var(--dark-blue-alt);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    }
    
    .registration-header {
      background: var(--dark-blue-alt);
      padding: 16px 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--light-text);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .registration-header .collapse {
      font-size: 0.8em;
      color: var(--light-text-secondary);
      cursor: pointer;
    }
    
    .registration-tabs {
      display: flex;
      gap: 8px;
      padding: 16px 20px 0;
    }
    
    .registration-tab {
      background: var(--dark-blue);
      color: var(--light-text);
      border: none;
      border-radius: 6px 6px 0 0;
      padding: 10px 16px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s;
    }
    
    .registration-tab.active {
      background: #fff;
      color: var(--dark-blue);
      border-bottom: 2px solid var(--primary-color);
    }
    
    .registration-form {
      padding: 16px 20px;
    }
    
    .registration-form select,
    .registration-form input {
      width: 100%;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: var(--border-radius);
      padding: 12px;
      margin-bottom: 12px;
      font-size: 1em;
    }
    
    .registration-form button {
      width: 100%;
      background: var(--primary-color);
      color: var(--dark-blue);
      border: none;
      border-radius: var(--border-radius);
      padding: 14px;
      font-size: 1.1em;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s;
    }
    
    .registration-form button:hover {
      background: #7daa2f;
    }
    
    .registration-terms {
      color: var(--light-text-secondary);
      font-size: 0.8em;
      margin-top: 12px;
      line-height: 1.4;
    }
    
    .registration-terms a {
      color: var(--primary-color);
      text-decoration: none;
    }
    
    .bonus-info {
      background: #e6f7d9;
      color: var(--dark-blue);
      padding: 10px;
      text-align: center;
      margin: 16px 20px;
      border-radius: var(--border-radius);
      font-weight: bold;
    }
    
    /* Mobile styles */
    @media (max-width: 768px) {
      .main-container {
        margin-left: 0; /* Remove any margin since sidebar is gone */
      }
      
      .content-container {
        flex-direction: column;
        padding: 8px;
      }
      
      /* Hide the registration panel in mobile view */
      .sidebar-right {
        display: none;
      }
      
      .header {
        display: none !important;
      }
      
      .header {
        padding: 0 12px;
      }
      
      .header .logo {
        height: 28px;
      }
      
      .navigation-wrapper {
        padding: 0 12px;
      }
      
      .navigation ul {
        gap: 8px;
      }
      
      .navigation li {
        padding: 0 8px;
        font-size: 0.8em;
      }
      
      .banner-content {
        padding: 20px 16px;
      }
      
      .banner-content h2 {
        font-size: 1.6em;
      }
      
      .banner-content p {
        max-width: 90%;
      }
      
      .banner-image img {
        max-width: 180px;
      }
      
      /* Fixed vertical reg button */
      .btn.reg {
        position: fixed;
        top: 180px;
        right: 0;
        z-index: 90;
        height: 180px;
        width: 40px;
        border-radius: 8px 0 0 8px;
        writing-mode: vertical-lr;
        transform: rotate(180deg);
      }
      
      /* Fixed vertical betslip button */
      .bet-slip-btn {
        position: fixed;
        top: 370px;
        right: 0;
        z-index: 90;
        height: 120px;
        width: 40px;
        background: var(--secondary-color);
        color: var(--light-text);
        font-weight: bold;
        text-align: center;
        border-radius: 8px 0 0 8px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        writing-mode: vertical-lr;
        transform: rotate(180deg);
      }
    }
    
    @media (max-width: 480px) {
      .game-card {
        width: 140px;
      }
      
      .game-card img {
        width: 120px;
        height: 70px;
      }
    }
    /* Responsive styles for slider */
    @media (max-width: 768px) {
      .content-main {
        padding: 0 !important;
      }
      .banner-image img {
        object-fit: cover !important;
      }
      .banner-dots {
        width: 90px !important;
        bottom: 10px !important;
      }
      .banner-dot {
        width: 20px !important;
        height: 6px !important;
        margin: 0 3px !important;
      }
      /* Ensure registration panel is hidden on mobile */
      .sidebar-right,
      .registration-panel {
        display: none !important; /* Use !important to override inline styles */
      }
      /* Hide balance display, PC button, app button (QR code), clock container, and settings icon on mobile */
      .balance-display,
      .device-options button:nth-child(1),
      .device-options button:nth-child(2),
      #clock-container,
      #settings-container,
      #settings-dropdown,
      #timezones-dropdown,
      .actions > div:first-child /* First div in actions (grid icon) */ {
        display: none !important;
      }
      
      /* Keep language selector visible */
      .actions > div:last-child {
        display: flex !important;
      }
      
      /* Ensure the registration button is always visible in the header */
      .btn.reg {
        display: flex !important;
      }
      /* Add a fixed registration button for mobile */
      .mobile-register-btn {
        display: flex !important;
      }
    }
    @media (max-width: 480px) {
      .banner-dots {
        width: 75px !important;
        bottom: 8px !important;
      }
      .banner-dot {
        width: 16px !important;
        height: 5px !important;
        margin: 0 2px !important;
      }
    }
    
    /* Style for header registration button on mobile */
    @media (max-width: 768px) {
      .btn.reg {
        min-width: 40px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
      }
      
      /* Hide button text on smallest screens, show only on hover */
      @media (max-width: 480px) {
        .btn.reg .button-text {
          display: none;
        }
        
        .btn.reg:hover .button-text {
          display: inline;
        }
        
        .btn.reg:after {
          content: "REG";
          display: inline;
        }
        
        .btn.reg:hover:after {
          display: none;
        }
      }
    }
      /* Update device buttons to use lighter color */
    .device-options button, 
    .actions > div,
    #settings-container,
    #clock-container {
      background: #1c5a97 !important;
      border-right: 1px solid rgba(255, 255, 255, 0.4) !important;
    }
    
    .actions > button.btn.login {
      background: #0b5eb1 !important;
      border-left: 1px solid rgba(255, 255, 255, 0.4) !important;
    }
    
    /* Mobile navigation drawer styles */
    @media (max-width: 768px) {
      .navigation {
        background: #fff !important;
        color: #333 !important;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        position: relative;
        z-index: 1000;
      }
      .navigation-wrapper, .navigation ul {
        display: none !important;
      }
      .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        background: #fff;
        border: none;
        width: 100%;
        height: 40px;
        padding: 0 15px;
        font-size: 1.2em;
        color: #333;
        box-shadow: 0 2px 4px rgba(0,0,0,0.03);
      }
      .mobile-nav-drawer {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 8px rgba(0,0,0,0.15);
        z-index: 2000;
        padding: 20px 0 0 0;
        overflow-y: auto;
        transition: transform 0.3s ease;
        transform: translateX(100%);
      }
      .mobile-nav-drawer.open {
        display: block;
        transform: translateX(0);
      }
      .mobile-nav-drawer ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .mobile-nav-drawer li {
        padding: 15px 25px;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
        font-weight: bold;
        font-size: 1.1em;
        cursor: pointer;
      }
      .mobile-nav-drawer .promo, .mobile-nav-drawer .special {
        color: #668a28;
      }
    }