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

a {
	text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Running Ticker */
.ticker-container {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    color: #000;
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
		top: 0;
		left: 0;
		right: 0;
    z-index: 1000;
    font-weight: 600;
    font-size: 14px;
}

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

.ticker-item {
    margin-right: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ticker-item i {
    color: #DC2626;
}

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

/* Header */
.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 0;
    transition: transform 0.3s ease;
}

@media (max-width: 480px) {
	.header {
		top: 30px;
	}
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    object-position: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
		margin-left: 10px;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-success,
.btn-warning,
.btn-danger {
		display: flex;
		justify-content: center;
		align-items: center;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-success {
    background: linear-gradient(45deg, #10B981, #059669);
    color: #ffffff;
}

.btn-success:hover {
    background: linear-gradient(45deg, #059669, #10B981);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-warning {
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: #ffffff;
}

.btn-warning:hover {
    background: linear-gradient(45deg, #D97706, #F59E0B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-danger {
    background: linear-gradient(45deg, #DC2626, #B91C1C);
    color: #ffffff;
}

.btn-danger:hover {
    background: linear-gradient(45deg, #B91C1C, #DC2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-primary.large,
.btn-secondary.large,
.btn-success.large,
.btn-warning.large,
.btn-danger.large {
    padding: 16px 32px;
    font-size: 16px;
    margin: 8px;
}

/* Layout */
.main-layout {
    display: flex;
    min-height: calc(100vh - 120px);
    margin-top: 120px; /* Account for fixed header */
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    position: sticky;
    top: 120px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.sidebar-content {
    padding: 2rem;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

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

.search-box input::placeholder {
    color: #888;
}

.sidebar-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.category-list {
    list-style: none;
}

.category-item a {
    display: flex;
    align-items: center;
    gap: 12px;
		color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 4px;
}

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

.category-item a i {
    width: 20px;
    text-align: center;
}

.category-item a span:first-of-type {
    flex: 1;
    color: #ffffff;
}

.category-item a .count {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem;
    max-width: calc(100vw - 280px);
}

/* Hero Sections */
.hero,
.games-hero,
.blog-hero,
.forum-hero,
.promotions-hero,
.payments-hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before,
.games-hero::before,
.blog-hero::before,
.forum-hero::before,
.promotions-hero::before,
.payments-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFA500" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content,
.games-hero-content,
.blog-hero-content,
.forum-hero-content,
.promotions-hero-content,
.payments-hero-content {
    position: relative;
    z-index: 2;
}

.hero h1,
.games-hero h1,
.blog-hero h1,
.forum-hero h1,
.promotions-hero h1,
.payments-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero h2,
.games-hero h2,
.blog-hero h2,
.forum-hero h2,
.promotions-hero h2,
.payments-hero h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero p,
.games-hero p,
.blog-hero p,
.forum-hero p,
.promotions-hero p,
.payments-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Features */
.features {
    margin-bottom: 4rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Game Highlights */
.game-highlights {
    margin-bottom: 4rem;
}

.game-highlights h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-section {
    margin-bottom: 3rem;
}

.game-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-card {
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.game-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.game-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Game Cards Large */
.game-card-large {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.game-card-large:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.game-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    pointer-events: none;
}

.game-info {
    flex: 1;
}

.game-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.provider {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rtp,
.volatility,
.live-status {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-actions {
    display: flex;
    gap: 0.5rem;
}

/* Category Tabs */
.category-tabs {
    display: flex;
		overflow-x: auto;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover,
.tab-btn.active {
    color: #FFD700;
    border-bottom-color: #FFD700;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

/* Steps */
.how-to-start,
.how-to-activate {
    margin-bottom: 4rem;
}

.how-to-start h2,
.how-to-activate h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.step-card,
.step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-card:hover,
.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

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

.step-content h3,
.step-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.step-content p,
.step-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Hot Offers */
.hot-offers {
    margin-bottom: 4rem;
}

.hot-offers h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.offer-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border-color: #FFD700;
}

.offer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.offer-card i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.offer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Testimonials */
.testimonials {
    margin-bottom: 4rem;
}

.testimonials h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.quote {
    margin-bottom: 1rem;
}

.quote i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

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

.security-badge {
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.security-badge i {
    font-size: 2rem;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.security-badge p {
    color: #10B981;
    font-weight: 600;
}

/* Stories */
.featured-stories {
    margin-bottom: 4rem;
}

.featured-stories h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.story-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border-color: #FFD700;
}

.story-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.player-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.player-details h3 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
}

.win-amount {
    color: #10B981;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.game-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-content p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat i {
    color: #FFD700;
}

/* Trending Games */
.trending-games {
    margin-bottom: 4rem;
}

.trending-games h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.trending-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.rank {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    min-width: 40px;
    text-align: center;
}

.game-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.trending-item .game-image {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.trending-item .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trending-item:hover .game-image img {
    transform: scale(1.05);
}

.game-details {
    flex: 1;
}

.game-details h4 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.game-details p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .trending-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .game-info {
        flex-direction: column;
        text-align: center;
    }

    .trending-item .game-image {
        width: 100%;
        height: 160px;
        margin-bottom: 1rem;
    }

    .rank {
        margin-bottom: 0.5rem;
    }

    .game-actions {
        width: 100%;
        margin-top: 1rem;
    }

    .game-actions .btn-primary {
        width: 100%;
    }
}

/* Comparison Table */
.comparison-section {
    margin-bottom: 4rem;
}

.comparison-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comparison-table-container {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th.winner {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    color: #FFD700;
}

.comparison-table td.winner {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    font-weight: 600;
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.9);
}

/* Advantages */
.advantages-section {
    margin-bottom: 4rem;
}

.advantages-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #000;
}

.advantage-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.advantage-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Perks */
.exclusive-perks {
    margin-bottom: 4rem;
}

.exclusive-perks h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.perks-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.perk-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.perk-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.perk-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    flex-shrink: 0;
}

.perk-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.perk-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Security */
.security-section,
.payment-security {
    margin-bottom: 4rem;
}

.security-section h2,
.payment-security h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.security-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.4);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #ffffff;
}

.security-card h3 {
    color: #10B981;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.security-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Community Verdict */
.community-verdict {
    margin-bottom: 4rem;
}

.community-verdict h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.verdict-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.user-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.review-rating {
    margin-bottom: 1rem;
}

.review-rating i {
    color: #FFD700;
    margin-right: 0.25rem;
}

.review-card p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

/* Promotions */
.featured-promotion {
    margin-bottom: 4rem;
}

.featured-promo-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #DC2626, #B91C1C);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-content {
    display: flex;
		flex-direction: column;
		text-align: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.promo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
    flex-shrink: 0;
}

.promo-details h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.promo-offer {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bonus-percent {
    font-size: 4rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
}

.bonus-text {
    font-size: 1.2rem;
    color: #ffffff;
}

.promo-extras {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.extra-item {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.promo-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.promo-action {
    text-align: center;
}

.promo-terms {
    margin-top: 1rem;
}

.promo-terms small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.ongoing-promotions {
    margin-bottom: 4rem;
}

.ongoing-promotions h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.promotion-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.promo-timing {
    background: linear-gradient(45deg, #DC2626, #B91C1C);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.promotion-card .promo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

.promotion-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.promotion-card .promo-offer {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
}

.promotion-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.promo-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-features i {
    color: #10B981;
}

/* VIP Program */
.vip-program {
    margin-bottom: 4rem;
}

.vip-program h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vip-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.vip-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vip-tier {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.vip-tier.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border-color: #FFD700;
    transform: scale(1.05);
}

.vip-tier:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

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

.tier-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #000;
}

.vip-tier h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tier-requirement {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.tier-benefits {
    list-style: none;
    text-align: left;
}

.tier-benefits li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.vip-features h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.vip-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.vip-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.vip-feature i {
    color: #FFD700;
    font-size: 1.2rem;
}

.vip-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Special Events */
.special-events {
    margin-bottom: 4rem;
}

.special-events h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
}

.event-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.event-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.event-rewards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.reward-item {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Payments */
.speed-showcase {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.speed-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.speed-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
    flex-shrink: 0;
}

.speed-content h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.speed-time {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.speed-content p {
    color: rgba(255, 255, 255, 0.8);
}

.speed-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.payment-methods {
    margin-bottom: 4rem;
}

.payment-methods h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.payment-category h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.payment-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border-color: #FFD700;
}

.payment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.payment-card .payment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #000;
}

.payment-info h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.payment-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.payment-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.payment-limits {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

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

.limit-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.25rem;
}

.limit-value {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
}

.banking-tips {
    margin-bottom: 4rem;
}

.banking-tips h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #000;
}

.tip-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ */
.payment-faq {
    margin-bottom: 4rem;
}

.payment-faq h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Submit Story */
.submit-story {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.submit-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.submit-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.submit-reward {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.submit-reward i {
    font-size: 2rem;
    color: #FFD700;
}

.submit-reward span {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.2rem;
}

.submit-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Join Community */
.join-community {
    margin-bottom: 4rem;
}

.join-community h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.join-community > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-item i {
    color: #FFD700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.9);
}

.community-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* CTA Sections */
.games-cta,
.forum-cta,
.promotions-cta,
.payments-cta {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.95);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-layout {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        order: 2;
    }
    
    .main-content {
        max-width: 100%;
        order: 1;
    }
    
    .speed-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .speed-stats {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1,
    .games-hero h1,
    .blog-hero h1,
    .forum-hero h1,
    .promotions-hero h1,
    .payments-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .sidebar-content {
        padding: 1rem;
    }
    
    .game-card-large {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table-container {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
    
    .promo-offer {
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-percent {
        font-size: 3rem;
    }
    
    .speed-showcase {
        padding: 2rem;
    }
    
    .speed-card {
        flex-direction: column;
        text-align: center;
    }
    
    .speed-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary.large,
    .btn-secondary.large,
    .btn-success.large,
    .btn-warning.large,
    .btn-danger.large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .ticker-container {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .hero,
    .games-hero,
    .blog-hero,
    .forum-hero,
    .promotions-hero,
    .payments-hero {
        padding: 2rem 1.5rem;
    }
    
    .hero h1,
    .games-hero h1,
    .blog-hero h1,
    .forum-hero h1,
    .promotions-hero h1,
    .payments-hero h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .promotions-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .story-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trending-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .vip-tiers {
        grid-template-columns: 1fr;
    }
    
    .vip-tier.featured {
        transform: none;
    }
    
    .vip-tier.featured:hover {
        transform: translateY(-5px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.feature-card,
.game-card,
.offer-card,
.story-card {
    animation: fadeInUp 0.6s ease-out;
}

.btn-primary:hover,
.btn-success:hover,
.btn-warning:hover,
.btn-danger:hover {
    animation: pulse 0.3s ease-in-out;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.7);
}

/* Category Menu Toggle */
.category-menu-toggle {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #2c3e50;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	z-index: 1002;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

@media (max-width: 1024px) {
	.category-menu-toggle {
		display: block;
	}
}

.category-menu-toggle:hover {
	background: #34495e;
	transform: scale(1.05);
}

.category-menu-toggle.active {
	background: #e74c3c;
}

/* Game Grids */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.game-card {
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.game-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.game-card h4 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.game-card p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.game-card .btn-primary,
.game-card .btn-secondary {
    width: 100%;
    margin-top: 0.5rem;
}

/* Game Categories */
.category-content {
    display: none;
    padding: 1rem 0;
}

.category-content.active {
    display: block;
}

/* Media Queries for Game Grid */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .game-card {
        padding: 1rem;
    }
}

/* Special styling for game types */
.slot-games .game-card,
.live-casino .game-card,
.table-games .game-card,
.crash-games .game-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #888;
}

.game-actions {
    margin-top: auto;
}

.footer-logo img {
    width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.footer-logo img:hover {
    opacity: 0.8;
}

/* Remove any conflicting styles */
.game-grid,
.games-container,
.game-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .game-grid,
    .games-container,
    .game-list {
        grid-template-columns: 1fr;
    }
}

/* Provider label */
.provider {
    color: #FFD700;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Volatility and RTP badges */
.volatility,
.rtp,
.live-status {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #FFD700;
}