/* Global Styles */
:root {
    --primary-color: #f6b42a;
    --secondary-color: #e74c3c;
    --dark-bg: #15202b;
    --darker-bg: #0f1923;
    --text-color: #ffffff;
    --text-secondary: #8899a6;
    --accent-color: #55acee;
}

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

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

main {
	overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn, button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

/* Ticker Styles */
.ticker {
    background-color: var(--darker-bg);
    padding: 8px 0;
    position: relative;
    z-index: 900;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

.ticker-rates {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
}

.rate {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.rate i {
    color: var(--primary-color);
    margin-right: 5px;
}

.ticker-buttons {
    display: flex;
    margin-left: auto;
    margin-right: 20px;
}

.btn-bonus, .btn-money, .btn-vip {
    padding: 4px 12px;
    margin-right: 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

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

.btn-money {
    background-color: #28a745;
}

.btn-vip {
    background-color: #6c757d;
}

.btn-bonus i, .btn-money i {
    margin-right: 5px;
}

.ticker-winner {
    display: flex;
    align-items: center;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
}

.ticker-winner i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Header Styles */
header {
    background-color: var(--darker-bg);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin: 0 15px;
    position: relative;
}

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

.main-nav li.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
}

.main-nav a {
    font-weight: 500;
}

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

.partner-logos {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.partner-logos img {
    height: 20px;
    margin-right: 15px;
}

.auth-buttons {
    display: flex;
}

.btn-login, .btn-signup {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 10px;
    text-align: center;
}

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

.btn-signup {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

/* Main Container Styles */
.main-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    background-color: var(--darker-bg);
    border-radius: 10px;
    padding: 20px;
    margin-right: 20px;
    position: sticky;
    top: 100px;
    height: calc(100vh - 130px);
    overflow-y: auto;
}

.search-box {
    display: flex;
    margin-bottom: 20px;
}

.search-box input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
    color: var(--text-color);
}

.search-box button {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
    color: var(--text-color);
}

.categories h3 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.category-item i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.category-item .fa-fire {
    color: #e74c3c;
}

.category-item .fa-star {
    color: var(--primary-color);
}

.category-item .fa-gem {
    color: #9b59b6;
}

.category-item .fa-trophy {
    color: #f39c12;
}

.category-item .fa-bolt {
    color: #3498db;
}

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

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Content Styles */
.content {
    flex: 1;
}

/* Page Title Styles */
.page-title {
    margin-bottom: 30px;
}

.page-title h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.page-title p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 800px;
}

/* Hero Banner Styles */
.hero-banner {
    background-image: linear-gradient(rgba(15, 25, 35, 0.7), rgba(15, 25, 35, 0.7)), url('images/1.avif');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    margin-bottom: 30px;
    transition: background-image 0.5s ease;
}

.hero-banner.slide-1 {
    background-image: linear-gradient(rgba(15, 25, 35, 0.7), rgba(15, 25, 35, 0.7)), url('images/1.avif');
}

.hero-banner.slide-2 {
    background-image: linear-gradient(rgba(15, 25, 35, 0.7), rgba(15, 25, 35, 0.7)), url('images/2.avif');
}

.hero-banner.slide-3 {
    background-image: linear-gradient(rgba(15, 25, 35, 0.7), rgba(15, 25, 35, 0.7)), url('images/3.avif');
}

.hero-banner.slide-4 {
    background-image: linear-gradient(rgba(15, 25, 35, 0.7), rgba(15, 25, 35, 0.7)), url('images/4.avif');
}

.welcome-bonus {
    position: absolute;
    top: 30px;
    left: 30px;
}

.bonus-button {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.hero-content {
    max-width: 70%;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Game Section Styles */
.game-section {
    margin-bottom: 30px;
}

.game-section h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.game-section h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.game-provider {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.game-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(45deg, #1a2a3a, #2c3e50);
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

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

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

.game-rating {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.game-rating i {
    color: var(--primary-color);
    margin-right: 2px;
    font-size: 10px;
}

.game-rating span {
    margin-left: 5px;
    font-weight: 600;
}

.game-hot-badge, .game-exclusive-badge, .game-jackpot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-hot-badge {
    background-color: #e74c3c;
}

.game-exclusive-badge {
    background-color: #9b59b6;
}

.game-jackpot-badge {
    background-color: #f39c12;
}

.game-live-badge {
    background-color: #27ae60;
}

.game-tournament-badge {
    background-color: #3498db;
}

.game-name {
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.game-description {
    padding: 15px 15px 10px;
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    flex-grow: 1;
    line-height: 1.4;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    padding: 0 15px 15px;
}

.stat {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.stat i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 10px;
}

.play-button {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 10px 20px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin: 0 15px 15px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #e5a41f;
    transform: translateY(-2px);
}

.play-button:hover::before {
    left: 100%;
}

.view-more {
    text-align: center;
    margin-top: 20px;
}

.btn-view-more {
    display: inline-block;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

/* Sports Section Styles */
.sports-section {
    margin-bottom: 30px;
}

.sports-section h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.sports-section h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.sports-card {
    background-color: var(--darker-bg);
    border-radius: 10px;
    overflow: hidden;
}

.sports-image {
    position: relative;
    height: 140px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.match-time {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.sports-details {
    padding: 15px;
}

.match-teams {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.match-info {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.odds-container {
    display: flex;
    margin-bottom: 15px;
    gap: 8px;
}

.odd-box {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px;
    text-align: center;
    border-radius: 5px;
}

.odd-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.odd-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.bet-button {
    display: block;
    background-color: #3498db;
    color: var(--text-color);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bet-button:hover {
    background-color: #2980b9;
}

.sports-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.sports-feature {
    background-color: var(--darker-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.sports-feature i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sports-feature h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.sports-feature p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Games CTA Styles */
.games-cta {
    background-color: var(--darker-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

.cta-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-spin, .btn-play-live, .btn-bet-now {
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

.btn-spin {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-play-live {
    background-color: #9b59b6;
}

.btn-bet-now {
    background-color: #3498db;
}

/* Features Section Styles */
.features-section {
    margin-bottom: 30px;
}

.features-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.feature-card {
    background-color: var(--darker-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.feature-card i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Games Highlights Styles */
.games-highlights {
    margin-bottom: 30px;
}

.games-highlights h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.highlight-card {
    background-color: var(--darker-bg);
    padding: 20px;
    border-radius: 10px;
}

.highlight-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.play-now, .bet-now, .join-now {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.play-now {
    background-color: #2ecc71;
    color: white;
}

.bet-now {
    background-color: #3498db;
    color: white;
}

.join-now {
    background-color: #9b59b6;
    color: white;
}

/* Live Casino Section Styles */
.live-casino-section {
    margin-bottom: 30px;
}

.live-casino-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.live-casino-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.live-card {
    background-color: var(--darker-bg);
    padding: 20px;
    border-radius: 10px;
}

.live-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.live-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Compete Section Styles */
.compete-section {
    margin-bottom: 30px;
}

.compete-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.compete-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.compete-card {
    background-color: var(--darker-bg);
    padding: 20px;
    border-radius: 10px;
}

.compete-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.compete-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Get Started Styles */
.get-started {
    margin-bottom: 30px;
}

.get-started h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.step-card {
    background-color: var(--darker-bg);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 15px;
}

.step-card p {
    font-size: 14px;
}

.btn-claim, .btn-play, .btn-join {
    flex: 1;
    display: flex;
		justify-content: center;
		align-items: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-claim {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-play {
    background-color: #2ecc71;
}

.btn-join {
    background-color: #3498db;
}

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

.testimonials h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.testimonial-card {
    background-color: var(--darker-bg);
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--text-secondary);
    font-size: 14px;
}

.security-badge {
    background-color: var(--darker-bg);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.security-badge i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Live Chat Button */
.live-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.chat-icon i {
    font-size: 24px;
    color: var(--darker-bg);
}

.support-text {
    background-color: var(--darker-bg);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 5px;
}

/* Footer Styles */
footer {
    background-color: var(--darker-bg);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    margin-bottom: 30px;
    text-align: center;
}

.footer-logo img {
    height: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.footer-column ul li a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--text-color);
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 24px;
    color: var(--text-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        margin-right: 0;
        margin-bottom: 20px;
        position: relative;
        top: 0;
    }
    
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid,
    .live-casino-grid,
    .compete-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        padding: 20px;
    }
}

@media (max-width: 1220px) {
    .header-container {
        padding: 10px 15px;
        position: relative;
    }
    
    .logo img {
        height: 40px;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--darker-bg);
        z-index: 999;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav li {
        margin: 8px 0;
        width: 100%;
        text-align: left;
    }
    
    .main-nav li.active::after {
        bottom: -4px;
    }
    
    .partner-logos {
        display: none;
    }
    
    .ticker-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ticker-rates {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .ticker-buttons {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .ticker-winner {
        width: 100%;
				justify-content: center;
    }
    
    .rate {
        margin-right: 0;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .game-card {
        margin-bottom: 20px;
    }
    
    .game-image {
        height: 220px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .btn-spin, .btn-play-live, .btn-bet-now {
        padding: 10px 15px;
        margin: 5px;
        font-size: 14px;
    }
    
    .hero-content {
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .ticker {
        padding: 12px 0;
    }
    
    .ticker-rates {
        font-size: 12px;
    }
    
    .ticker-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .btn-bonus, .btn-money, .btn-vip {
        padding: 3px 8px;
        font-size: 12px;
        margin-right: 5px;
    }
    
    .game-grid {
        max-width: 100%;
    }
    
    .game-image {
        height: 180px;
    }
    
    .game-name {
        font-size: 14px;
        padding: 12px 10px;
    }
    
    .game-description {
        font-size: 12px;
        padding: 10px 10px 5px;
    }
    
    .game-stats {
        padding: 0 10px 10px;
    }
    
    .stat {
        font-size: 10px;
    }
    
    .play-button {
        margin: 0 10px 10px;
        padding: 8px 15px;
        font-size: 14px;
    }

		.domination-grid {
			grid-template-columns: 1fr !important;
	}
    
    .features-grid,
    .sports-grid,
    .highlights-grid,
    .live-casino-grid,
    .compete-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .page-title h1 {
        font-size: 22px;
    }
    
    .auth-buttons {
        margin-left: 10px;
    }
    
    .btn-login, .btn-signup {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding-top: 80px;
        justify-content: flex-end;
        padding-bottom: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .slider-dots {
        margin-bottom: 10px;
    }
}

/* Blog Page Styles */
/* Featured Story */
.featured-story {
    background-color: var(--darker-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1220px) {
    .featured-story {
        flex-direction: row;
    }
}

.featured-story-image {
    position: relative;
    flex: 0 0 300px;
    background-color: rgba(255, 255, 255, 0.05);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
}

.featured-story-content {
    padding: 20px;
    flex: 1;
}

.featured-story-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.story-meta span {
    margin-right: 20px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.story-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.story-excerpt {
    font-style: italic;
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.story-content {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    border-bottom: 2px solid var(--primary-color);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 1220px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-card {
    background-color: var(--darker-bg);
    border-radius: 10px;
    overflow: hidden;
}

.blog-image {
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-style: italic;
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Fan Favorites */
.fan-favorites {
    margin-bottom: 30px;
}

.fan-favorites h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

@media (min-width: 1220px) {
    .favorites-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.favorite-card {
    background-color: var(--darker-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.favorite-image {
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.favorite-card h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
}

.favorite-card p {
    padding: 0 15px 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.btn-play-now, .btn-bet-now {
    display: block;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

.btn-play-now {
    background-color: #2ecc71;
}

.btn-bet-now {
    background-color: #3498db;
}

/* Share Story */
.share-story {
    background-color: var(--darker-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.share-story-content {
    text-align: center;
}

.share-story-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.share-story-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-share, .btn-featured, .btn-betting {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

.btn-share {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-featured {
    background-color: #9b59b6;
}

.btn-betting {
    background-color: #3498db;
}

@media (max-width: 576px) {
    .share-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-share, .btn-featured, .btn-betting {
        width: 100%;
    }
}

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

.comparison-section h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.comparison-section h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: none;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    font-weight: 600;
    position: relative;
}

.comparison-table thead th:nth-child(2) {
    background-color: #f39c12;
}

.winner-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #e74c3c;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--darker-bg);
}

.comparison-table td:first-child {
    font-weight: 500;
    text-align: left;
}

.comparison-table .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table .fa-check {
    color: #2ecc71;
}

.comparison-table .fa-times {
    color: #e74c3c;
}

/* Domination Section Styles */
.domination-section {
    margin-bottom: 30px;
}

.domination-section h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.domination-section h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

@media (min-width: 1220px) {
    .domination-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.domination-card {
    background-color: var(--darker-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.domination-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.domination-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.domination-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.domination-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Betting Guide Styles */
.betting-guide {
    margin-bottom: 30px;
}

.betting-guide h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.betting-guide h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.guide-container {
    background-color: var(--darker-bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.match-details {
    margin-bottom: 30px;
}

.team-vs-team {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-flag {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.team-flag img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
}

.vs {
    font-size: 24px;
    font-weight: 700;
    margin: 0 30px;
}

.match-info {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.match-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-label {
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 14px;
}

.info-label i {
    margin-right: 5px;
}

.info-value {
    font-weight: 600;
}

.betting-tips {
    margin-bottom: 30px;
}

.betting-tips h3 {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.tips-list li {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1220px) {
    .tips-list li {
        flex-direction: row;
        align-items: center;
    }

    .tip-title {
        flex: 0 0 180px;
    }
}

.tip-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.tip-content {
    color: var(--text-secondary);
}

.betting-strategies h3 {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 1220px) {
    .strategies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.strategy-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.strategy-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.strategy-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.btn-place-bet {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-place-bet:hover {
    background-color: #e5a826;
}

/* Extras Section Styles */
.extras-section {
    margin-bottom: 30px;
}

.extras-section h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.extras-section h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.extras-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .extras-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.extras-card {
    background-color: var(--darker-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.extras-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.extras-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.extras-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.extras-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Forum CTA Styles */
.forum-cta {
    background-color: var(--darker-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.cta-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-container p {
		color: var(--darker-bg);    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-compare, .btn-live-now, .btn-sports-wager {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

.btn-compare {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-live-now {
    background-color: #9b59b6;
}

.btn-sports-wager {
    background-color: #3498db;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-compare, .btn-live-now, .btn-sports-wager {
        width: 100%;
    }
}

/* Promotions Page Styles */
.promotions-section {
    margin-bottom: 40px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.promo-card {
    background: linear-gradient(145deg, #1a2733, #0d1620);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-card.featured {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(246, 180, 42, 0.15);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--primary-color), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.promo-icon i {
    font-size: 24px;
    color: var(--darker-bg);
}

.promo-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.promo-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.promo-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.promo-details span {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-color);
}

.promo-details i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
}

.btn-claim-now {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-claim-now:hover {
    background-color: #f39c12;
    transform: translateY(-2px);
}

.regular-promos {
    margin-bottom: 40px;
}

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

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

.promo-header i {
    width: 40px;
    height: 40px;
    background-color: rgba(246, 180, 42, 0.2);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.promo-header h3 {
    margin: 0;
    font-size: 18px;
}

.btn-get-bonus {
    display: inline-block;
    background-color: rgba(246, 180, 42, 0.2);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-get-bonus:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.vip-section {
    margin-bottom: 40px;
    background: linear-gradient(145deg, #1a2733, #131f29);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.vip-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.vip-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.vip-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.vip-benefits li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.btn-join-vip {
    display: inline-block;
    background: linear-gradient(145deg, var(--primary-color), #f39c12);
    color: var(--darker-bg);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-join-vip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(246, 180, 42, 0.3);
}

.vip-levels h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.levels-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.level {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 15px 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.level-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.level-icon.bronze {
    background: linear-gradient(145deg, #cd7f32, #b36a1b);
}

.level-icon.silver {
    background: linear-gradient(145deg, #c0c0c0, #a8a8a8);
}

.level-icon.gold {
    background: linear-gradient(145deg, #ffd700, #daa520);
}

.level-icon.platinum {
    background: linear-gradient(145deg, #e5e4e2, #b9b8b6);
}

.level-icon.diamond {
    background: linear-gradient(145deg, #b9f2ff, #87ceeb);
}

.level-icon i {
    font-size: 20px;
    color: var(--darker-bg);
}

.level-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.level-benefit {
    font-size: 13px;
    color: var(--primary-color);
}

.festival-section {
    margin-bottom: 40px;
}

.festival-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.festival-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease;
}

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

.festival-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #2980b9, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.festival-icon i {
    font-size: 24px;
    color: #fff;
}

.festival-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.festival-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 14px;
}

.festival-benefits {
    list-style: none;
}

.festival-benefits li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.festival-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
}

.how-to-claim {
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    max-width: 30%;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 15px;
}

.step-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.btn-claim, .btn-spins, .btn-action {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-claim {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-spins {
    background-color: #2ecc71;
    color: #fff;
}

.btn-action {
    background-color: #3498db;
    color: #fff;
}

.btn-claim:hover, .btn-spins:hover, .btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-container {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
}

.terms-container p {
    margin-bottom: 15px;
}

.terms-list {
    list-style: none;
    margin-bottom: 25px;
}

.terms-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.btn-full-terms {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-full-terms:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vip-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .festival-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1220px) {
    .promotions-grid, 
    .regular-promos-grid,
    .festival-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step {
        max-width: 100%;
    }
    
    .claim-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-claim, .btn-spins, .btn-action {
        width: 100%;
        text-align: center;
    }
}

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

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

.method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    padding: 20px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.method-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.method-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.method-info {
    flex: 1;
}

.method-info h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.method-details {
    margin-bottom: 15px;
}

.method-details li {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

.detail-label {
    color: var(--text-color);
    font-weight: 500;
}

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

.btn-deposit, .btn-withdraw {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    flex: 1;
}

.btn-deposit {
    background-color: var(--primary-color);
    color: var(--darker-bg);
}

.btn-withdraw {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Safety Section Styles */
.safety-section {
    margin-bottom: 40px;
}

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

.safety-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

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

.safety-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.safety-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.safety-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Payment Tips Styles */
.payment-tips {
    margin-bottom: 40px;
}

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

.tip-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.tip-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.tip-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.tip-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* FAQ Section Styles */
.faq-section {
    margin-bottom: 40px;
}

.faq-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding: 0 0 15px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

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

/* Payment CTA Styles */
.payment-cta {
    margin-bottom: 40px;
}

.payment-cta p {
	color: var(--darker-bg);
}

.cta-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e5a41f 100%);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: var(--darker-bg);
}

.cta-container h2 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.cta-container p {
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.9;
}

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

.btn-deposit-now, .btn-withdraw-fast, .btn-bet-brazil {
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-deposit-now {
    background-color: var(--darker-bg);
    color: var(--primary-color);
}

.btn-withdraw-fast {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--darker-bg);
    border: 1px solid var(--darker-bg);
}

.btn-bet-brazil {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--darker-bg);
    border: 1px solid var(--darker-bg);
}

.btn-deposit-now:hover, .btn-withdraw-fast:hover, .btn-bet-brazil:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for payments page */
@media (max-width: 992px) {
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .safety-grid, 
    .tips-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-deposit-now, .btn-withdraw-fast, .btn-bet-brazil {
        width: 100%;
        margin-bottom: 10px;
    }
} 