#cleverbetsBranding {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Georgia', serif;
  font-size: 11px;
  color: #ccc;
  background: linear-gradient(to right, #1a1a1a, #333);
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 0 3px rgba(255, 165, 0, 0.4);
  z-index: 1000;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

#cleverbetsBranding .aob {
  color: orange;
  font-style: italic;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(255,140,0,0.6);
  letter-spacing: 0.7px;
}

#cleverbetsBranding .cb {
  font-weight: bold;
  color: #ffd700;
}

  
.roulette-block * {
  user-select: none;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #222;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow: auto;
  height: 100%;
}

:fullscreen {
  overflow: hidden;
}

.roulette-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  position: relative;
}

.roulette-block {
  width: 1366px;
  height: 768px;
  background: linear-gradient(to bottom,  #78136b, #048299); /* base background */
  overflow: hidden;
  border: 4px solid white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  transform-origin: top left;
  box-sizing: border-box;
  overflow: hidden;
}

/* New horizontal layout */
.block-top {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  background-color: transparent;
}


.block-bottom {
  height: 60%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.table-container {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transform: scale(0.85);
  transform-origin: center;
  padding-left: 20px;
  box-sizing: border-box;
}

.side-container {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: white;
  font-size: 18px;
  font-style: normal;
  padding: 10px;
  box-sizing: border-box;
}

#fullscreenBtn {
  position: absolute;
  z-index: 1000;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  right: 10px;
  Top: 10px;
  /*background: white;*/
  color: black;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}

.undo-btn, .double-btn {
  width: 60px;
  padding: 10px;
  font-size: 16px;
  /*background: crimson;*/
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  background-color: #2196F3
}

.undo-btn:hover, .double-btn:hover {
  background-color: #7A12A1;
}

#undoBtnWrapper {
  position: relative;
}

.undo-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  color: white;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1000;
}

#undoBtnWrapper:hover .undo-tooltip {
  opacity: 1;
}

.highlight-sector {
  stroke: #ff8000;
  stroke-width: 3;
  fill: rgb(248, 171, 29) !important; /* Bright orange with transparency */
}


.profit-highlight-whack {
  background-color: rgba(255, 0, 0, 0.6) !important;
  box-shadow: 0 0 6px red;
  border: 2px solid red;
}

.profit-highlight-jackpot {
  background-color: rgba(255, 165, 0, 0.6) !important;
  box-shadow: 0 0 6px orange;
  border: 2px solid orange;
}

.profit-highlight-winner {
  background-color: rgba(0, 128, 255, 0.4) !important;
  box-shadow: 0 0 6px blue;
  border: 2px solid blue;
}

#netProfitGrid div {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.profit {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 13px;
  color: white;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: right;
  line-height: 1;
}

/* Coins */
.coin {
  position: absolute; /* ✅ Must be absolute */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  background: radial-gradient(circle, #ffffff 40%, #dddddd 85%);
  border: 3px solid var(--chip-color);
  box-shadow: 0 0 2px #000a;
  z-index: 5;
}

.coin.clickable {
  pointer-events: auto;
  cursor: grab;
}


#chipSelector {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin-left: 0px;
  margin-top: 4px !important;
}

.chip-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid transparent;
  position: relative;
  border: 3px solid var(--chip-color);
  box-shadow: 0 0 3px #000a;
  cursor: pointer;
  color: black;
}

.chip-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--chip-color) 0deg 20deg, #fff 20deg 40deg);
  z-index: -2;
}

.chip-btn::after {
  content: "";
  position: absolute;
  top: 6px;  /* adjust to control inner circle size */
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #f9f9f9 40%, #ccc 100%);
  z-index: -1;
}


.chip-btn.selected {
  border-color: white;
}

/* Custom colors */
.chip-btn[data-color="brown"]  { --chip-color: #8B4513; }
.chip-btn[data-color="gold"]   { --chip-color: #DAA520; }
.chip-btn[data-color="sky"]    { --chip-color: #00bcd4; }
.chip-btn[data-color="blue"]   { --chip-color: #4169e1; }
.chip-btn[data-color="gray"]   { --chip-color: #929597; }
.chip-btn[data-color="boldgray"]   { --chip-color: #484c4e; }
.chip-btn[data-color="red"]    { --chip-color: #b22222; }
.chip-btn[data-color="green"]  { --chip-color: #2e8b57; }
.chip-btn[data-color="black"]  { --chip-color: #000000; }
.chip-btn[data-color="pink"]   { --chip-color: #ff69b4; }
.chip-btn[data-color="violet"]  { --chip-color: #dd08ab; }


/* Table Layout */
.roulette-table {
  display: grid;
  grid-template-columns: 60px auto 60px;
  grid-template-rows: auto auto;
  gap: 4px;
  position: relative;
}

.zero {
  background-color: green;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row: 1 / span 3;
  font-size: 20px;
  height: 182px;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(12, 60px);
  grid-template-rows: repeat(3, 60px);
  gap: 2px;
}

.number-square {
  position: relative; /* ✅ Needed so .coin positions correctly */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background-color: #444;
  border: none;
}


.number-square.red { background-color: #c0392b; }
.number-square.black { background-color: #000; }

.column-bets {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2px;
}

.col-bet {
  background-color: #444;
  color: white;
  font-weight: bold;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border: 1px solid #ccc;
  border: none;
}

/* Wrapper for both rows */
.dozen-and-even-bets {
  display: grid;
  grid-template-columns: repeat(12, 60px); /* Match exact number grid columns */
  gap: 2px;
  margin-top: 6px;
}

.dozen-row {
  display: contents; /* Inherit grid layout from parent */
}

.even-bets-row {
  display: contents; /* Same here */
}

/* Each dozen spans 4 numbers */
.dozen-row .dozen:nth-child(1) { grid-column: 1 / span 4; }
.dozen-row .dozen:nth-child(2) { grid-column: 5 / span 4; }
.dozen-row .dozen:nth-child(3) { grid-column: 9 / span 4; }

/* Each even bet spans 2 numbers */
.even-bets-row .bet-square:nth-child(1) { grid-column: 1 / span 2; }
.even-bets-row .bet-square:nth-child(2) { grid-column: 3 / span 2; }
.even-bets-row .bet-square:nth-child(3) { grid-column: 5 / span 2; }
.even-bets-row .bet-square:nth-child(4) { grid-column: 7 / span 2; }
.even-bets-row .bet-square:nth-child(5) { grid-column: 9 / span 2; }
.even-bets-row .bet-square:nth-child(6) { grid-column: 11 / span 2; }

/* Styling for all cells */
.dozen-row > div,
.even-bets-row > div {
  background-color: #444;
  color: white;
  font-weight: bold;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.even-bets-row .red { background-color: #c0392b; }
.even-bets-row .black { background-color: #000; }




.bet-square {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
}

/* Stick & Corner spots */
.split-stick {
  position: absolute;
  background-color: #ffcc00;
  z-index: 4;
  cursor: pointer;
  pointer-events: auto;
}

.split-stick.horizontal {
  width: 60px;
  height: 8px;
  border-radius: 2px;
  background-color: rgba(255, 204, 0, 0);
}

.split-stick.vertical {
  width: 8px;
  height: 60px;
  border-radius: 2px;
  background-color: rgba(255, 204, 0, 0);
}

.corner-spot {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 204, 0, 0);
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
}

.street-spot {
  position: absolute;
  width: 36px;
  height: 8px;
  background-color: rgba(255, 204, 0, 0);
  border-radius: 3px;
  z-index: 6;
  cursor: pointer;
  pointer-events: auto;
}

.double-street-spot {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: rgba(255, 204, 0, 0);
  border-radius: 50%;
  z-index: 7;
  cursor: pointer;
  pointer-events: auto;
}

    /* Highlighting */
    .number-square.highlight,
    .bet-square.highlight {
      filter: brightness(20%);
      transition: filter 0.15s ease;
    }

    .number-square.blue-highlight,
    .zero.blue-highlight {
      background-color: #222;
      box-shadow: inset 0 0 0 4px #00aeff;
      color: #00aeff;
      font-weight: bold;
    }
    

    .wheel-result-ring {
      opacity: 0;
      animation: pulse-ring 1.2s ease-in-out forwards;
    }
    
    @keyframes pulse-ring {
      0% { opacity: 0; r: 10; stroke-width: 10; }
      50% { opacity: 1; r: 15; stroke-width: 6; }
      100% { opacity: 0; r: 20; stroke-width: 2; }
    }
    
    .circular-wheel-number {
      cursor: pointer;
    }
    
    @keyframes popWinLux {
        0% {
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
        }
        100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
    }


.coin.hover-coin {
  opacity: 1;                    /* Fully solid */
  border: 3px solid white;       /* White border */
  background: radial-gradient(circle, #ffffff 40%, #dddddd 85%);
  color: black;
  font-weight: bold;
  font-size: 12px;
  z-index: 9999;
  pointer-events: none;
}


btn.style.cssText {
  padding: 6px 10px;
  font-size: 13px;
  width: 100%;
  background: #222;
  color: white;
  border: 1px solid #555;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

#plusMinusWrapper {
  position: absolute;
  top: 585px;
  left: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 9999;
}



.triangle {
  width: 50px;
  height: 35px;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 136, 0);
  font-weight: bold;
  font-size: 23px;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transition: transform 0.2s ease;
}

.triangle.down {
  transform: rotate(180deg);
}


.draggable-bet.dragging {
  opacity: 0.4;
}

.drop-indicator {
  height: 4px;
  background: orange;
  margin: 2px 0;
  border-radius: 2px;
  animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

#scrollUpZone, #scrollDownZone {
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  z-index: 999;
}

#scrollUpZone {
  top: 0;
}
#scrollDownZone {
  bottom: 0;
}

/* preview on wheel sectors & labels (doesn't overwrite confirmed highlight) */
/* Hover preview: fill the entire pocket */
/* confirmed selection (click) */
#circularWheelSVG .pre-sector { 
  fill: rgba(255,166,0,0.35) !important;  /* beats inline fill */
  stroke: #ffa600; stroke-width: 2; filter: drop-shadow(0 0 3px rgba(255,166,0,0.9));
}
#circularWheelSVG .highlight-sector.pre-sector {
  fill: rgba(255,166,0,0.85) !important;  /* keep confirmed stronger */
}

.elite-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
    background: rgba(0, 0, 0, 0.9);
}

.elite-logo {
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.4);
}

.elite-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid rgba(255, 69, 0, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.elite-card:hover {
    border-color: rgba(255, 69, 0, 0.7);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 69, 0, 0.2),
        inset 0 0 25px rgba(255, 69, 0, 0.08);
}

.elite-button {
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    color: #000;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.elite-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(255, 69, 0, 0.5),
        0 0 40px rgba(255, 69, 0, 0.4);
}

.elite-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.elite-button:hover::after {
    left: 100%;
}

.glow-text {
    background: linear-gradient(90deg, #FF4500, #FF8C00, #FF4500);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s infinite linear;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.5), transparent);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF4500, #FF8C00);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #FF8C00;
}


 /* Custom Scrollbar for the Dropdown */
                        .overflow-y-auto::-webkit-scrollbar {
                            width: 6px;
                        }

                        .overflow-y-auto::-webkit-scrollbar-track {
                            background: rgba(0, 0, 0, 0.2);
                            border-radius: 10px;
                        }

                        .overflow-y-auto::-webkit-scrollbar-thumb {
                            background: linear-gradient(to bottom, #FF4500, #B8860B);
                            border-radius: 10px;
                        }


                         /* --- MOBILE NAVBAR RESPONSIVENESS --- */

/* --- MOBILE NAVBAR RESPONSIVENESS --- */

/* Hide desktop nav on mobile */
@media (max-width: 767px) {
    .elite-nav .hidden.md\\:flex {
        display: none !important;
    }
    
    .elite-button.hidden.md\\:block {
        display: none !important;
    }
    #secondsection{
      margin-top: 150px;
    }
}

@media (min-width: 767px) {
    #mobileMenuButton {
        display: none !important;
    }
}

/* Mobile navbar container adjustments */
@media (max-width: 767px) {
    .elite-nav {
        padding: 12px 16px !important;
    }
    
    .elite-logo {
        font-size: 1.25rem !important;
    }
    
    .elite-nav img {
        height: 50px !important;
    }
}

/* Mobile hamburger menu button styling */
#mobileMenuButton {
    color: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
}

#mobileMenuButton:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
}

/* Mobile dropdown menu - FIXED FOR SCROLLING */
.mobile-dropdown-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 5, 0, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 69, 0, 0.25);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow-y: auto !important; /* Force scrollable */
    -webkit-overflow-scrolling: touch !important; /* Smooth iOS scrolling */
    touch-action: pan-y !important; /* Allow vertical scrolling */
}

.mobile-dropdown-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(10, 5, 0, 0.98);
    z-index: 1;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.mobile-menu-logo h2 {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #FF8C00;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 69, 0, 0.1);
}

/* Main content area - FIXED FOR SCROLLING */
.mobile-menu-content {
    padding: 20px;
    min-height: calc(100vh - 80px);
    overflow-y: visible !important; /* Changed from auto to visible */
    height: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.mobile-nav-link {
    padding: 16px 20px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    touch-action: manipulation; /* Better touch handling */
}

.mobile-nav-link:hover {
    background: rgba(255, 69, 0, 0.1);
    color: #FF8C00;
    border-color: rgba(255, 69, 0, 0.3);
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
    color: #FF8C00;
    border-color: rgba(255, 69, 0, 0.4);
}

.mobile-nav-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover i {
    transform: translateX(4px);
}

/* Mobile dropdown submenu - FIXED FOR SCROLLING */
.mobile-submenu {
    padding-left: 20px;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-submenu.open {
    max-height: 400px;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
}

.mobile-submenu-link {
    padding: 12px 16px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 4px;
    border-left: 2px solid transparent;
    touch-action: manipulation;
}

.mobile-submenu-link:hover {
    color: #FF8C00;
    background: rgba(255, 69, 0, 0.05);
    border-left-color: #FF4500;
}

/* Mobile auth buttons */
.mobile-auth-section {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mobile-auth-button {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.mobile-auth-button.signup {
    background: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    color: #000;
}

.mobile-auth-button.signin {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile scrollbar styling */
.mobile-dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 69, 0, 0.1);
}

.mobile-dropdown-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #FF4500, #FF8C00);
    border-radius: 2px;
}

.mobile-submenu.open::-webkit-scrollbar {
    width: 3px;
}

.mobile-submenu.open::-webkit-scrollbar-thumb {
    background: rgba(255, 69, 0, 0.5);
}

/* Tablet responsive adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .elite-nav {
        padding: 16px 24px !important;
    }
    
    .elite-logo {
        font-size: 1.5rem !important;
    }
    
    .elite-nav nav {
        gap: 20px !important;
    }
    
    .elite-nav a {
        font-size: 0.875rem !important;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    .mobile-dropdown-menu {
        height: -webkit-fill-available;
    }
    
    .mobile-menu-content {
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }
}

/* Fix for Android Chrome */
@media (hover: none) and (pointer: coarse) {
    .mobile-dropdown-menu {
        overflow-y: scroll !important;
    }
}
   
