/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0e1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ticker */
.ticker-container {
    background: #111827;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.ticker-item.currency {
    background: rgba(255, 255, 255, 0.1);
}

.ticker-item.winner {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
}

.ticker-item.winner.active {
    display: flex;
}

.winner-slider {
    width: 400px;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media screen and (max-width: 1220px) {
	.winner-slider {
		width: 300px;
	}
}

@media screen and (max-width: 480px) {
	.winner-slider {
		margin-top: 5px;
	}
	.button-group {
		margin-top: 5px;
	}
}

.btn-quick {
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-quick.bonuses {
    background: #ff6b6b;
}

.btn-quick.free-money {
    background: #4ecdc4;
}

.btn-quick.vip {
    background: #ffd93d;
    color: #000;
}

.btn-quick:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.ticker-item i {
    font-size: 12px;
}

/* Responsive styles for ticker */
@media (max-width: 992px) {
    .ticker-container {
        padding: 8px 15px;
    }
    
    .ticker-group {
        gap: 5px;
    }
    
    .ticker-item {
        padding: 5px 10px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .ticker-container {
        flex-wrap: wrap;
        padding: 5px 10px;
    }
    
    .currency-group {
        order: 1;
        margin-bottom: 5px;
        overflow-x: auto;
        width: 100%;
        justify-content: space-between;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .currency-group::-webkit-scrollbar {
        display: none;
    }
    
    .button-group {
        order: 2;
        margin-bottom: 5px;
        overflow-x: auto;
        width: 100%;
        justify-content: space-between;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .button-group::-webkit-scrollbar {
        display: none;
    }
    
    .winners-group {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .winner-slider {
        width: 400px;
        min-width: unset;
    }
}

@media (max-width: 576px) {
    .ticker-item {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .btn-quick {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .winner-slider {
        width: 300px;
    }
}

/* Header */
.header {
    background: #191e32;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    text-transform: lowercase;
}

@media (max-width: 1220px) {
	.logo-text {
		display: none;
	}
}

.main-nav {
    display: flex;
    gap: 5px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

@media screen and (max-width: 1220px) {
	.nav-link {
		padding: 8px 12px;
	}
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quick-buttons {
    display: flex;
    gap: 10px;
}

.btn-quick {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-quick.bonuses {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.btn-quick.free-money {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.btn-quick.vip {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
}

.btn-quick:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-auth {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-auth.login {
    color: #ffffff;
    border: 1px solid #333;
}

.btn-auth.signup {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.btn-auth:hover {
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0a0e1a;
    z-index: 9999;
    transition: right 0.3s ease;
    border-left: 1px solid #333;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 30px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

/* Main Layout */
.main-layout {
    display: flex;
    min-height: calc(100vh - 120px);
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: #111827;
    padding: 20px;
    border-right: 1px solid #333;
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #191e32;
    color: #fff;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.categories {
    margin-bottom: 30px;
    background: #191e32;
    border-radius: 10px;
    overflow: hidden;
}

.categories-title {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #111827;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.categories-title i {
    transition: transform 0.3s ease;
}

.categories-title.collapsed i {
    transform: rotate(-90deg);
}

.category-list {
    padding: 10px 0;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease, display 0.3s ease;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.category-item i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.category-item.trending i {
    color: #f44336;
}

.category-item.featured i {
    color: #ffd700;
}

.category-item.vip i {
    color: #9c27b0;
}

.category-item.jackpot i {
    color: #e91e63;
}

.category-item.latest i {
    color: #00bcd4;
}

.category-item.popular i {
    color: #ff9800;
}

.category-item.new i {
    color: #4caf50;
}

.category-item span:first-of-type {
    flex-grow: 1;
}

.count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.category-item.trending .count {
    background: #f44336;
}

.category-item.featured .count {
    background: #ffd700;
    color: #000;
}

.category-item.vip .count {
    background: #9c27b0;
}

.category-item.jackpot .count {
    background: #e91e63;
}

.category-item.latest .count {
    background: #00bcd4;
}

.category-item.popular .count {
    background: #ff9800;
}

.category-item.new .count {
    background: #4caf50;
}

.category-item.active {
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.category-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: currentColor;
}

.category-item.trending.active::after {
    background-color: #f44336;
}

.category-item.featured.active::after {
    background-color: #ffd700;
}

.category-item.vip.active::after {
    background-color: #9c27b0;
}

.category-item.jackpot.active::after {
    background-color: #e91e63;
}

.category-item.latest.active::after {
    background-color: #00bcd4;
}

.category-item.popular.active::after {
    background-color: #ff9800;
}

.category-item.new.active::after {
    background-color: #4caf50;
}

.support-widget {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #191e32;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.support-icon {
    position: relative;
    color: #FFD700;
    font-size: 24px;
}

.support-status {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #00ff88;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
}

.support-title {
    font-weight: 600;
    color: #ffffff;
}

.support-subtitle {
    font-size: 12px;
    color: #9ca3af;
}

/* Content */
.content {
    flex: 1;
    padding: 30px;
}

/* Page Header */
.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-description {
    font-size: 16px;
    color: #9ca3af;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a3441 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero {
    display: flex;
    align-items: center;
		background: url('images/3.avif');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
		padding-right: 400px;
}

@media screen and (max-width: 1024px) {
	.hero-text {
		padding-right: 0;
	}
}

.welcome-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.btn-secondary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    min-height: 300px;
}

/* Features */
.features {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

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

.feature-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.section-title i {
    color: #FFD700;
    font-size: 32px;
}

/* Games Grid */
.games-section {
    margin-bottom: 50px;
}

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

.games-grid.large {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.game-card {
    background: #1f2937;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: #FFD700;
}

.game-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #374151, #4b5563);
    overflow: hidden;
}

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

.game-provider {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.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;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play,
.btn-demo {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-play {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.btn-demo {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid #ffffff;
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.game-desc {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 15px;
}

.game-stats {
    display: flex;
    gap: 10px;
}

.rtp,
.volatility {
    background: #374151;
    color: #9ca3af;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.game-card.featured {
    border: 2px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Live Casino */
.live-casino,
.live-casino-section {
    margin-bottom: 50px;
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.live-game-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.live-game-card.large {
    background: #1f2937;
    padding: 0;
    overflow: hidden;
}

.live-game-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.live-game-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.live-game-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.live-game-card p {
    color: #9ca3af;
    margin-bottom: 20px;
}

.btn-live,
.btn-join {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-live:hover,
.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.live-game-image {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #374151, #4b5563);
}

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

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc2626;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.bangla-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.players-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.live-game-info {
    padding: 20px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Steps */
.how-to-start {
    margin-bottom: 50px;
}

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

.step-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.step-card p {
    color: #9ca3af;
}

/* Testimonials */
.testimonials {
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.6;
}

.testimonial-author {
    color: #FFD700;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1f2e, #2a3441);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 50px;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 30px;
}

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

.btn-cta {
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.btn-cta.secondary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
}

.btn-cta.tertiary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.btn-cta:not(.primary):not(.secondary):not(.tertiary) {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid #333;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Action Section */
.action-section {
    margin-bottom: 50px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-action {
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-action.primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.btn-action.secondary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
}

.btn-action.tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid #333;
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Blog Specific Styles */
.blog-header {
    background: linear-gradient(135deg, #1a1f2e, #2a3441);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.featured-story {
    margin-bottom: 50px;
}

.story-card {
    background: #1f2937;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.story-card.featured {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #1f2937, #374151);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.story-icon {
    font-size: 24px;
    color: #FFD700;
}

.story-date {
    color: #9ca3af;
    font-size: 14px;
}

.story-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.story-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.winner-name,
.game-name,
.win-amount {
    background: #374151;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.win-amount {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.story-text {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-story {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-story:not(.secondary) {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.btn-story.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid #333;
}

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

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

.player-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
}

.player-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 2px;
}

.location {
    color: #9ca3af;
    font-size: 12px;
}

.win-badge {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

.game-played {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: 600;
    font-size: 14px;
}

.story-stats {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.multiplier,
.payout-method {
    background: #374151;
    color: #9ca3af;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.trending-games {
    margin-bottom: 50px;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    background: #1f2937;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.trending-item:hover {
    transform: translateY(-2px);
    border-color: #FFD700;
}

.trending-rank {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.trending-info {
    flex: 1;
}

.trending-info h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.trending-info p {
    color: #9ca3af;
    font-size: 14px;
}

.btn-trending {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-trending:hover {
    transform: translateY(-2px);
}

.submit-story {
    margin-bottom: 50px;
}

.submit-card {
    background: linear-gradient(135deg, #1a1f2e, #2a3441);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.submit-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.submit-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.submit-card p {
    color: #9ca3af;
    margin-bottom: 30px;
}

.submit-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-submit {
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-submit.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.btn-submit.secondary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Forum/Comparison Styles */
.comparison-section {
    margin-bottom: 50px;
}

.comparison-table-container {
    overflow-x: auto;
    background: #1f2937;
    border-radius: 12px;
    border: 1px solid #333;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.comparison-table th {
    background: #374151;
    color: #ffffff;
    font-weight: 700;
}

.comparison-table td {
    color: #9ca3af;
}

.winner-column {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    color: #FFD700 !important;
}

.winner-cell {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    color: #FFD700 !important;
    font-weight: 700;
}

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

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.advantage-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.advantage-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.advantage-card h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #9ca3af;
    line-height: 1.6;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    background: #1f2937;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    border-color: #FFD700;
}

.benefit-icon {
    font-size: 32px;
    color: #FFD700;
    min-width: 50px;
}

.benefit-content h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-content p {
    color: #9ca3af;
}

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

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.security-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
}

.security-icon {
    font-size: 48px;
    color: #00ff88;
    margin-bottom: 20px;
}

.security-card h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.security-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.mobile-comparison {
    margin-bottom: 50px;
}

.mobile-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.mobile-card {
    background: #1f2937;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.mobile-card.winner {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #1f2937, #374151);
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mobile-header h3 {
    color: #ffffff;
    font-weight: 700;
}

.winner-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.mobile-features {
    list-style: none;
}

.mobile-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #9ca3af;
}

.mobile-features .fa-check {
    color: #00ff88;
}

.mobile-features .fa-times {
    color: #ef4444;
}

/* Payment Styles */
.payment-methods {
    margin-bottom: 50px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.payment-card {
    background: #1f2937;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-card.featured {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #1f2937, #374151);
}

.payment-card.crypto {
    border-color: #f59e0b;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.payment-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.payment-info h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-info p {
    color: #9ca3af;
    margin-bottom: 15px;
}

.payment-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature {
    background: #374151;
    color: #9ca3af;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.payment-limits {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.limit {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.btn-payment {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-payment:hover {
    transform: translateY(-2px);
}

.banking-tips {
    margin-bottom: 50px;
}

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

.tip-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.tip-icon {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 15px;
}

.tip-card h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.tip-card p {
    color: #9ca3af;
    line-height: 1.6;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #1f2937;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #374151;
}

.faq-question h3 {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #9ca3af;
    line-height: 1.6;
}

.banking-security {
    margin-bottom: 50px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-feature {
    background: #1f2937;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-2px);
    border-color: #00ff88;
}

.security-feature .security-icon {
    font-size: 32px;
    color: #00ff88;
    min-width: 50px;
}

.security-content h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.security-content p {
    color: #9ca3af;
}

.transaction-demo {
    margin-bottom: 50px;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transaction-item {
    background: #1f2937;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.transaction-item.success {
    border-left: 4px solid #00ff88;
}

.transaction-item:hover {
    transform: translateY(-2px);
}

.transaction-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.transaction-type {
    color: #ffffff;
    font-weight: 600;
}

.transaction-method {
    color: #9ca3af;
    font-size: 14px;
}

.transaction-amount {
    color: #FFD700;
    font-size: 18px;
    font-weight: 700;
}

.transaction-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ff88;
    font-size: 14px;
    font-weight: 600;
}

/* Promotions Styles */
.welcome-package {
    margin-bottom: 50px;
}

.package-card {
    background: linear-gradient(135deg, #1a1f2e, #2a3441);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border: 2px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.package-header {
    margin-bottom: 30px;
}

.package-icon {
    font-size: 64px;
    color: #FFD700;
    margin-bottom: 15px;
}

.package-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
}

.package-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.package-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

.offer-amount {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.offer-text {
    display: block;
    color: #9ca3af;
    font-weight: 600;
    margin-top: 5px;
}

.offer-plus {
    font-size: 32px;
    color: #FFD700;
    font-weight: 800;
}

.package-code {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #FFD700;
}

.code-label {
    color: #9ca3af;
    margin-right: 10px;
}

.code-value {
    color: #FFD700;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
}

.package-details p {
    color: #9ca3af;
    margin-bottom: 30px;
}

.btn-package {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.ongoing-rewards {
    margin-bottom: 50px;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.reward-card {
    background: #1f2937;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.reward-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.reward-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.reward-content h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.reward-offer {
    color: #FFD700;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.reward-content p {
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.6;
}

.reward-time {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.btn-reward {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-reward:hover {
    transform: translateY(-2px);
}

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

.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.vip-card {
    background: #1f2937;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    text-align: center;
}

.vip-card.featured {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #1f2937, #374151);
    transform: scale(1.05);
}

.vip-card.premium {
    border: 2px solid #8b5cf6;
    background: linear-gradient(135deg, #1f2937, #2d1b69);
}

.vip-card:hover {
    transform: translateY(-5px);
}

.vip-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.vip-tier {
    margin-bottom: 25px;
}

.tier-name {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 5px;
}

.tier-requirement {
    color: #9ca3af;
    font-size: 14px;
}

.vip-features {
    margin-bottom: 25px;
}

.vip-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #9ca3af;
}

.vip-feature i {
    color: #FFD700;
    width: 20px;
}

.btn-vip {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-vip:hover {
    transform: translateY(-2px);
}

.special-promos {
    margin-bottom: 50px;
}

.promo-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.promo-item {
    background: #1f2937;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-2px);
    border-color: #FFD700;
}

.promo-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 15px;
}

.promo-date i {
    font-size: 20px;
}

.promo-content h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-content p {
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.6;
}

.promo-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.promo-feature {
    background: #374151;
    color: #9ca3af;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.activation-guide {
    margin-bottom: 50px;
}

.activation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step {
    background: #1f2937;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.step:hover {
    transform: translateY(-2px);
    border-color: #FFD700;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: #9ca3af;
    font-size: 14px;
}

.active-promotions {
    margin-bottom: 50px;
}

.active-promos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.active-promo {
    background: #1f2937;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.active-promo.urgent {
    border: 2px solid #ef4444;
    background: linear-gradient(135deg, #1f2937, #2d1b1b);
    animation: urgentPulse 2s infinite;
}

.active-promo:hover {
    transform: translateY(-5px);
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font-weight: 600;
    margin-bottom: 15px;
}

.promo-details h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-details p {
    color: #9ca3af;
    margin-bottom: 15px;
}

.promo-prize {
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-promo {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-promo.urgent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: urgentButton 1s infinite;
}

.btn-promo:hover {
    transform: translateY(-2px);
}

@keyframes urgentPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

@keyframes urgentButton {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer */
.footer {
    background: #111827;
    border-top: 1px solid #333;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: #9ca3af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-layout {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: static;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid #333;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .package-offer {
        flex-direction: column;
        gap: 10px;
    }
    
    .offer-plus {
        transform: rotate(90deg);
    }
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .quick-buttons {
        display: none;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content {
        padding: 20px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table-container {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .mobile-cards {
        grid-template-columns: 1fr;
    }
    
    .transaction-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item,
    .security-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .vip-card.featured {
        transform: none;
    }
    
    .vip-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    

    
    .logo-text {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-benefits {
        grid-template-columns: 1fr;
    }
    
    .activation-steps {
        grid-template-columns: 1fr;
    }
    
    .active-promos {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.hidden { display: none; }
.visible { display: block; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Selection Styling */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

/* Focus Styling */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    animation: spin 1s linear infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .ticker-container,
    .header,
    .sidebar,
    .footer,
    .mobile-menu {
        display: none;
    }
    
    .main-layout {
        flex-direction: column;
    }
    
    .content {
        padding: 0;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
    }
}