/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow-x: hidden;
    margin-left: 80px;
}

a {
	text-decoration: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Ticker */
.ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    z-index: 1000;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.ticker {
    display: flex;
    animation: scroll 80s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 24px;
    color: #4ecdc4;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #4ecdc4;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Left Sidebar */
.left-sidebar {
    position: fixed;
    left: 0;
		top: 0;
    width: 80px;
    height: calc(100vh);
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.left-sidebar.expanded {
    width: 280px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.sidebar-toggle {
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover {
    background: linear-gradient(45deg, #45b7d1, #4ecdc4);
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: rgba(78, 205, 196, 0.2);
    border-left-color: #4ecdc4;
    color: #4ecdc4;
}

.sidebar-item i {
    font-size: 20px;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-item span {
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.left-sidebar.expanded .sidebar-item span {
    opacity: 1;
}

.sidebar-category {
    padding: 20px 20px 10px;
    color: #4ecdc4;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 0.3s ease;
}

.left-sidebar.expanded .sidebar-category {
    opacity: 1;
}

.sidebar-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
}

.sidebar-support {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 10px;
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.sidebar-support:hover {
    background: rgba(255, 107, 107, 0.3);
    color: #fff;
}

.sidebar-support i {
    font-size: 18px;
    margin-right: 10px;
}

.sidebar-support span {
    opacity: 0;
    transition: all 0.3s ease;
}

.left-sidebar.expanded .sidebar-support span {
    opacity: 1;
}

/* Adjust ticker and navbar for sidebar */
.ticker-wrap {
    left: 80px;
    width: calc(100% - 80px);
}

.navbar {
    left: 80px;
    width: calc(100% - 80px);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-outline {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.btn-outline:hover {
    background: #4ecdc4;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.btn-mega {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.btn-mega:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.btn-mega small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

.btn-gold {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(78, 205, 196, 0.1), rgba(69, 183, 209, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.coin, .gem {
    position: absolute;
    font-size: 24px;
    animation: floatCoins 4s ease-in-out infinite;
}

.coin-1 {
    color: #feca57;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.coin-2 {
    color: #ff6b6b;
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.coin-3 {
    color: #4ecdc4;
    bottom: 30%;
    left: 40%;
    animation-delay: 2s;
}

.gem-1 {
    color: #ff9ff3;
    top: 70%;
    right: 20%;
    animation-delay: 0.5s;
}

.gem-2 {
    color: #54a0ff;
    bottom: 40%;
    right: 50%;
    animation-delay: 1.5s;
}

@keyframes floatCoins {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 24px;
    color: #4ecdc4;
}

.hero-cta {
    margin-top: 50px;
}

/* Welcome Bonus Section */
.welcome-bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
}

.bonus-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    to { box-shadow: 0 0 40px rgba(78, 205, 196, 0.3); }
}

.bonus-icon {
    font-size: 80px;
    color: #feca57;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.bonus-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #feca57;
}

.bonus-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Featured Games Section */
.featured-games {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #ff6b6b;
    animation: fire 1s ease-in-out infinite alternate;
}

@keyframes fire {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
    position: relative;
    height: 200px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
	display: flex;
	align-items: center;
	justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-img {
	display: flex;
	width: 200px;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
}

.promo-img img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.play-btn:hover {
    transform: scale(1.1);
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
}

.tag.hot {
    background: linear-gradient(45deg, #ff6b6b, #ff9ff3);
}

.tag.new {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
}

.tag.popular {
    background: linear-gradient(45deg, #feca57, #ff9ff3);
}

/* Payment Methods Section */
.payment-methods {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.1), rgba(255, 107, 107, 0.1));
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.payment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.payment-card i {
    font-size: 40px;
    color: #4ecdc4;
    margin-bottom: 15px;
    display: block;
}

.payment-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: break-word;
}

.payment-card p {
    opacity: 0.8;
    font-size: 14px;
}

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.9);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 20px;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #4ecdc4;
}

.security-badges {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #4ecdc4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.fab span {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.fab:hover span {
    opacity: 1;
    transform: translateX(0);
}

.deposit-btn {
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
}

.fab.play-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
}

.fab:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        display: flex;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-radius: 10px;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    body {
        margin-left: 0;
    }
    
    .left-sidebar {
        transform: translateX(-100%);
        width: 280px;
        z-index: 9999;
    }
    
    .left-sidebar.expanded {
        transform: translateX(0);
        width: 280px;
    }
    
    .ticker-wrap {
        left: 0;
        width: 100%;
    }
    
    .navbar {
        left: 0;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .bonus-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .bonus-icon {
        font-size: 60px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .fab {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }

		.logo-text {
			display: none;
		}

		.btn {
			padding: 10px 15px;
		}
		.hero-content {
			padding-top: 50px;
		}
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-mega {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .ticker-item {
        font-size: 12px;
        padding: 0 30px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .hero {
        margin-top: 90px;
    }
}

/* Game Features Section */
.game-features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(150, 206, 180, 0.1), rgba(254, 202, 87, 0.1));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}