/* Main CSS Variables */
:root {
    --primary: #ffc107;
    --primary-dark: #e0a800;
    --secondary: #ff5722;
    --dark: #101523;
    --darker: #0a0e18;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    --glow: 0 0 15px rgba(255, 193, 7, 0.5);
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--darker);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.currency-rates {
    display: flex;
		flex-wrap: wrap;
}

.win-ticker {
		align-self: flex-start;
    position: relative;
    height: 20px; /* Set a fixed height */
}

.rate, .win {
    margin-right: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ccc;
}

.win {
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease;
}

.win.active {
    opacity: 1;
}

.rate i, .win i {
    margin-right: 5px;
    color: var(--primary);
}

.quick-links {
    display: flex;
}

.bonus-btn, .money-btn, .vip-btn {
    padding: 5px 15px;
    margin-left: 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.bonus-btn i, .money-btn i, .vip-btn i {
    margin-right: 5px;
}

.bonus-btn {
    background-color: var(--primary);
    color: var(--dark);
}

.money-btn {
    background-color: transparent;
    border: 1px solid var(--primary);
}

.vip-btn {
    background-color: var(--secondary);
    color: var(--light);
}

.bonus-btn:hover, .money-btn:hover, .vip-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

/* Header Styles */
header {
    background-color: var(--darker);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    max-width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

.game-providers {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.provider-logo {
    height: 30px;
    margin-right: 15px;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.login-btn, .signup-btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.login-btn {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    margin-right: 10px;
}

.signup-btn {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

.login-btn:hover {
    background-color: rgba(255, 193, 7, 0.1);
}

.signup-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    background-color: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.main-nav li {
    position: relative;
}

.main-nav li a {
    display: block;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 15px;
    color: #ccc;
}

.main-nav li.active a {
    color: var(--primary);
}

.main-nav li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

.main-nav li a:hover {
    color: var(--primary);
}

/* Main Container Layout */
.main-container {
    display: flex;
    max-width: 1500px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Sidebar Styles */
.sidebar {
    width: 260px;
    background-color: var(--darker);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 20px;
    height: calc(100vh - 40px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.search-container {
    position: relative;
    margin-bottom: 20px;
}

.search-container input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 50px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 14px;
}

.search-container button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--primary);
    font-size: 16px;
    padding: 5px;
}

.sidebar-categories h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #ccc;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-categories ul li {
    margin-bottom: 10px;
}

.sidebar-categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-categories ul li a:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary);
}

.sidebar-categories ul li a i {
    margin-right: 10px;
    color: var(--primary);
}

.count {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--primary);
    border-radius: 50px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

/* Content Area */
.content {
    flex: 1;
    padding-left: 20px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    height: 450px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/3.avif');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/1.avif');
}

.slide:nth-child(4) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/lambo.png');
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 30px 50px;
    max-width: 60%;
}

.bonus-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.slide h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ddd;
}

.slide p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
}

.claim-btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.claim-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.prev-btn, .next-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Intro Section */
.intro-section {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.section-content p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 15px), 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.feature-block {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-block h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-block p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.feature-block ul {
    padding-left: 20px;
}

.feature-block ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
    position: relative;
    list-style-type: disc;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-btn {
    background-color: var(--dark);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
}

/* Games Section */
.games-section {
    margin-bottom: 30px;
}

.games-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.games-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.game-card {
    background-color: var(--darker);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-thumbnail {
    height: 150px;
    background: linear-gradient(to right, #0f0c29, #302b63);
    position: relative;
}

.game-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background-color: var(--primary);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.game-card:hover .play-btn {
    transform: translateY(0);
}

.play-btn:hover {
    background-color: var(--primary-dark);
}

.game-card h4 {
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
}

/* Bonus Section */
.bonus-section {
    margin-bottom: 30px;
    background-color: var(--darker);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.bonus-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.bonus-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.bonus-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.bonus-icon i {
    font-size: 24px;
    color: var(--primary);
}

.bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bonus-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.claim-bonus-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.claim-bonus-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Fixed Bottom Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.floating-btn i {
    margin-right: 10px;
}

.claim-btn {
    background-color: var(--primary);
    color: var(--dark);
    animation: pulse 2s infinite;
}

.join-btn {
    background-color: var(--secondary);
    color: var(--light);
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--darker);
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    color: #ccc;
}

.footer-nav h4, .footer-payments h4, .footer-contact h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    font-size: 14px;
    color: #ccc;
}

.footer-nav ul li a:hover {
    color: var(--primary);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-icons i {
    font-size: 24px;
    color: #ccc;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
}

.social-icons a i {
    font-size: 16px;
    color: #ccc;
}

.social-icons a:hover i {
    color: var(--dark);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: #ccc;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Replace with fade animation for winners */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .main-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
				position: relative;
        margin-bottom: 20px;
        height: auto;
        max-height: none;
    }
    
    .content {
        padding-left: 0;
    }
}

@media (max-width: 992px) {
    .feature-blocks {
        grid-template-columns: 1fr;
    }
    
    .slide-content {
        max-width: 80%;
    }
    
    .slide h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 20px;
    }
    
    .game-providers {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .top-bar {
        flex-direction: column;
        align-items: center;
    }
    
    .ticker-container {
        width: 100%;
				flex-direction: column;
        margin-bottom: 15px;
    }
    
    .quick-links {
        justify-content: center;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
    }
    
    .slide-content {
        max-width: 100%;
        padding: 30px;
    }
    
    .slide h1 {
        font-size: 1.5rem;
    }
    
    .slide h2 {
        font-size: 1rem;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-links {
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-links a {
        margin: 5px 10px;
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
} 

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ffff00;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccc00;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ffff00 #000000;
}
