/* Global Styles */
:root {
    --primary-color: #ffcb05;
    --secondary-color: #ff8f00;
    --accent-color: #4CAF50;
    --dark-color: #0a0a0a;
    --light-color: #f9f9f9;
    --text-color: #333333;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --neon-glow: 0 0 10px rgba(255, 203, 5, 0.7), 0 0 20px rgba(255, 203, 5, 0.5), 0 0 30px rgba(255, 203, 5, 0.3);
    --gold-gradient: linear-gradient(135deg, #ffd700, #ffcb05, #ff8f00);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--light-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 15px;
    color: #cccccc;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.login-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.signup-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    margin-left: 10px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin: 10px;
}

.cta-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bonus-btn {
    background-color: var(--primary-color);
}

.reels-btn {
    background-color: var(--secondary-color);
}

.live-btn {
    background-color: var(--accent-color);
}

/* Running Ticker */
.ticker-wrap {
    width: 100%;
    background-color: var(--primary-color);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    margin: 0 30px;
    font-weight: 600;
    color: var(--dark-color);
}

.ticker-item i {
    margin-right: 5px;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Header */
.header {
    background-color: #111;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
    position: relative;
}

.main-nav a {
    color: var(--light-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav li.active a::after {
    width: 100%;
}

.main-nav li.active a {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle.active i:before {
    content: "\f00d";
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(145deg, #141414 0%, #1d1d1d 100%);
        padding: 0;
        z-index: 100;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 500px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 15px;
    }
    
    .main-nav li {
        margin: 0;
        width: 100%;
    }
    
    .main-nav a {
        padding: 12px 15px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .main-nav li:last-child a {
        border-bottom: none;
    }
}

/* Main Content Layout */
.main-content {
    padding: 50px 0;
    min-height: calc(100vh - 200px);
}

.main-content .container {
    display: flex;
    gap: 30px;
}

/* Enhanced Sidebar Styles */
.sidebar {
    width: 280px;
    min-width: 280px;
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    border-radius: 15px;
    padding: 20px;
    margin-right: 30px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 203, 5, 0.2);
    animation: sidebarGlow 3s infinite alternate;
    transition: all 0.4s ease;
}

@keyframes sidebarGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 203, 5, 0.2);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 203, 5, 0.4), 0 0 30px rgba(255, 143, 0, 0.2);
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Search Box - Enhanced */
.search-box {
    position: relative;
    background: rgba(30, 30, 30, 0.6);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 5px;
    border: 1px solid rgba(255, 203, 5, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 203, 5, 0.3);
    transform: translateY(-2px);
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 15px;
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    width: 45px;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: linear-gradient(145deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: scale(1.05);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1e1e1e;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 100;
}

.search-results.active {
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-results ul {
    padding: 0;
    margin: 0;
}

.search-results li {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.search-results li:hover {
    background-color: rgba(255, 203, 5, 0.1);
}

.search-results li:last-child {
    border-bottom: none;
}

/* Categories - Improved */
.categories h3 {
    color: var(--light-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 203, 5, 0.5);
}

.categories h3::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.categories ul {
    padding-left: 5px;
}

.categories li {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    background: rgba(20, 20, 20, 0.6);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 203, 5, 0.05);
    overflow: hidden;
}

.categories li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.categories li.active {
    background: linear-gradient(90deg, rgba(255, 203, 5, 0.1), rgba(20, 20, 20, 0.6));
    border-color: rgba(255, 203, 5, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.categories li.active::before {
    transform: scaleY(1);
}

.categories li:hover {
    transform: translateX(5px);
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 203, 5, 0.2);
}

.categories a {
    color: var(--light-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.categories a i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255, 203, 5, 0.5));
}

.categories li:hover i {
    transform: scale(1.2);
}

.categories .count {
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.8rem;
    display: inline-block;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.categories li:hover .count {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,203,5,0.05)" width="50" height="50" x="0" y="0" /><rect fill="rgba(255,203,5,0.05)" width="50" height="50" x="50" y="50" /></svg>');
    opacity: 0.2;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-section h2 {
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 20px;
}

.hero-description {
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #222 100%);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 203, 5, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 203, 5, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 14px;
    color: #ccc;
}

/* Game Grid */
.trending-games h2,
.featured-offers h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 15px;
}

.trending-games h2::after,
.featured-offers h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

/* Game Card Updated Styles */
.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: #111;
    min-height: 300px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 203, 5, 0.3);
    border-color: rgba(255, 203, 5, 0.3);
}

.game-image {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.game-card:nth-child(1) .game-image {
    background-image: url('../images/1.webp');
}

.game-card:nth-child(2) .game-image {
    background-image: url('../images/3.webp');
}

.game-card:nth-child(3) .game-image {
    background-image: url('../images/5.webp');
}

.game-card:nth-child(4) .game-image {
    background-image: url('../images/4.webp');
}

.game-card:nth-child(5) .game-image {
    background-image: url('../images/13.webp');
}


.game-card:hover .game-image::before {
    opacity: 0.4;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-card h4 {
    padding: 15px 15px 5px;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.game-card p {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #ccc;
    flex-grow: 1;
}

.play-btn {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-color);
    text-align: center;
    padding: 12px;
    font-weight: 600;
    transition: var(--transition);
    margin: 0 15px 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.offer-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.offer-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.offer-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    min-height: 50px;
}

.claim-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.claim-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.comparison-features {
	margin-top: 20px;
}

/* Footer */
.footer {
    background-color: #111;
    padding: 50px 0 20px;
    color: #ccc;
    border-top: 1px solid #222;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    width: 25%;
    padding-right: 20px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 14px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.signup-float-btn {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.signup-float-btn i {
    margin-right: 10px;
}

.signup-float-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Game Categories Page */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
    color: #e0e0e0;
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn:hover {
    background: linear-gradient(145deg, #252525 0%, #2a2a2a 100%);
    color: var(--primary-color);
}

.tab-btn.active {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Remove the overlay since we want content to be always visible */
.game-overlay {
    display: none;
}

/* Live badge is visible always */
.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f44336;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

/* Pulse animation for live badge */
.live-badge {
    animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Blog Page */
.featured-post {
    display: flex;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.featured-image {
    width: 40%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    min-height: 300px;
}

.featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-content {
    width: 60%;
    padding: 30px;
}

.post-category {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.post-meta {
    margin-top: 20px;
    color: #aaa;
    font-size: 14px;
}

.post-meta span {
    margin-right: 20px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.blog-post {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.post-image {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-content {
    padding: 20px;
}

.blog-post h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-post p {
    font-size: 14px;
    margin-bottom: 15px;
}

.filter-tabs {
	margin-bottom: 30px;
}

/* Comparison Table */
.comparison-table {
    margin-bottom: 50px;
    position: relative;
    width: 100%;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    position: relative;
}

.table-container::-webkit-scrollbar {
    height: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.compare-table {
    width: 100%;
    min-width: 600px; /* Ensures table won't be too squished on mobile */
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.compare-table th, .compare-table td {
    padding: 15px;
    text-align: center;
		color: var(--light-color);
    border-bottom: 1px solid #333;
}

.compare-table th {
    background-color: #222;
    color: var(--primary-color);
    font-weight: 600;
}

.compare-table .mio-col {
    background-color: rgba(255, 203, 5, 0.1);
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-section {
    margin-bottom: 50px;
}

.testimonials {
    display: flex;
		
    gap: 20px;
}

.testimonial {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    box-shadow: var(--box-shadow);
}

.quote-mark {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-author {
    margin-top: 20px;
    color: #aaa;
    font-style: italic;
}

/* Payments Page */
.payment-section {
    margin-bottom: 50px;
}

.payment-section h2 {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-section h2 i {
    color: var(--primary-color);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.payment-card {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.payment-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.payment-features {
    margin: 20px 0;
    text-align: left;
}

.payment-features li {
    margin-bottom: 10px;
		color: var(--light-color);
    display: flex;
    align-items: center;
}

.payment-features i {
    color: var(--accent-color);
    margin-right: 10px;
}

.payment-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.payment-btn:hover {
    background-color: var(--secondary-color);
}

.limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.limit-card {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.limit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.limit-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.security-card {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.security-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Promotions Page */
.promo-section {
    margin-bottom: 50px;
}

.featured-promo {
    display: flex;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.featured-promo#squid-game {
    background: linear-gradient(135deg, #ff0000 0%, #ff5722 100%);
}

.promo-content {
    padding: 30px;
    width: 60%;
}

.featured-promo#squid-game .promo-content {
    color: white;
}

.promo-image {
    width: 40%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    min-height: 300px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-promo#squid-game .promo-header h3,
.featured-promo#squid-game .promo-details p,
.featured-promo#squid-game .promo-details ul li {
    color: white;
}

.featured-promo#squid-game .promo-tag {
    background-color: rgba(255, 255, 255, 0.9);
    color: #ff0000;
}

.featured-promo#squid-game .promo-btn {
    background-color: #ffffff;
    color: #ff0000;
}

.featured-promo#squid-game .promo-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.squid-game img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.promo-header {
    margin-bottom: 20px;
}

.promo-header h3 {
	color: var(--primary-color);
	font-size: 32px;
	font-weight: 900;
}

.promo-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.promo-details ul {
    margin: 15px 0;
}

.promo-details li {
    margin-bottom: 10px;
		color: var(--light-color);
    display: flex;
    align-items: center;
}

.promo-details i {
    color: var(--primary-color);
    margin-right: 10px;
}
.promo-details p {
	color: var(--light-color);
}

.promo-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    margin-top: 15px;
}

.promo-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.promo-btn.small {
    padding: 8px 15px;
    font-size: 14px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.promo-card {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.promo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vip-level {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.vip-level:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.level-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #e9be81 100%);
    color: #5a3517;
}

.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #e6e6e6 100%);
    color: #555;
}

.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffeb80 100%);
    color: #856404;
}

.diamond {
    background: linear-gradient(135deg, #b9f2ff 0%, #e6f9ff 100%);
    color: #0c4a6e;
}

.level-benefits {
    text-align: left;
    margin-top: 20px;
}

.level-benefits li {
    margin-bottom: 10px;
		color: var(--light-color);
    display: flex;
    align-items: center;
}

.level-benefits i {
    color: var(--accent-color);
    margin-right: 10px;
}

.vip-gifts {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.gifts-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.gift-item {
    text-align: center;
}

.gift-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.vip-cta {
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    margin-bottom: 50px;
}

.cta-section h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-section .cta-btn {
    background-color: var(--dark-color);
    color: var(--light-color);
    transition: var(--transition);
}

.cta-section .cta-btn:hover {
    background-color: #222;
    color: var(--primary-color);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 4s ease-in-out infinite;
}

/* Helper Classes */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.accent-color {
    color: var(--accent-color);
} 

/* Updated large grid cards for games page */
.large-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.large-grid .game-card {
    min-height: 320px;
    background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
}

.large-grid .game-card .game-image {
    min-height: 180px;
    border-bottom: 2px solid rgba(255, 203, 5, 0.3);
} 

.game-image img, .promo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Join CTA Section */
.join-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.join-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.join-btn i {
    margin-right: 8px;
}

/* Offers Grid Update */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
} 

/* Game Features Section */
.game-features {
    margin-top: 50px;
    margin-bottom: 50px;
}

.game-features h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2rem;
    position: relative;
}

.game-features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.feature-box {
    background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 203, 5, 0.2);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.2);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.feature-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
} 

/* Game filtering */
.game-card {
    display: flex;
}

.game-card.hidden {
    display: none;
} 

/* Floating Background Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    filter: blur(1px);
}

.coin {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 203, 5, 0.7);
    animation: floatCoin 15s linear infinite;
}

.card {
    width: 30px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    animation: floatCard 20s linear infinite;
}

.dice {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    animation: floatDice 18s linear infinite;
}

.chip {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: floatChip 25s linear infinite;
}

@keyframes floatCoin {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes floatDice {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) translateX(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatChip {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(720deg);
        opacity: 0;
    }
}

/* Winner Notification */
.win-notification {
    position: fixed;
    top: -100px;
    right: 20px;
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    border-radius: 10px;
    padding: 15px;
    min-width: 280px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideDown 0.5s forwards, slideUp 0.5s forwards 5.5s;
    opacity: 0;
}

.win-notification.show {
    animation: slideDown 0.5s forwards, slideUp 0.5s forwards 5.5s;
}

@keyframes slideDown {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 90px;
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        top: 20px;
        opacity: 1;
    }
    to {
        top: -100px;
        opacity: 0;
    }
}

.win-notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.win-notification-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    animation: pulseBadge 1.5s infinite;
}

.win-notification-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1rem;
}

.win-notification-body {
    display: flex;
    align-items: center;
}

.win-notification-body img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #333;
    border: 2px solid var(--primary-color);
}

.win-notification-text {
    color: var(--light-color);
    font-size: 0.9rem;
}

.win-notification-amount {
    font-weight: 700;
    color: var(--primary-color);
}

/* Animated Game Card */
.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: #111;
    min-height: 300px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 203, 5, 0.3);
    border-color: rgba(255, 203, 5, 0.3);
}

.game-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::after {
    animation: shimmer 1.5s forwards;
}

@keyframes shimmer {
    0% {
        opacity: 0;
        transform: rotate(45deg) translateX(-100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translateX(100%);
    }
}

/* Enhanced Live Badge */
.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f44336;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

/* Button Animation */
.pulse {
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 203, 5, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 203, 5, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 203, 5, 0);
    }
}

.float {
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Glowing Header Animation */
.hero-section h1, .hero-section h2 {
    text-shadow: 0 0 5px rgba(255, 203, 5, 0.3), 0 0 10px rgba(255, 203, 5, 0.2);
    animation: glowText 3s infinite alternate;
}

@keyframes glowText {
    0% {
        text-shadow: 0 0 5px rgba(255, 203, 5, 0.3), 0 0 10px rgba(255, 203, 5, 0.2);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 203, 5, 0.5), 0 0 20px rgba(255, 203, 5, 0.3), 0 0 30px rgba(255, 203, 5, 0.2);
    }
} 