/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
	text-decoration: none;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-left: 80px;
}

/* Running Line */
.running-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700, #ff6b35);
    height: 35px;
    z-index: 1000;
    overflow: hidden;
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.running-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.running-content span {
    margin-right: 50px;
    font-weight: 500;
    color: #000;
    font-size: 14px;
}

.running-content i {
    margin-right: 8px;
    color: #ff4444;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 35px;
    left: 80px;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 999;
    border-bottom: 2px solid #ff6b35;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    color: #ffd700;
    text-decoration: none;
}

.logo img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    left: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff4444);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #000;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-login {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-login:hover {
    background: #ffd700;
    color: #000;
}

.btn-register {
    background: linear-gradient(45deg, #ff6b35, #ff4444);
    color: #ffffff;
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-vip {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: #ffffff;
}

.btn-crypto {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: #000;
}

.btn-play {
    background: rgba(255, 107, 53, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: 0.3s;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 35px;
    left: 0;
    width: 80px;
    height: calc(100vh - 35px);
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-right: 2px solid #ff6b35;
    z-index: 999;
    overflow: hidden;
    transition: width 0.3s ease;
}

.sidebar:hover {
    width: 250px;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sidebar-header i {
    font-size: 24px;
    color: #ff6b35;
    animation: pulse 2s infinite;
}

.sidebar-header span {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #ffd700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar:hover .sidebar-header span {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #ff6b35;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-item:hover::before,
.sidebar-item.active::before {
    transform: scaleY(1);
}

.sidebar-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.sidebar-item.active {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}

.sidebar-item i {
    font-size: 20px;
    min-width: 40px;
    text-align: center;
}

.sidebar-item span {
    margin-left: 10px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.sidebar-item.deposit i { color: #4ade80; }
.sidebar-item.withdrawal i { color: #60a5fa; }
.sidebar-item.promotion i { color: #f472b6; }
.sidebar-item.invite i { color: #a78bfa; }
.sidebar-item.rewards i { color: #fbbf24; }
.sidebar-item.rebate i { color: #34d399; }
.sidebar-item.support i { color: #fb7185; }

/* Main Content */
.main-content {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    padding: 20px;
}

/* Hero Sections */
.hero {
    display: flex;
    align-items: center;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 107, 53, 0.05) 2px,
        rgba(255, 107, 53, 0.05) 4px
    );
    animation: move 20s linear infinite;
}

@keyframes move {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.providers-section {
	margin: 40px 0;
}

.vip-header {
	text-align: center;
}

.vip-header h3 {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.vip-header p {
	text-align: center;
	font-size: 1.2rem;
	color: #cccccc;
	margin-bottom: 20px;
	line-height: 1.8;
}

.welcome-content h3 {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.welcome-content p {
	text-align: center;
	font-size: 1.2rem;
	color: #cccccc;
	margin-bottom: 20px;
	line-height: 1.8;
}

.hero-content {
    flex: 1;
    z-index: 2;
		text-align: center;
		padding: 20px;
		margin: 0 auto;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #ffd700, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
    margin-bottom: 20px;
    line-height: 1.2;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
		justify-content: center;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 60%;
    left: 60%;
    animation-delay: 1.5s;
}

.floating-card:nth-child(3) {
    top: 10%;
    right: 20%;
    animation-delay: 3s;
}

.floating-card:nth-child(4) {
    bottom: 20%;
    left: 40%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

.hero-mobile, .mobile-features {
	padding: 40px 0;
}

.hero-promotions, .hero-games, .hero-mobile, .hero-payment, .hero-support {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.pwa-info h3 {
	font-size: 2rem;
	color: #ffd700;
	font-weight: 600;
	margin-bottom: 20px;
}

.pwa-info p {
	font-size: 1.2rem;
	color: #cccccc;
	margin-bottom: 20px;
	line-height: 1.8;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Features Grid */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/* Games Grid */
.games-preview, .games-section {
    padding: 80px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.game-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.game-badge.popular {
    background: linear-gradient(45deg, #ff6b35, #ff4444);
    color: #ffffff;
}

.game-badge.new {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: #000;
}

.game-badge.hot {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: #000;
    animation: pulse 1.5s infinite;
}

.game-badge.jackpot {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: #ffffff;
}

.game-badge.live {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: #ffffff;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.game-card h3 {
    padding: 15px;
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.game-card p {
    padding: 0 15px 15px;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Game Sections */
.game-section {
    transition: all 0.5s ease;
}

.game-section.hidden {
    display: none !important;
}

/* Game Categories */
.game-categories {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.05);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.category-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.category-card h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.category-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Promotions */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.promo-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.promo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
    position: relative;
    z-index: 2;
}

.promo-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.promo-card p {
    color: #cccccc;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.promo-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
}

/* Welcome Package */
.welcome-package {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.welcome-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #8b5cf6;
    position: relative;
    overflow: hidden;
}

.welcome-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.offer-item {
    text-align: center;
}

.offer-amount {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-plus {
    font-size: 2rem;
    color: #ffd700;
    font-weight: 900;
}

/* VIP Program */
.vip-program {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #8b5cf6;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: #ffd700;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.benefit-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.payment-method {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.payment-method.instant {
    border-color: #4ade80;
    background: linear-gradient(145deg, rgba(26, 46, 26, 0.9), rgba(22, 62, 22, 0.9));
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.method-header i {
    font-size: 2rem;
    color: #ff6b35;
}

.method-header h3 {
    color: #ffd700;
    font-size: 1.3rem;
}

.instant-badge {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: #000;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.method-features span {
    color: #cccccc;
    font-size: 0.9rem;
}

.method-features i {
    color: #4ade80;
    margin-right: 8px;
}

/* Mobile Sections */
.mobile-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    border: 3px solid #ff6b35;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.mobile-game-demo {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.mobile-game-demo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Filter Tabs */
.game-filter {
    padding: 40px 0;
    background: rgba(255, 107, 53, 0.05);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.filter-tab:hover,
.filter-tab.active {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

/* Provider Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.provider-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.provider-card i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.provider-card h3 {
    color: #ffd700;
    margin-bottom: 5px;
}

.provider-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Support Sections */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.security-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.security-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.security-card p {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.security-card img {
    width: 100%;
    max-height: 150px;
		border-radius: 50%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-option {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.support-option.primary {
    border-color: #4ade80;
    background: linear-gradient(145deg, rgba(26, 46, 26, 0.9), rgba(22, 62, 22, 0.9));
}

.support-option h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.support-option p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}


.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #000;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question h3 {
    color: #ffd700;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #cccccc;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive Gaming */
.responsible-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.responsible-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tool-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.tool-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.tool-item h4 {
    color: #ffd700;
    margin-bottom: 5px;
}

.tool-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 2px solid #ff6b35;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1) rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    color: #cccccc;
}

/* Utility Classes */
.games-cta {
    text-align: center;
    margin-top: 50px;
}

.vip-cta {
    text-align: center;
    margin-top: 40px;
}

.mobile-cta {
    text-align: center;
    margin-top: 40px;
}

.support-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.responsible-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: #cccccc;
    font-weight: 500;
}

/* Mobile Updates Section */
.mobile-updates {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.updates-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.update-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 2rem;
    color: #8b5cf6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.feature span {
    color: #cccccc;
    font-weight: 500;
}

.updates-content img {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid #8b5cf6;
}

/* Ongoing Promotions */
.ongoing-promotions {
    padding: 80px 0;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.daily-cashback {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
    border-color: #22c55e;
}

.tournament {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    border-color: #f59e0b;
}

.mystery-drops {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
    border-color: #8b5cf6;
}

.refer-friend {
    background: linear-gradient(145deg, rgba(236, 72, 153, 0.1), rgba(219, 39, 119, 0.1));
    border-color: #ec4899;
}

.cashback-rate,
.tournament-prize,
.refer-bonus {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0;
}

/* Quality Section - Fair Play Guarantee */
.quality-section {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.05);
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.quality-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.quality-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.quality-item h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quality-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* PWA Section */
.pwa-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
}

.pwa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pwa-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.pwa-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.pwa-feature i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.pwa-feature span {
    color: #cccccc;
    font-weight: 500;
}

.pwa-feature img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 10px;
}

.pwa-installation {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin: 30px 0;
}

.pwa-installation h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

.pwa-installation ol {
    color: #cccccc;
    padding-left: 20px;
}

.pwa-installation li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.home-screen-demo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #3b82f6;
}

/* Device Compatibility */
.compatibility-section {
    padding: 80px 0;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.device-category {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.device-category h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.device-category i {
    font-size: 2rem;
    color: #ff6b35;
}

.device-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.device-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.device-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(10px);
}

.device-item i {
    color: #4ade80;
    font-size: 1.2rem;
}

.device-item span {
    color: #cccccc;
    font-weight: 500;
}

.device-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
}

/* Mobile Gaming Benefits */
.mobile-benefits {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.benefit-card i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.benefit-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.benefit-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Mobile Exclusive Promotions */
.mobile-promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
}

.mobile-promos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mobile-promo-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #22c55e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    animation: rotate 8s linear infinite;
}

.mobile-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

.mobile-promo-card .promo-icon {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    position: relative;
    z-index: 2;
}

.mobile-promo-card h3,
.mobile-promo-card p,
.mobile-promo-card .btn {
    position: relative;
    z-index: 2;
}

.mobile-promo-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid #22c55e;
    position: relative;
    z-index: 2;
}

/* Mobile Support - Stay Connected */
.mobile-support {
    padding: 80px 0;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.support-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.support-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.support-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.support-item p {
    color: #cccccc;
    line-height: 1.6;
}

.mobile-cta {
    text-align: center;
    margin-top: 50px;
}

.mobile-cta h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.mobile-cta p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bank Support */
.bank-support {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.05);
}

.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bank-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.bank-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.bank-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.bank-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.bank-item p {
    color: #cccccc;
    margin-bottom: 15px;
}

.bank-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Cryptocurrency Section */
.crypto-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.crypto-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f59e0b;
    transition: all 0.3s ease;
    position: relative;
}

.crypto-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.crypto-item i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.crypto-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.crypto-item p {
    color: #cccccc;
    margin-bottom: 20px;
}

.crypto-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #f59e0b;
}

/* Withdrawal Section */
.withdrawal-section {
    padding: 80px 0;
}

.withdrawal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.withdrawal-feature {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.withdrawal-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.withdrawal-feature i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.withdrawal-feature h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.withdrawal-feature p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.withdrawal-feature img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.withdrawal-methods {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 40px;
}

.withdrawal-methods h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

.methods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

.method-item i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.method-item span {
    color: #cccccc;
    font-weight: 500;
}

/* Currencies Section */
.currencies-section {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.05);
}

.currencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.currency-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.currency-item.primary {
    border-color: #ffd700;
    background: linear-gradient(145deg, rgba(46, 46, 26, 0.9), rgba(62, 62, 22, 0.9));
}

.currency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.currency-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.currency-item.primary i {
    color: #ffd700;
}

.currency-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.currency-item p {
    color: #cccccc;
    margin-bottom: 15px;
}

.currency-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #000;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.currency-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Security Section Enhancement */
.security-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
}

.security-standards {
	padding: 40px 0;
}

/* Banking Support */
.banking-support {
    padding: 80px 0;
}

.responsible-info h3 {
	color: #ffd700;
	font-size: 2rem;
	margin-bottom: 20px;
}

.responsible-info p {
	color: #cccccc;
	font-size: 1rem;
	margin-bottom: 20px;
	line-height: 1.8;
}

.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.support-info h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.support-info p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.support-feature i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.support-feature span {
    color: #cccccc;
    font-weight: 500;
}

.support-visual img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #ff6b35;
}

/* Localized Help */
.localized-help {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.05);
}

.localized-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.local-feature {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.local-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.local-feature i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.local-feature h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.local-feature p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.local-feature img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/* Responsible Gaming Enhancement */
.responsible-gaming {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
}

.responsible-visual img {
    width: 100%;
    max-width: 400px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #ef4444;
}

.responsible-resources {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    margin: 30px 0;
}

.responsible-resources h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

.responsible-resources p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.responsible-resources ul {
    color: #cccccc;
    padding-left: 20px;
}

.responsible-resources li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.responsible-resources strong {
    color: #ffd700;
}

/* Contact Information */
.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.contact-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.contact-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.contact-item p {
    color: #cccccc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-item span {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Support Statistics */
.support-stats {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.05);
}

.promotion-terms {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.promotion-terms h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffd700;
}

.terms-content {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.terms-content ul {
    list-style-type: none;
    padding: 0;
}

.terms-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.terms-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 1.5rem;
}


/* Security Section */
.security-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.security-item {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    flex: 1 1 250px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.security-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.security-item h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.security-item p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
}


/* Payment Terms */
.payment-terms {
    padding: 60px 0;
    background: rgba(255, 107, 53, 0.05);
}

.payment-terms h3 {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .sidebar:hover {
        width: 220px;
    }
}

@media (max-width: 992px) {
    body {
        padding-left: 0;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 250px;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .navbar {
        left: 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-elements {
        height: 300px;
        margin-top: 40px;
    }
    
    .responsible-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .welcome-offer {
        flex-direction: column;
        gap: 20px;
    }
    
    .support-cta,
    .responsible-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 10px;
    }
    
    .hero {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .games-grid,
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons,
    .support-cta,
    .responsible-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .welcome-card {
        padding: 40px 20px;
    }
    
    .offer-amount {
        font-size: 2.5rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .pwa-content,
    .support-content,
    .responsible-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .compatibility-grid, .stats-grid {
			grid-template-columns: 1fr !important;
    }
    
    .mobile-promos {
        grid-template-columns: 1fr;
    }
    
    .pwa-features,
    .support-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .running-content span {
        font-size: 12px;
        margin-right: 30px;
    }
		.container {
			padding: 0 10px;
		}

		.logo span {
			display: none;
		}
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .feature-card,
    .game-card,
    .promo-card {
        margin: 10px;
				padding: 10px;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .update-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .device-category {
        padding: 20px;
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .banks-grid,
    .crypto-grid,
    .currencies-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .withdrawal-methods .methods-list {
        grid-template-columns: 1fr;
    }
    
    .pwa-features {
        grid-template-columns: 1fr;
    }
    
    .mobile-promo-card {
        padding: 20px;
    }
    
    .cashback-rate,
    .tournament-prize,
    .refer-bonus {
        font-size: 2rem;
    }
}