:root { --primary-color: #d4a12a;
--secondary-color: #b8870f;
--accent-color: #e8b84d;
--background-color: #080705;
--card-bg-color: #1a1814;
--text-color: #f0e8d8;
--text-muted: #a8a08e;
--success-color: #4ade80;
--danger-color: #ef4444;
--border-radius: 10px;
--header-height: 56px;
--bottom-nav-height: 62px;
--shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
--gold-gradient: linear-gradient(135deg, #e8b84d, #d4a12a, #b8870f);
--purple-gradient: linear-gradient(135deg, #1a1814, #26231c);
--green-gradient: linear-gradient(135deg, #065f46, #059669);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
body {
font-family: 'Jost', 'Segoe UI', Arial, sans-serif;
background-color: var(--background-color);
background-image: radial-gradient(ellipse 80% 40% at 50% -5%, rgba(212, 161, 42, 0.07) 0%, transparent 65%);
color: var(--text-color);
line-height: 1.5;
padding-bottom: calc(var(--bottom-nav-height) + 20px);
} .container {
width: 100%;
max-width: 768px;
margin: 0 auto;
padding: 0;
position: relative;
} .header {
height: var(--header-height);
background-color: rgba(8, 7, 5, 0.96);
backdrop-filter: blur(16px);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 15px;
position: sticky;
top: 0;
z-index: 100;
border-bottom: 1px solid rgba(212, 161, 42, 0.12);
}
.menu-button {
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
color: var(--text-color);
background-color: rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.menu-button:active {
background-color: rgba(255, 255, 255, 0.1);
}
.header-logo {
height: 40px;
display: flex;
align-items: center;
}
.header-logo-image {
height: 30px;
}
.header-actions {
display: flex;
gap: 10px;
}
.header-login-btn {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.05);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-color);
text-decoration: none;
transition: all 0.3s ease;
}
.header-login-btn:active {
background-color: rgba(255, 255, 255, 0.1);
} .side-menu {
position: fixed;
top: 0;
left: -280px;
width: 280px;
height: 100vh;
background: linear-gradient(180deg, #0f0e0b 0%, #1a1814 100%);
border-right: 1px solid rgba(212, 161, 42, 0.1);
z-index: 1000;
transition: left 0.3s ease;
box-shadow: 8px 0 32px rgba(0,0,0,0.6);
overflow-y: auto;
}
.side-menu.active {
left: 0;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay.active {
opacity: 1;
visibility: visible;
}
.side-menu-header {
padding: 20px 15px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.side-menu-logo {
display: flex;
align-items: center;
gap: 10px;
}
.menu-logo-image {
height: 30px;
}
.close-btn {
font-size: 24px;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.close-btn:active {
background-color: rgba(255, 255, 255, 0.1);
}
.menu-items {
padding: 15px 0;
}
.menu-item {
display: flex;
align-items: center;
padding: 15px 20px;
color: var(--text-color);
text-decoration: none;
transition: all 0.3s ease;
}
.menu-item:active {
background-color: rgba(255, 255, 255, 0.05);
}
.menu-item i {
width: 24px;
margin-right: 15px;
color: var(--primary-color);
}
.menu-user-actions {
display: flex;
flex-direction: column;
gap: 10px;
padding: 20px;
margin-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.menu-login-btn, .menu-register-btn {
display: flex;
align-items: center;
justify-content: center;
padding: 12px;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.menu-login-btn {
background-color: rgba(255, 255, 255, 0.1);
color: var(--text-color);
}
.menu-register-btn {
background: linear-gradient(135deg, #e8b84d, #b8870f);
color: #080705;
font-weight: 700;
}
.menu-login-btn i, .menu-register-btn i {
margin-right: 10px;
} .main-banner {
position: relative;
margin: 0 0 20px;
padding: 30px 15px;
background: linear-gradient(180deg, #0f0e0b 0%, #080705 100%);
overflow: hidden;
border-radius: 0 0 var(--border-radius) var(--border-radius);
box-shadow: none;
border-bottom: 1px solid rgba(212, 161, 42, 0.08);
}
.banner-content {
position: relative;
text-align: center;
}
.logo-wrapper {
margin-bottom: 15px;
}
.logo-image {
width: 160px; height: auto;
filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.logo-slogan {
font-size: 28px;
font-weight: 700;
background: var(--gold-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 15px;
text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}
.logo-subtext {
margin-bottom: 20px;
font-size: 14px;
color: #ffffff;
}
.logo-subtext p {
margin-bottom: 5px;
}
.brazil-highlight {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-top: 15px;
}
.brazil-flag {
color: #009c3b; }
.highlight-text {
font-weight: 600;
color: var(--text-color);
background-color: rgba(255, 255, 255, 0.05);
padding: 5px 15px;
border-radius: 20px;
border: 1px solid rgba(255, 215, 0, 0.2);
}
.banner-actions {
margin: 25px 0 20px;
}
.banner-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 32px;
background: linear-gradient(135deg, #e8b84d 0%, #d4a12a 50%, #b8870f 100%);
color: #080705;
font-weight: 700;
text-decoration: none;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(212, 161, 42, 0.4), 0 1px 4px rgba(0,0,0,0.6);
transition: all 0.28s ease;
letter-spacing: 0.04em;
font-size: 0.95rem;
}
.banner-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(212, 161, 42, 0.55);
filter: brightness(1.08);
color: #080705;
}
.banner-btn:active {
transform: translateY(0);
box-shadow: 0 2px 10px rgba(212, 161, 42, 0.4);
}
.banner-badges {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px; }
.badge {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
color: var(--text-muted);
}
.badge i {
color: var(--accent-color);
} .promo-cards {
display: flex;
gap: 15px;
margin: 0 15px 20px;
}
.promo-card {
flex: 1;
background-color: var(--card-bg-color);
border-radius: var(--border-radius);
padding: 15px;
display: flex;
align-items: center;
box-shadow: var(--shadow);
transition: transform 0.3s ease;
}
.promo-card:active {
transform: translateY(2px);
}
.promo-card.invite {
border-left: 3px solid var(--primary-color);
}
.promo-card.agent {
border-left: 3px solid var(--secondary-color);
}
.promo-icon {
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 12px;
font-size: 18px;
}
.promo-card.invite .promo-icon {
color: var(--primary-color);
}
.promo-card.agent .promo-icon {
color: var(--secondary-color);
}
.promo-text {
font-size: 12px;
}
.promo-text p:first-child {
font-weight: 600;
margin-bottom: 3px;
}
.highlight {
color: var(--accent-color);
font-weight: bold;
} .feature-nav {
display: flex;
justify-content: space-around;
background-color: var(--card-bg-color);
padding: 15px 0;
margin-bottom: 20px;
border-radius: var(--border-radius);
margin-left: 15px;
margin-right: 15px;
box-shadow: var(--shadow);
}
.feature-item {
display: flex;
flex-direction: column;
align-items: center;
font-size: 12px;
}
.feature-icon {
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
font-size: 22px;
position: relative;
color: var(--text-color);
}
.feature-icon.home {
background-color: rgba(255, 107, 0, 0.1);
color: var(--primary-color);
}
.feature-icon.vip {
background-color: rgba(255, 193, 7, 0.1);
color: var(--accent-color);
}
.feature-item p {
margin-top: 8px;
color: var(--text-muted);
}
.badge::after {
content: attr(data-badge);
position: absolute;
top: -5px;
right: -5px;
background-color: var(--danger-color);
color: white;
font-size: 10px;
padding: 2px 6px;
border-radius: 10px;
}
.badge-count {
position: absolute;
top: -5px;
right: -5px;
background-color: var(--danger-color);
color: white;
font-size: 10px;
padding: 2px 6px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
} .game-cards-section {
margin: 0 15px 20px;
}
.section-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 15px;
}
.section-header h2 {
font-size: 18px;
display: flex;
align-items: center;
gap: 8px;
}
.section-header h2 i {
color: var(--primary-color);
}
.view-all {
color: var(--text-muted);
font-size: 14px;
text-decoration: none;
display: flex;
align-items: center;
gap: 5px;
}
.game-cards {
display: flex;
gap: 15px;
overflow-x: auto;
padding-bottom: 10px;
scrollbar-width: none;
-ms-overflow-style: none;
}
.game-cards::-webkit-scrollbar {
display: none;
}
.game-card {
flex: 0 0 220px;
max-width: 220px;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: transform 0.3s ease;
}
.game-card:active {
transform: scale(0.98);
}
.game-card.tiger-theme {
background: linear-gradient(135deg, #ff7700, #ff5500);
}
.game-card.rabbit-theme {
background: linear-gradient(135deg, #8e44ad, #7d3c98);
}
.game-card.dragon-theme {
background: linear-gradient(135deg, #2980b9, #3498db);
}
.game-card-content {
padding: 20px;
display: flex;
flex-direction: column;
height: 100%;
}
.game-icon {
font-size: 30px;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 15px;
text-align: center;
}
.game-details {
flex-grow: 1;
margin-bottom: 20px;
}
.game-title {
color: white;
font-weight: bold;
font-size: 18px;
margin-bottom: 8px;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.game-description {
color: rgba(255, 255, 255, 0.9);
font-size: 13px;
line-height: 1.4;
margin-bottom: 15px;
}
.game-action {
text-align: center;
}
.play-now-btn {
width: 100%;
padding: 10px 20px;
background-color: rgba(255, 255, 255, 0.2);
color: white;
border: none;
border-radius: 50px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
}
.play-now-btn:hover,
.play-now-btn:active {
background-color: rgba(255, 255, 255, 0.3);
} .section-title {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 15px;
margin: 25px 0 15px;
}
.section-title h2 {
font-size: 18px;
display: flex;
align-items: center;
gap: 8px;
}
.section-title i {
color: var(--primary-color);
} .promo-activities {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
padding: 0 15px;
}
.activity-card {
background-color: var(--card-bg-color);
border-radius: var(--border-radius);
padding: 15px;
transition: transform 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: var(--shadow);
}
.activity-card:active {
transform: translateY(2px);
}
.highlight-card {
grid-column: span 2;
background: linear-gradient(to right, rgba(144, 19, 254, 0.1), rgb(255 255 255 / 30%));
border-left: 3px solid var(--secondary-color);
}
.activity-icon {
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
color: var(--primary-color);
font-size: 18px;
}
.highlight-card .activity-icon {
color: var(--secondary-color);
}
.activity-content h3 {
font-size: 16px;
color: var(--text-color);
margin-bottom: 5px;
padding-right: 70px;
}
.activity-content p {
font-size: 12px;
color: var(--text-muted);
line-height: 1.4;
}
.activity-tag {
position: absolute;
top: 10px;
right: 10px;
font-size: 10px;
background-color: rgba(255, 107, 0, 0.2);
color: var(--primary-color);
padding: 2px 8px;
border-radius: 10px;
}
.new-tag {
background-color: rgba(76, 217, 100, 0.2);
color: var(--success-color);
}
.vip-tag {
background-color: rgba(255, 193, 7, 0.2);
color: var(--accent-color);
} .vip-section {
margin: 0 15px 20px;
background-color: var(--card-bg-color);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow);
}
.vip-content {
padding: 20px;
position: relative;
}
.vip-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}
.vip-icon {
color: var(--accent-color);
font-size: 24px;
}
.vip-header h3 {
font-size: 18px;
}
.vip-benefits {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-bottom: 20px;
}
.vip-benefit {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
}
.vip-benefit i {
color: var(--accent-color);
}
.vip-levels {
display: flex;
gap: 8px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.vip-level {
padding: 5px 10px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 5px;
font-size: 12px;
font-weight: bold;
}
.vip-upgrade-btn {
display: block;
text-align: center;
padding: 12px;
background-color: rgba(255, 193, 7, 0.1);
color: var(--accent-color);
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.vip-upgrade-btn:active {
background-color: rgba(255, 193, 7, 0.2);
} .rich-list {
margin: 0 15px 20px;
background-color: var(--card-bg-color);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow);
}
.rich-list-content {
padding: 20px;
}
.rich-list-header {
display: grid;
grid-template-columns: 0.5fr 2fr 1fr;
padding-bottom: 10px;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
font-size: 14px;
color: var(--text-muted);
}
.rich-list-items {
margin: 10px 0;
}
.rich-list-item {
display: grid;
grid-template-columns: 0.5fr 2fr 1fr;
align-items: center;
padding: 10px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.rich-rank {
width: 25px;
height: 25px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 12px;
background-color: rgba(255, 255, 255, 0.1);
}
.rich-rank.gold {
background: var(--gold-gradient);
color: #000;
}
.rich-rank.silver {
background: linear-gradient(135deg, #c0c0c0, #919191);
color: #000;
}
.rich-rank.bronze {
background: linear-gradient(135deg, #cd7f32, #a05a2c);
color: #fff;
}
.rich-user {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
}
.rich-user i {
color: var(--accent-color);
}
.rich-amount {
font-weight: bold;
color: var(--accent-color);
text-align: right;
}
.rich-list-note {
font-size: 12px;
color: var(--text-muted);
margin: 15px 0;
text-align: center;
}
.participate-btn {
display: block;
text-align: center;
padding: 12px;
background-color: rgba(255, 107, 0, 0.1);
color: var(--primary-color);
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
margin-top: 15px;
}
.participate-btn:active {
background-color: rgba(255, 107, 0, 0.2);
} .back-to-top {
position: fixed;
bottom: 80px;
right: 20px;
width: 45px;
height: 45px;
background-color: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
z-index: 99;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
}
.back-to-top:active {
transform: translateY(2px);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
} .bottom-nav {
position: fixed;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
width: calc(100% - 30px);
max-width: calc(768px - 30px);
height: var(--bottom-nav-height);
background: rgba(15, 14, 11, 0.96);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
display: flex;
align-items: center;
justify-content: space-between;
padding: 6px 8px;
gap: 8px;
z-index: 100;
border-radius: 12px;
border: 1px solid rgba(212, 161, 42, 0.15);
box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,161,42,0.05);
overflow: hidden;
}
.login-button, .register-button {
flex: 1;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-weight: 700;
font-size: 0.85rem;
letter-spacing: 0.04em;
transition: all 0.28s ease;
border-radius: 8px;
gap: 6px;
}
.login-button {
background: transparent;
color: #e8b84d;
border: 1.5px solid rgba(212, 161, 42, 0.35);
}
.login-button:hover {
background: rgba(212, 161, 42, 0.08);
border-color: rgba(212, 161, 42, 0.6);
}
.register-button {
background: linear-gradient(135deg, #e8b84d 0%, #d4a12a 50%, #b8870f 100%);
color: #080705;
box-shadow: 0 3px 16px rgba(212, 161, 42, 0.4);
}
.register-button:hover {
filter: brightness(1.08);
box-shadow: 0 5px 20px rgba(212, 161, 42, 0.55);
transform: translateY(-1px);
color: #080705;
}
.login-button i, .register-button i {
margin-right: 8px;
font-size: 16px;
}
@media (max-width: 360px) {
.promo-activities {
grid-template-columns: 1fr;
}
.highlight-card {
grid-column: 1;
}
.vip-benefits {
grid-template-columns: 1fr;
}
}  .random-div-uroz {
display: none !important;
visibility: hidden;
opacity: 0;
z-index: -9999;
}
[data-rand] { }