:root {--accent-gold: #2c2801;--primary-gold: #6b6103;--dark-gold: #363101;--light-gold: #ad9c04;--outline: #ffe600;--gold: #e9c704;}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.left, .middle, .right {
  float: left;
  height: 100vh;
}
.left {
  width: 27%;
  background: var(--accent-gold);
}
.right {
  width: 27%;
  background: var(--accent-gold);
}






.middle {
    position: relative;
    width: 46%;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.middle .topbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, var(--primary-gold), var(--dark-gold));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  z-index: 1000;
  box-sizing: border-box;
  color: #fff;
}
.logo-area {
    display: flex;align-items: center;margin-left: 7px;
}
.action-buttons {
    display: flex;align-items: center;gap: 10px;
}
.btn {
    border: none; font-size: 15px; font-weight: 600; padding: 6px 16px; border-radius: 25px; cursor: pointer; position: relative; transition: all 0.2s ease-in-out;
}
.deposit-btn { 
    background: var(--gold); color: #222;
}
.deposit-btn:hover {
    transform: scale(1.05); background: var(--primary-gold); position: relative; color: #fff; border-top: 2px solid var(--gold); border-right: 1px solid var(--gold); 
}
.deposit-btn .bonus {
    position: absolute; top: -8px; right: -12px; background: #ff3030; color: #fff; font-size: 11px; font-weight: 700; padding: 1px 5px; border-radius: 10px;
}
.withdraw-btn {
    background: var(--primary-gold); color: #000; border-top: 2px solid var(--gold); border-right: 1px solid var(--gold); 
}
.withdraw-btn:hover {transform: scale(1.05);background: var(--outline);color: #000;}
.withdraw-btn .bonus {position: absolute;top: -8px;right: -12px;background: #ff3030; color: #fff;font-size: 11px;font-weight: 700;padding: 1px 5px; border-radius: 10px;}






.right .header-bar {
    position: sticky;
    display: flex;
    width: 100%;
    top: 40;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--accent-gold);
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
}

.wallet-box {
    top: 3px;
    bottom: 3px;
    display: flex;
    height: 30px;
    margin-left: 1px;
    margin-right: 75px;
    align-items: center;
    background: #222222;
    border-radius: 25px;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.wallet-icon img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 3px;
    margin-top: 0px;
    border: 2px solid var(--gold);
}

.wallet-amount {
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
}

.refresh-btn {
    width: 22px;
    height: 22px;
    background: #000;
    color: var(--outline);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.user-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0px;
    border-top: 2px solid var(--outline);
    padding: 0;
    position: relative;
    min-width: 240px;
}

.user-left {
    padding-top: 3px;
    padding-bottom: 3px;
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    margin-right: 5px;
}

.user-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    margin-right: 20px;
}

.user-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--outline);
}

.dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--outline);
    font-size: 14px;
    cursor: pointer;
    padding-right: 4px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 38px;
    right: 0;
    background: var(--primary-gold);
    border-radius: 6px;
    overflow: hidden;
    min-width: 200px;
    z-index: 3001;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.dropdown-menu a {
    display: block;
    padding: 6px 12px;
    color: #f8e5af;
    text-decoration: none;
    font-size: 12px;
}

.dropdown-menu a:hover {
    background: var(--light-green);
}

.dropdown.open .dropdown-menu {
    display: block;
}






.feature-bar {
    position: sticky;
    display: flex;
    top: 60;
    background: linear-gradient(to top, var(--light-gold), var(--primary-gold));
    align-items: center;
    padding: 5px;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
}
.feature-bar::-webkit-scrollbar { display: none; }
.feature-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.feature-item {
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 87px;
    height: 87px;
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    border-radius: 8px;
    border-top: 2px solid var(--outline);
    border-right: 1px solid var(--outline);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 3px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}
.feature-item:hover {
    transform: scale(1.08);
}
.icon {
    font-size: 25px;
    color: #fff;
    margin-bottom: 3px;
}
.label {
    font-size: 12px;
    font-weight: 600;
    background: rgb(69, 121, 2);
    color: #fff;
    padding: 2 5px;
    border-radius: 6px;
    text-align: center;
    line-height: 12px;
}
.label.red { background: #bb0303; }
.label.blue { background: #0d8302; }







/* Category Navigation */
.category-nav {
    padding-top: 5px;
    padding-bottom: 5px;
    position: sticky;
    top: 160px;
    z-index: 999;
}

a.category-box {
    background: white;
    text-align: center;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-gold);
    gap: 8px;
    margin-right:5px;
}

.category-boxx {
    width: 100px;
    text-align: center;
    padding: 10px;
    margin-right: 5px;
    background: linear-gradient(to top, var(--primary-gold), var(--light-gold));
    border-top: 2px solid var(--outline);
    border-right: 1px solid var(--outline);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
}

a.category-box.active {
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    border-top: 2px solid var(--outline);
    border-right: 1px solid var(--outline);
    color: white;
}

.category-icon {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-gold);
}

.category-box.active .category-icon {
    color: white;
}

.category-name {
    font-size: 13px;
    font-weight: 500;
}








.ua-carousel-wrap {
    padding-top: 5px;
    padding-bottom: 5px;
    position: sticky;
    top: 223px;
    z-index: 999;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: block;
}

.ua-carousel-wrap::-webkit-scrollbar {
    display: none;
}

/* ✅ Individual carousel item */
.ua-carousel-item {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-right: 1.6px;
    border-radius: 10px;
    background: linear-gradient(to bottom, var(--light-gold), var(--accent-gold));
    border-top: 3px solid var(--outline);
    border-right: 2px solid var(--outline);
    color: #fff;
    font-size: 9px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.ua-carousel-item:hover {
    transform: scale(1.08);
}

.ua-carousel-icon {
    font-size: 20px;
}

.ua-carousel-label {
    margin-top: 2px;
    font-size: 8px;
    opacity: 0.9;
}












.tabs-container {
    width: 100%;
    margin-top: 10px;
    border-radius: 0px;
    overflow: auto;
}

.navigation-tabs {
    display: flex;
    padding: 0;
    border-bottom: 1px solid var(--light-gold);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.navigation-tabs::-webkit-scrollbar {
    display: none;
}

.nav-selector {
    padding: 12px 16px;
    background: linear-gradient(to top, var(--light-gold), var(--dark-gold));
    border: none;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-right: 5px;
    outline: none;
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-selector.active-tab {
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    border-top: 2px solid var(--outline);
    border-right: 1px solid var(--outline);
    color: var(--gold);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.content-area {
    padding: 10px;
}

.content-section {
    display: none;
    animation: fadeIn 0.6s ease;
}

.content-section.visible {
    display: block;
}

.match-card {
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    border-top: 2px solid var(--outline);
    color: #fff;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.league {
    font-weight: 400;
    color: var(--accent-gold);
    font-size: 0.7em;
}

.match-time {
    width: 100%;
    color: #000;
    font-size: 0.5em;
    background: var(--gold);
    padding: 5px 10px;
    border-radius: 12px;
}

.teams {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.team {
    text-align: center;
    background: var(--dark-gold);
    border-radius: 10px;
    width: 45%;
}

.team-name {
    margin-bottom: 5px;
    font-size: 0.8em;
}

.team-logo {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    font-size: 1.5em;
    font-weight: 600;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score {
    width: 10%;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.odds {
    display: flex;
    justify-content: space-around;
    margin-top: 1px;
    padding-top: 5px;
}

.odd-btn {
    padding: 5px;
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    color: white;
    border-top: 2px solid var(--outline);
    border-bottom: 2px solid var(--outline);
    border-radius: 10px;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 90px;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.25);
}

.odd-btn.selected {
    background: red;
    color: white;
    position: relative;
}

.odd-btn.selected::after {
    content: "";
    width: 10px;
    height: 10px;
    background: rgb(134, 2, 2);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    right: 5px;
}

.nodd-btn {
    padding: 5px 10px;
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    color: white;
    border-top: 2px solid var(--outline);
    border-bottom: 2px solid var(--outline);
    border-radius: 12px;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 90px;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.25);
}

.live-badge {
    background: linear-gradient(to right, #f72585, #b5179e);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
}

.live-badge-upcoming {
    background: linear-gradient(to bottom, var(--light-gold), var(--primary-gold));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
}

.live-badge-check {
    background: linear-gradient(to bottom, var(--light-gold), var(--primary-gold));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
}

.live-badge-trash {
    background: red;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    background: #f9fafb;
    padding: 15px;
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-weight: 800;
    font-size: 1.4rem;
    color: #3a0ca3;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}


.tabs-container .category-box {
    border: 1px solid var(--light-gold);
    margin-right: 2px;
}

.quantity-selector {
    margin-bottom: 10px;
}

.quantity-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
    color: #636e72;
}

.quantity-controls {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity-btn {
    background: red;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.quantity-input {
    width: 100px;
    height: 30px;
    margin: 0 5px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    border: 2px solid red;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease;
}

.quantity-input:focus {
    border-color: #6c5ce7;
}

.preset-amounts {
    margin-bottom: 10px;
}

.preset-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.preset-btn {
    background: #f5f5f5;
    border: 2px solid red;
    border-radius: 12px;
    padding: 5px;
    font-size: 14px;
    font-weight: 300;
    color: #2d3436;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.preset-btn.active {
    background: #6c5ce7;
    color: white;
    border-color: #6c5ce7;
}













.middle .bottom-nav {
    background: linear-gradient(to top, var(--primary-gold), var(--light-gold));
    border-radius: 10px 10px 0 0;
    position: fixed;
    width: 46%;
    left: 27%;
    bottom: 0;
    height: 100px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}
.nav-item {
    display: flex;
    bottom: 25;
    flex-direction: column;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 8px;
}
.bottom-nav .nav-item {
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    border-top: 2px solid var(--gold, #ffd700);
    border-right: 1px solid var(--gold, #ffd700);
    border-radius: 10px;
    width: 90px;
    height: 90px;
    justify-content: center;
}
.bottom-nav .nav-item:hover {
    border-top: 4px solid var(--gold, #ffd700);
    border-right: 2px solid var(--gold, #ffd700);
    border-radius: 50px;
    margin-top: -10px;
}
.slip_box {
    position: relative;
    top: -20px;
    z-index: 1000;
    text-align: center;
}
.nav-item i {
    font-size: 18px;
    margin-bottom: 5px;
}
.nav-item span {
    font-size: 11px;
    text-align: center;
}














/* Left Sidebar */
.sidebar {
    position: fixed;
    top: 1px;
    left: 0px;
    right: 20px;
    width: 26%;
    height: calc(100% - 1px);
    background: linear-gradient(to left, var(--light-gold), var(--accent-gold));
    border-right: 2px solid var(--outline);
    border-radius: 25px;
    transition: all 0.3s;
    padding: 20px;
    color: white;
    overflow-y: auto;
}
.sidebar.open {
    left: 0;
}
.sidebar-item {
    padding: 8px;
    margin-bottom: 5px;
    border-bottom: 2px solid var(--light-gold);
    border-left: 1px solid var(--light-gold);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}
.sidebar-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
/* Right Sidebar */
.right .sidebarr {
    position: fixed;
    top: 1px;
    left: 74%;
    right: 0px;
    width: 26%;
    height: calc(100% - 1px);
    background: linear-gradient(to right, var(--light-gold), var(--accent-gold));
    border-left: 2px solid var(--outline);
    border-radius: 25px;
    transition: all 0.3s;
    padding: 20px;
    color: white;
    
    overflow-y: auto;
}
.sidebarr.open {
    left: 0;
}
.sidebarr-item {
    padding: 8px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}
















/* Login Area Styles */
.login-area {
    padding: 20px;
    margin-top: 20px;
    margin-left: 25%;
    max-width: 400px;
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    border-top: 2px solid var(--outline);
    border-right: 1px solid var(--outline);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.login-title {
    text-align: center; color: #fff; margin-bottom: 20px; font-weight: 600; 
}
.login-form {
    display: flex; flex-direction: column; gap: 15px; 
}
.input-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gold);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--dark-gold);
    color: var(--light-gold);
}

.select-input {
    padding-right: .5rem;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--light-gold);
    color: #fff;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(10, 93, 0, 0.1);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.login-btn {
    background: linear-gradient(to top, var(--light-gold), var(--dark-gold));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.login-btn:hover {
    background: linear-gradient(to top, var(--light-gold), var(--dark-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 93, 0, 0.2);
}

.country-code-select {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 80px;
    border: none;
    border-right: 1px solid #ddd;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 0 10px;
    background: #f9f9f9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    z-index: 1;
}

.country-code-wrapper {
    position: relative;
}

.country-code-wrapper .form-input {
    padding-left: 90px;
}

.country-code-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--dark-gold);
    z-index: 2;
}

.email-input-container {
    display: none;
}

/* Toggle animation */
.toggle-fade {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.iti { width: 100%; }
.iti input {
    width: 100%; padding: 10px 12px 10px 50px; border: 1px solid var(--outline); border-radius: 8px; font-size: 16px; outline: none;
}
.iti input:focus {
    border-color: var(--outline); box-shadow: 0 0 5px rgba(212, 160, 23, 0.3);
}
.iti__country-list {
    position: absolute;
    top: 403px;
    left: 39%;
    right: 38px;
    width: 22%;
    margin-left: 5px;
    max-height: 500px;
    overflow-y: auto;
    background: var(--primary-gold);
    z-index: 9999;
    box-sizing: border-box;
    padding: 8px 0;
}
.iti__search-input {
    display:none;
}
.iti__search-input:focus {
    border-color: #d4a017;
    box-shadow: 0 0 4px rgba(212, 160, 23, 0.3);
    outline: none;
}
.iti__country-list::-webkit-scrollbar {
    width: 6px;
}
.iti__country-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

















.profile-container {
    max-width: 1200px;
    margin: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-header {
    background: linear-gradient(to right, var(--dark-gold), var(--primary-gold));
    padding: 10px;
    color: white;
    position: relative;
}

.profile-image-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid white;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: white;
}

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

.profile-body {
    padding: 10px;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 20px 0 5px;
    color: #fff;
}

.profile-title {
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    margin: 25px 0;
}

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

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 14px;
    color: #757575;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.profile-menu li {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    border-left: 4px solid transparent;
}

.profile-menu li i {
    margin-right: 12px;
    color: var(--primary-gold);
    width: 20px;
    text-align: center;
    font-size: 18px;
}

.profile-menu li:hover {
    background-color: var(--light-gold);
    padding-left: 25px;
    color: var(--dark-gold);
}

.profile-menu li.active {
    background-color: var(--light-gold);
    color: var(--dark-gold);
    font-weight: 600;
    border-left: 4px solid var(--dark-gold);
}


















.tab-content {
    display: none;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}
.tab-content.active {display: block;}
.info-item {display: flex; padding: 5px 0;border-bottom: 1px dashed #e0e0e0;}
.info-label {width: 100%;font-weight: 600; color: var(--dark-gold);}
.skill-item {margin-bottom: 10px;}
.skill-header {display: flex;justify-content: space-between;margin-bottom: 8px;}
.progress {height: 12px;border-radius: 10px;background-color: #e0e0e0;}

.progress-bar {
    border-radius: 10px;
}

.activity-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
    padding-left: 35px;
}

.activity-item:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--light-gold);
}

.activity-item:last-child:before {
    display: none;
}

.activity-icon {
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 2;
}

.activity-content {
    flex: 1;
}

.activity-time {
    font-size: 12px;
    color: #757575;
    margin-top: 5px;
}

.btn-edit {
    background: linear-gradient(to right, var(--dark-gold), var(--primary-gold));
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
    width: 200px;
}

.btn-edit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4);
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gold);
    color: var(--dark-gold);
    margin: 0 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--dark-gold);
    color: white;
    transform: translateY(-3px);
}

.badge-premium {
    background: linear-gradient(to right, var(--primary-gold), var(--dark-gold));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.section-title {
    color: var(--dark-gold);
    border-bottom: 2px solid var(--light-gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}


















.gateway-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px;
}

.gateway-box {
    flex: 1 1 calc(25% - 20px);
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.gateway-box:hover {
    transform: translateY(-3px);
    background: #f8d1d1;
}







/* Popup Modal */
.modal {
    position: flex;
    left: 27%;
    right: 0;
    bottom: 70;
    width: 46%;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
    z-index: 1000;
}

.modal-content {
    bottom: 0;
    width: 100%;
    border-radius: 20px;
    padding: 25px;
    transform: translateY(100%);
    animation: slideUp 0.4s ease forwards;
}

.close-btn {
    width: 40px;
    height: 40px;
    line-height: 15px;
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 20px;
    font-weight: bold;
    background: var(--primary-gold);
    padding: 10px;
    border-radius: 10px;
    border: none;
    text-align: center;
    color: var(--gold);
    cursor: pointer;
    transition: 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Optional: smooth closing */
.modal.hide .modal-content {
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}














.topbarr {
    position: fixed;
    top: 5;
    left: 80%;
    width: 100%;
    height: 55px;
    
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 9999;
}

.back-btn span {
    color: var(--outline);
    font-size: 25px;
    cursor: pointer;
}

.right-icons {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 5px;
    height: 100%;
}

.icon {
    position: relative;
    width: 50px;
    height: 100%;
    text-align: center;
    color: var(--outline);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 15px;
    display: block;
    margin-bottom: 2px;
}

.icon .label {
    font-size: 9px;
    color: #fff;
    line-height: 1;
    background: transparent;
}

.icon.message .badge {
    position: absolute;
    top: 3px;
    right: 6px;
    background: #ff3b3b;
    color: #fff;
    font-size: 10px;
    padding: 4px;
    border-radius: 50%;
}






.account-bar {
    position: fixed;
    top: 4.4%;
    left: 74.1%;
    width: 26%;
    color: #fff;
    display: flex;
    background: var(--dark-gold);
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    font-family: Arial, sans-serif;
    z-index: 999;
}

.account-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.account-details {
    line-height: 1.2;
}

.account-name {
    font-size: 10px;
    color: #fff;
}

.account-id {
    font-size: 13px;
    color: var(--outline);
    display: flex;
    align-items: center;
    gap: 5px;
}

.account-id i {
    color: var(--outline);
    cursor: pointer;
}

.account-balance {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--outline);
}

.account-balance i {
    color: var(--outline);
    cursor: pointer;
}

.account-balance span {
    color: #fff;
    border-bottom: 1px solid var(--outline);
    padding: 0 3px;
}









.action-bar {
    position: fixed;
    top: 9%;
    left: 74.1%;
    width: 26%;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    z-index: 998;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: Arial, sans-serif;
    position: relative;
}

.action-item .icon {
    position: relative;
    background: var(--outline);
    color: #000;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.action-item span {
    margin-top: 6px;
    font-size: 13px;
    color: #fff;
}

.badge {
    position: absolute;
    top: -12px;
    right: -10px;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 12px;
    color: #fff;
}

.badge.red {background: #ff3b30;}
.badge.green {background: #08bb02;color:#fff;}
.badge.yellow {background: var(--gold);color: #000;}

@media (max-width: 480px) {
    .action-bar {
        justify-content: space-evenly;
    }

    .action-item .icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .action-item span {
        font-size: 12px;
    }
}





















.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: transparent;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0;} to {opacity: 1;} }
.popup-box {
    background: linear-gradient(to top, var(--dark-gold), var(--light-gold));
    border-top: 4px solid var(--outline);
    border-right: 3px solid var(--outline);
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(40px);
    animation: slideUp 0.4s ease forwards;
    overflow: hidden;
}
@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.popup-close {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 10px;
    right: 10px;
    background: var(--outline);
    border-radius: 50%;
    padding:5px;
    font-size: 30px;
    cursor: pointer;
    color: var(--accent-gold);
    transition: color 0.2s;
    z-index: 2;
}
.popup-close:hover {
    background: var(--accent-gold);
    color: var(--outline);
}
.popup-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--gold);
    position: relative;
    z-index: 2;
}
.popup-text {
    color: var(--outline);
    margin-bottom: 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}
.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}
.popup-btn {
    position: relative;
    width: 180px;
    padding: 8px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    font-size: 0.7rem;
    overflow: visible;
    background: linear-gradient(to left, var(--light-gold), var(--dark-gold));
    border-top: 2px solid var(--outline);
    border-right: 1px solid var(--outline);
    z-index: 1;
}
.corner-icon {
    position: absolute;
    top: -30%;
    right: 1px;
    font-size: 20px;
    color: var(--gold);
    background: red;
    border-radius: 50%;
    padding: 5px;
}
@keyframes float {
    0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); }
}
.corner-icon {
    animation: float 2s infinite ease-in-out;
}
.popup-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--dark-gold), var(--light-gold), var(--outline), #e330f3, #00c3ff, #8c00ff, #ff005e);
    background-size: 400%;
    z-index: -1;
    animation: borderMove 5s linear infinite;
}
@keyframes borderMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.btn-android { background-color: var(--primary-gold); }
.btn-ios { background-color: var(--gold); }
.popup-btn:hover { transform: scale(1.05); opacity: 0.9; }
.float {
    position: absolute;
    bottom: 0;
    font-size: 1.5rem;
    opacity: 0.8;
    animation: floatUp 6s linear infinite;
}
@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-250px) rotate(360deg); opacity: 0; }
}













/* Floating chat button */
.chat-float-btn {
    position: fixed;
    bottom: 105px;
    right: 27%;
    background: var(--primary-gold);
    border-top: 4px solid var(--outline);
    border-right: 3px solid var(--outline);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    font-size: 1.5em;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% {transform: translateY(0);}
    50% {transform: translateY(-5px);}
}
.chat-popup {
    position: fixed;
    bottom: 180px;
    left: 27%;
    right: 27%;
    width: 46%;
    background: #f8f1cb;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.chat-header {
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    border-top: 3px solid var(--outline);
    border-right: 2px solid var(--outline);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: bold;
}
.chat-body {
    height: 280px;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
}
.chat-message {
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 80%;
    line-height: 1.4;
}
.user-msg {
    background: #e6f0ff;
    align-self: flex-end;
    margin-left: auto;
}
.bot-msg {
    background: #f1f1f1;
    align-self: flex-start;
    margin-right: auto;
}
.chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
}
.chat-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.chat-footer button {
    margin-left: 8px;
    background: linear-gradient(to bottom, var(--light-gold), var(--dark-gold));
    border-top: 2px solid var(--outline);
    border-right: 1px solid var(--outline);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
}






/*iFrame to play games */
.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}






.blink {
    animation: blinker 1.5s linear infinite;
    font-size: 0.8em;
    margin-bottom: 5px;
    text-align: center;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
.captcha-display {
    padding: 10px;
    background:
        linear-gradient(45deg, rgba(5, 102, 248, 0.9) 50%, rgba(194, 165, 2, 0.9) 50%), repeating-linear-gradient(45deg, rgba(161, 35, 3, 0.9) 0 2px, transparent 2px 18px), var(--gold);
    color: white;
    text-align: center;
    font-size: 2.0em;
    font-weight: bold;
}




.msg {
    position: fixed;
    width: 40%;
    bottom: 90px;
    right: 30%;
    left: 30%;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 2s ease forwards;
}
.msg.success {
    background: rgb(1, 185, 1);
    color: white;
    border: 1px solid rgb(1, 41, 1);
}
.msg.warning {
    background: rgb(248, 5, 5);
    color: rgb(255, 255, 255);
    border: 1px solid rgb(88, 1, 1);
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
}



.fixed-box {
    width: 27%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    z-index: 9999;
}


.cartCount {
    background: red;
    margin-left: 50px;
    margin-top: -60px;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 50%;
}

.notiCount {
    background: red;
    margin-left: 32px;
    margin-top: -40px;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 50%;
}