/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
	text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Running Line */
#running-line {
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24, #f0932b);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: #000;
    font-weight: 600;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    padding-right: 80px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Header */
.main-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 2px solid #4ecdc4;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-fixer {
	display: flex;
	gap: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    color: #4ecdc4;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-login:hover {
    background: #4ecdc4;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-register {
    background: linear-gradient(45deg, #ff6b6b, #f9ca24);
    color: #000;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 120px;
    bottom: 0;
    width: 250px;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 52, 96, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 998;
    border-right: 2px solid #4ecdc4;
    overflow-y: auto;
    padding: 20px 0;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 15px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-item i {
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.sidebar-item:hover {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff6b6b, #4ecdc4);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-item:hover::before {
    transform: scaleY(1);
}

/* Specific sidebar item colors */
.sidebar-item.deposit:hover { background: linear-gradient(45deg, #4ecdc4, #45b7d1); }
.sidebar-item.withdrawal:hover { background: linear-gradient(45deg, #f9ca24, #f0932b); }
.sidebar-item.promotion:hover { background: linear-gradient(45deg, #ff6b6b, #ff4757); }
.sidebar-item.invite:hover { background: linear-gradient(45deg, #6c5ce7, #a29bfe); }
.sidebar-item.reward:hover { background: linear-gradient(45deg, #fd79a8, #fdcb6e); }
.sidebar-item.rebate:hover { background: linear-gradient(45deg, #00b894, #00cec9); }
.sidebar-item.member:hover { background: linear-gradient(45deg, #e17055, #fab1a0); }
.sidebar-item.game:hover { background: linear-gradient(45deg, #0984e3, #74b9ff); }
.sidebar-item.support:hover { background: linear-gradient(45deg, #e84393, #fd79a8); }

/* Main Content */
.main-content {
    margin-left: 250px;
    margin-top: 120px;
    min-height: calc(100vh - 120px);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%234ecdc4" stop-opacity="0.1"/><stop offset="100%" stop-color="%234ecdc4" stop-opacity="0"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

/* Single column hero for pages without visual content */
.hero-container.single-column {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
}

.hero-content {
    z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f9ca24;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #f9ca24);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 80px;
    height: 110px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    color: #2c3e50;
    animation-delay: -0.5s;
}

.card-2 {
    top: 10%;
    right: 20%;
    color: #e74c3c;
    animation-delay: -1s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    color: #e74c3c;
    animation-delay: -1.5s;
}

.card-4 {
    bottom: 20%;
    right: 10%;
    color: #2c3e50;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes glow {
    0% { text-shadow: 0 0 20px rgba(78, 205, 196, 0.5); }
    100% { text-shadow: 0 0 30px rgba(78, 205, 196, 0.8), 0 0 40px rgba(69, 183, 209, 0.5); }
}

/* Sections */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #f9ca24);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
}

.feature-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f9ca24;
}

.feature-card p {
    color: #ddd;
    line-height: 1.6;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Games Section */
.games-section {
    padding: 80px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-category {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.9));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-category:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    border-color: #ff6b6b;
}

.game-icon {
    font-size: 3.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.game-category h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.game-category p {
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-game {
    background: linear-gradient(45deg, #ff6b6b, #f0932b);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.payment-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.2);
}

.payment-item i {
    font-size: 1.8rem;
    color: #4ecdc4;
}

.payment-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-deposit,
.btn-withdraw {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-deposit {
    background: linear-gradient(45deg, #00b894, #00cec9);
    color: #000;
}

.btn-withdraw {
    background: linear-gradient(45deg, #f9ca24, #f0932b);
    color: #000;
}

.btn-deposit:hover,
.btn-withdraw:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 184, 148, 0.4);
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 0 20px;
    border-top: 2px solid #4ecdc4;
    margin-top: 80px;
    margin-left: 250px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #4ecdc4;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #ddd;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4ecdc4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    color: #aaa;
}

/* Promotions Page Styles */
.welcome-bonus {
    padding: 60px 0;
    background: rgba(255, 107, 107, 0.1);
}

.bonus-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.9));
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    border: 2px solid #f9ca24;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(249, 202, 36, 0.1), transparent);
    animation: rotate 4s linear infinite;
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.bonus-header i {
    font-size: 3rem;
    color: #f9ca24;
}

.bonus-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #fff;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #f9ca24;
    margin-bottom: 10px;
}

.bonus-limit {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.btn-claim {
    background: linear-gradient(45deg, #f9ca24, #f0932b);
    color: #000;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.btn-claim:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 202, 36, 0.5);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promotions-section {
    padding: 80px 0;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.promo-card p {
	margin-bottom: 10px;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.promo-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.promo-value {
    font-size: 2rem;
    font-weight: 900;
    color: #f9ca24;
    margin-bottom: 15px;
}

.btn-promo {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.vip-card {
    border-color: #f9ca24;
    background: linear-gradient(145deg, rgba(249, 202, 36, 0.1), rgba(240, 147, 43, 0.1));
}

.vip-benefits {
    margin: 20px 0;
}

.vip-benefits p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ddd;
}

.btn-promo.vip {
    background: linear-gradient(45deg, #f9ca24, #f0932b);
}

/* Games Page Styles */
.trending-slots {
    padding: 80px 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.slot-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.9));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.slot-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.slot-image {
    height: 200px;
    background: linear-gradient(135deg, #ff6b6b, #f9ca24);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.slot-info {
    padding: 25px;
}

.slot-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.slot-info p {
    color: #ddd;
    margin-bottom: 15px;
}

.slot-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Live Casino */
.live-casino {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.live-feature {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.live-feature:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
}

.live-feature i {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.btn-live {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-block;
}

.btn-live:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}


/* Payment Page */
.currencies-section {
    padding: 80px 0;
}

.currencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.currency-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.currency-card:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
}

.currency-card.primary {
    border-color: #f9ca24;
    background: linear-gradient(145deg, rgba(249, 202, 36, 0.1), rgba(240, 147, 43, 0.1));
}

.currency-icon {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.primary-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #f9ca24, #f0932b);
    color: #000;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.deposit-section {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.deposit-info {
    text-align: center;
    margin-bottom: 50px;
}

.deposit-highlight {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.deposit-highlight span {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.payment-method {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.method-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.method-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.feature {
    background: linear-gradient(45deg, #ff6b6b, #f0932b);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-method {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-block;
}

.btn-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

/* Bonus Icon Styles */
.bonus-icon {
    font-size: 3.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.bonus-card.vip .bonus-icon {
    color: #ff6b6b;
}

/* Bonus Button Styles */
.btn-bonus {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-block;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.bonus-card.vip .btn-bonus {
    background: linear-gradient(45deg, #ff6b6b, #f0932b);
}

.bonus-card.vip .btn-bonus:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}


/* Mobile Page */
.mobile-features {
    padding: 80px 0;
}

.mobile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mobile-feature {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.mobile-feature p {
	margin-bottom: 10px;
}

.mobile-feature:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.mobile-bonuses {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mobile-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.phone-frame {
    width: 200px;
    height: 350px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #000;
}

/* About Page */
.vision-section {
    padding: 80px 0;
}

.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.vision-text {
    font-size: 1.3rem;
    color: #ddd;
    line-height: 1.8;
}

.vision-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #4ecdc4;
}

.vision-feature i {
    font-size: 1.8rem;
    color: #4ecdc4;
}

.unique-section {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.unique-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.unique-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.unique-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations */
.feature-card,
.game-category,
.promo-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(odd) {
    animation: slideInLeft 0.6s ease forwards;
}

.feature-card:nth-child(even) {
    animation: slideInRight 0.6s ease forwards;
}

/* Hover effects for buttons */
.btn-primary,
.btn-secondary,
.btn-game,
.btn-promo,
.btn-claim,
.btn-method,
.btn-live {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-game::before,
.btn-promo::before,
.btn-claim::before,
.btn-method::before,
.btn-live::before {
    content: '';
    position: absolute;
    top: 0;
		visibility: hidden;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-game:hover::before,
.btn-promo:hover::before,
.btn-claim:hover::before,
.btn-method:hover::before,
.btn-live:hover::before {
		visibility: visible;
    left: 100%;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .deposit-highlight {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .currencies-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Ensure all interactive elements are accessible */
button, .btn-primary, .btn-secondary, .btn-game, .btn-promo, .btn-claim, .btn-method, .btn-live, .nav-link, .sidebar-item {
    cursor: pointer;
    user-select: none;
}

/* Loading animation for the entire page */
body {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Special Events Section - Promotions Page */
.special-events {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(249, 202, 36, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: #f9ca24;
    box-shadow: 0 15px 35px rgba(249, 202, 36, 0.2);
}

.event-icon {
    font-size: 3rem;
    color: #f9ca24;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.event-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.event-card p {
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-event {
    background: linear-gradient(45deg, #f9ca24, #f0932b);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 202, 36, 0.4);
}

/* Terms Section - Promotions Page */
.terms-section {
    padding: 60px 0;
    background: rgba(15, 52, 96, 0.2);
}

.terms-section h3 {
    font-size: 2rem;
    color: #4ecdc4;
    margin-bottom: 20px;
    text-align: center;
}

.terms-section p {
    font-size: 1.1rem;
    color: #ddd;
    text-align: center;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Table Games Section - Games Page */
.table-games {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.table-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.table-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.table-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.table-img {
    width: auto;
    height: 200px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.table-img img {
	height: 100%;
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.table-card:hover .table-img {
    transform: scale(1.1);
}

.table-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.table-card p {
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-table {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-table:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

/* Feature Button Styles */
.btn-feature {
    background: linear-gradient(45deg, #6b5bff, #8a7aff);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 91, 255, 0.4);
}

/* Instant Games Section - Games Page */
.instant-games {
    padding: 80px 0;
}

.instant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instant-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.instant-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.instant-icon {
    font-size: 3.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.instant-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.instant-card p {
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-instant {
    background: linear-gradient(45deg, #ff6b6b, #f0932b);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-instant:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Game Providers Section - Games Page */
.providers-section {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.provider-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #4ecdc4;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.2);
}

.provider-logo {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.provider-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

/* Withdrawal Section - Payment Page */
.withdrawal-section {
    padding: 80px 0;
}

.withdrawal-info {
    text-align: center;
    margin-bottom: 50px;
}

.withdrawal-highlight {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.withdrawal-highlight span {
    background: linear-gradient(45deg, #f9ca24, #f0932b);
    color: #000;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.withdrawal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.withdrawal-method {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(249, 202, 36, 0.3);
    transition: all 0.3s ease;
}

.withdrawal-method:hover {
    transform: translateY(-10px);
    border-color: #f9ca24;
    box-shadow: 0 15px 35px rgba(249, 202, 36, 0.2);
}

.withdrawal-icon {
    font-size: 3rem;
    color: #f9ca24;
    margin-bottom: 20px;
}

.withdrawal-method h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.withdrawal-method p {
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.6;
}

.withdrawal-time {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
}

.btn-withdrawal {
    background: linear-gradient(45deg, #f9ca24, #f0932b);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-withdrawal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 202, 36, 0.4);
}

/* Security Section - Payment Page */
.security-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-feature {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.security-icon {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.security-feature h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.security-feature p {
    color: #ddd;
    line-height: 1.6;
}

/* CTA Section - Payment Page */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
}

.btn-cta.secondary {
    background: linear-gradient(45deg, #f9ca24, #f0932b);
    color: #000;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

/* Sync Section - Mobile Page */
.sync-section {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.sync-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sync-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.device:hover {
    transform: scale(1.05);
    border-color: #4ecdc4;
}

.device i {
    font-size: 3rem;
    color: #4ecdc4;
}

.device span {
    color: #fff;
    font-weight: 600;
}

.sync-arrow {
    font-size: 2rem;
    color: #f9ca24;
    animation: pulse 2s infinite;
}

.sync-info h3 {
    font-size: 2rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.sync-info p {
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sync-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.sync-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ddd;
}

.sync-feature i {
    color: #4ecdc4;
    font-size: 1.2rem;
}

.btn-sync {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sync:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

/* Performance Section - Mobile Page */
.performance-section {
    padding: 80px 0;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.performance-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.performance-icon {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.performance-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.performance-card p {
    color: #ddd;
    line-height: 1.6;
}

/* Stats Section - Mobile Page */
.stats-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(249, 202, 36, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #f9ca24;
    box-shadow: 0 15px 35px rgba(249, 202, 36, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #f9ca24;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #ddd;
    font-weight: 600;
}

/* CTA Mobile Section - Mobile Page */
.cta-mobile {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(69, 183, 209, 0.1));
}

.cta-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.step p {
    color: #ddd;
    font-weight: 600;
    text-align: center;
}

.btn-cta-mobile {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.btn-cta-mobile:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

/* Responsible Gambling Section - About Page */
.responsible-section {
    padding: 80px 0;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.responsible-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.responsible-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.responsible-card.sargf {
    border-color: #f9ca24;
    background: linear-gradient(145deg, rgba(249, 202, 36, 0.1), rgba(240, 147, 43, 0.1));
}

.responsible-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.responsible-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.responsible-card p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-responsible {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-responsible:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

/* License Section - About Page */
.license-section {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.license-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.license-text {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 30px;
}

.license-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.license-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ddd;
    font-weight: 600;
}

.license-feature i {
    color: #4ecdc4;
    font-size: 1.5rem;
}

.license-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.license-badge {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #4ecdc4;
    transition: all 0.3s ease;
}

.license-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.license-badge i {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 10px;
    display: block;
}

.license-badge span {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Support Section - About Page */
.support-section {
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-method {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.support-method:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.support-method.whatsapp {
    border-color: #25d366;
}

.support-method.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
}

.support-icon {
    font-size: 3rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.support-method.whatsapp .support-icon {
    color: #25d366;
}

.support-method h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.support-method p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-support {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

/* Values Section - About Page */
.values-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(249, 202, 36, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #f9ca24;
    box-shadow: 0 15px 35px rgba(249, 202, 36, 0.2);
}

.value-icon {
    font-size: 3rem;
    color: #f9ca24;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.value-card p {
    color: #ddd;
    line-height: 1.6;
}

/* CTA About Section - About Page */
.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(249, 202, 36, 0.1), rgba(78, 205, 196, 0.1));
}

.cta-about .cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.cta-about .cta-content p {
    font-size: 1.3rem;
    color: #f9ca24;
    margin-bottom: 40px;
    font-weight: 600;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stats .stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    min-width: 120px;
}

.cta-stats .stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #f9ca24;
}

.cta-stats .stat-label {
    color: #ddd;
    font-weight: 600;
    margin-top: 5px;
}

.btn-cta-about {
    background: linear-gradient(45deg, #f9ca24, #f0932b);
    color: #000;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-about:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 202, 36, 0.4);
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    border-radius: 10px;
    border: 2px solid rgba(26, 26, 46, 0.8);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #45b7d1, #4ecdc4);
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.5);
}

::-webkit-scrollbar-corner {
    background: rgba(26, 26, 46, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
	.sidebar {
			transform: translateX(-100%);
			transition: transform 0.3s ease;
	}
	
	.sidebar.active {
			transform: translateX(0);
	}
	
	.main-content {
			margin-left: 0;
	}
	
	.header-container {
			padding: 0 15px;
	}

	.logo span {
		display: none;
	}
	
	.main-nav {
			display: none;
	}
	
	.hero-container {
			grid-template-columns: 1fr;
			text-align: center;
	}
	
	.hero-title {
			font-size: 2.5rem;
	}
	
	.features-grid,
	.games-grid,
	.promotions-grid {
			grid-template-columns: 1fr;
	}
	
	.hero-buttons {
			justify-content: center;
	}
	
	.payment-methods {
			flex-direction: column;
			align-items: center;
	}
	
	.payment-buttons {
			flex-direction: column;
			align-items: center;
	}
	
	.main-footer {
			margin-left: 0;
	}
	
	.sync-content {
			grid-template-columns: 1fr;
			text-align: center;
	}
	
	.license-content {
			grid-template-columns: 1fr;
			text-align: center;
	}
	
	.withdrawal-highlight {
			flex-direction: column;
			align-items: center;
			gap: 20px;
	}
}

@media (max-width: 480px) {
	.hero-title {
			font-size: 2rem;
	}
	
	.section-title {
			font-size: 2rem;
	}
	
	.bonus-amount {
			font-size: 2rem;
	}
	
	.bonus-header h2 {
			font-size: 1.8rem;
	}
}