/* Base styles and resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffc107;
    --secondary-color: #ff5722;
    --tertiary-color: #e91e63;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-text: #f5f5f5;
    --menu-bg: #1a1a1a;
    --card-bg: #1e1e1e;
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff9d00 100%);
    --gradient-orange: linear-gradient(135deg, #ff9d00 0%, #ff5722 100%);
    --gradient-red: linear-gradient(135deg, #ff5722 0%, #e91e63 100%);
}

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

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    gap: 8px;
}

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

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
}

.btn-secondary {
    background: var(--gradient-orange);
    color: #fff;
}

.btn-tertiary {
    background: var(--gradient-red);
    color: #fff;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

.btn-signup {
    white-space: nowrap;
    background: var(--gradient-gold);
    color: #000;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

.btn-play {
    background: var(--gradient-gold);
    color: #000;
    padding: 0.5rem 1rem;
    width: 100%;
    font-size: 0.8rem;
}

.btn-support {
    background: var(--gradient-gold);
    color: #000;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    border-radius: 4px;
}

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

/* Ticker Animation */
.ticker-container {
    background-color: var(--primary-color);
    overflow: hidden;
    padding: 8px 0;
		width: 100%;
    position: relative;
    color: #000;
}

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

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

.ticker-item {
    padding: 0 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

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

.winner {
    color: #e91e63;
    font-weight: 700;
}

/* Header */
.main-header {
    background-color: var(--darker-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 800;
}

.logo span {
    color: var(--light-text);
}

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

.logo img {
    width: 50px;
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.main-nav li a {
    color: var(--light-text);
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    position: relative;
}

.main-nav li a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-nav li.active a {
    color: var(--primary-color);
    position: relative;
    font-weight: 600;
}

.main-nav li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.5);
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
    }
    to {
        box-shadow: 0 2px 12px rgba(255, 193, 7, 0.7);
    }
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content Layout */
.main-content {
    padding: 30px 0;
}

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

/* Sidebar */
.sidebar {
    width: 280px;
    background-color: var(--menu-bg);
    border-radius: 10px;
    padding: 20px;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
		overflow-x: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

.search-box button {
    padding: 10px 15px;
    border: none;
    background-color: var(--primary-color);
    border-radius: 0 50px 50px 0;
    color: #000;
    cursor: pointer;
}

.categories h3 {
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 1.1rem;
}

.categories ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.categories li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.categories li a i {
    color: var(--primary-color);
    margin-right: 10px;
}

.categories li a > div {
    display: flex;
    align-items: center;
}

.badge {
    background-color: var(--primary-color);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
}

/* Content Area */
.content {
    flex: 1;
    animation: fadeInUp 0.7s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('') center/cover;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(233, 30, 99, 0.2));
    z-index: -1;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 30px;
}

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

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item h3 {
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Game Highlights */
.game-highlights {
    margin-bottom: 40px;
}

.game-category {
    margin-bottom: 30px;
}

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

.game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.game-image {
    height: 150px;
    background-color: #333;
    position: relative;
    overflow: hidden;
}

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

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 150%; }
}

.game-card h4 {
    padding: 15px 15px 5px;
    font-size: 1rem;
}

.game-card p {
    padding: 0 15px 15px;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0;
}

.game-card .btn-play {
    border-radius: 0;
}

.tournament-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tournament Cards */
.tournament-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tournament-card {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('') center/cover;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(233, 30, 99, 0.1));
    z-index: -1;
}

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

.tournament-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* How to Join */
.how-to-join {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.step-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

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

.promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.promo-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.promo-icon {
    font-size: 2rem;
}

.promo-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.promo-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #bbb;
}

/* Testimonials */
.testimonials {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

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

.author {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    text-align: right;
}

.security-note {
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

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

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

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.payment-methods li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.payment-methods li i {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #999;
}

.license {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

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

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

.btn-fab {
    background: var(--gradient-gold);
    color: #000;
		font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .main-content .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 30px;
    }
    
    .categories ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 992px) {
    .main-header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav ul {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
				font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .license {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        padding: 30px 20px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .feature-grid,
    .game-list,
    .tournament-list,
    .promo-list,
    .testimonial-list {
        grid-template-columns: 1fr;
    }
}

/* Game Pages - Catalog */
.game-catalog-header {
    margin-bottom: 30px;
    text-align: center;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-tab {
    padding: 8px 16px;
    background-color: var(--card-bg);
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--primary-color);
    color: #000;
}

/* Blog Page */
.blog-post {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.blog-image {
    height: 200px;
    background-color: #333;
    position: relative;
}

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

.blog-content {
    padding: 20px;
}

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

.blog-meta {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Forum Page */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow-x: auto;
}

@media (max-width: 767px) {
    .comparison-table {
				display: block;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

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

.comparison-table th {
    background-color: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

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

.check {
    color: #4caf50;
    font-size: 1.2rem;
}

.cross {
    color: #f44336;
    font-size: 1.2rem;
}

/* Payments Page */
.payment-options {
    margin-bottom: 40px;
    animation: none !important;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    animation: none !important;
}

.payment-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: none;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}
.payment-card p {
	margin-bottom: 0;
}

.limits {
	margin-bottom: 10px;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.payment-icon i {
    color: #000;
    font-size: 1.8rem;
}

.payment-name {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    width: 100%;
    text-align: left;
}

.payment-description {
    color: #bbb;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

.payment-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

/* Enhanced Banking Tips Section */
.banking-tips {
    margin-bottom: 50px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.banking-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(76, 175, 80, 0.2));
    z-index: 0;
}

.banking-tips-content {
    position: relative;
    z-index: 1;
}

.banking-tips h2 {
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.banking-tips h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.banking-tips-intro {
    color: #ddd;
    margin-bottom: 30px;
    max-width: 800px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tip-item {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.tip-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.tip-item:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.tip-item:hover::after {
    transform: scaleX(1);
}

.tip-icon i {
	width: 50px;
	height: 50px;
	background: var(--gradient-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #000;
	box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.tip-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.tip-content {
    flex: 1;
}

.tip-content h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.tip-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.6;
}

/* Enhanced FAQ Section */
.faq-section {
    margin-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section h2 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.faq-intro {
    color: #bbb;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    width: 100%;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.faq-answer {
    color: #bbb;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 5px 25px 20px;
    max-height: 500px;
}

/* Enhanced Security Section */
.security-section {
    margin-bottom: 60px;
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.security-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.security-section h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.security-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.security-intro {
    color: #bbb;
    margin: 0 auto 30px;
    max-width: 700px;
    line-height: 1.6;
}

.security-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.security-item {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), var(--card-bg));
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.security-item::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.security-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.security-item:hover::before {
    opacity: 1;
}

.security-item i {
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
		margin-bottom: 25px;
}

.security-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 87, 34, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.security-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.security-icon i {
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.security-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.security-description {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.security-footer {
    margin-top: 40px;
    text-align: center;
}

.security-footer .btn-main {
    padding: 12px 30px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--tertiary-color), var(--primary-color));
    border: none;
}

.security-footer .btn-main:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    transform: translateY(-3px);
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Utility classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.bg-darker { background-color: var(--darker-bg); }
.p-30 { padding: 30px; }
.mb-40 { margin-bottom: 40px; } 

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

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

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--primary-color), #e6a700);
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.05);
}

/* Blog Page - Trending Games Section */
.trending-games {
    margin-bottom: 40px;
}

.trending-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.trending-item {
    display: flex;
		flex-direction: column;
    align-items: center;
		gap: 10px;
		justify-content: center;
		text-align: center;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trending-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.trending-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trending-icon i {
    color: #000;
    font-size: 1.2rem;
}

.trending-content {
    flex: 1;
}

.trending-content h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.trending-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #bbb;
}
.trending-action .btn-play {
    padding: 8px 15px;
    min-width: 80px;
}

/* Active category styling for sidebar filtering */
.sidebar .categories li a.active-category {
    background-color: rgba(255, 193, 7, 0.2);
    border-left: 3px solid var(--primary-color);
    transform: translateX(5px);
}


@keyframes tabActivate {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Forum Page - Benefits Section */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 87, 34, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0;
}

/* Forum Page - Exclusive Section */
.exclusive-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.exclusive-item {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.exclusive-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.exclusive-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.exclusive-icon i {
    color: #000;
    font-size: 1.5rem;
}

.exclusive-content {
    flex: 1;
}

.exclusive-content h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.exclusive-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Forum Page - Safety Section */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.safety-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.safety-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.safety-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.safety-item:hover::before {
    transform: scaleX(1);
}

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

.safety-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.safety-item p {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0;
}

/* Bonuses Page Styles */
.bonuses-container {
    margin-bottom: 60px;
}

/* Welcome Bonus Section */
.welcome-bonus {
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.bonus-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-title {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.bonus-tag {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.bonus-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bonus-content p {
    margin-bottom: 20px;
}

.bonus-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.bonus-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #bbb;
}

.bonus-content ul li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.bonus-code {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px dashed rgba(255, 193, 7, 0.3);
}

.bonus-code .code {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 15px;
    flex-grow: 1;
    letter-spacing: 1px;
}

.bonus-code .copy-btn {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.bonus-code .copy-btn:hover {
    background-color: rgba(255, 193, 7, 0.2);
    border-color: var(--primary-color);
}

/* Ongoing Deals Section */
.ongoing-deals {
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* VIP Lounge Benefits Section */
.vip-lounge {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.vip-lounge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(233, 30, 99, 0.2));
    z-index: 0;
}

.vip-lounge-content {
    position: relative;
    z-index: 1;
}

.vip-lounge-header {
    margin-bottom: 30px;
    text-align: center;
}

.vip-lounge-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.vip-lounge-subtitle {
    font-size: 1.1rem;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
}

.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vip-benefit-item {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vip-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
}

.vip-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(138, 43, 226, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vip-benefit-icon i {
    font-size: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vip-benefit-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vip-benefit-description {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

.vip-lounge-cta {
    text-align: center;
    margin-top: 40px;
}

.vip-lounge-cta .btn-main {
    padding: 12px 30px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #8a2be2, var(--primary-color));
    border: none;
}

.vip-lounge-cta .btn-main:hover {
    background: linear-gradient(135deg, var(--primary-color), #8a2be2);
    transform: translateY(-3px);
}

/* Holiday Promotions Section */
.holiday-promos {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.holiday-promos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(33, 150, 243, 0.2));
    z-index: 0;
}

.holiday-content {
    position: relative;
    z-index: 1;
}

.holiday-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.holiday-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.holiday-subtitle {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 800px;
}

.holiday-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.holiday-item {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.holiday-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.holiday-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 87, 34, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.holiday-icon i {
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.holiday-item-title {
    margin-bottom: 15px;
}

.holiday-item-title h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.holiday-item-description {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Bonus Activation Steps */
.activation-steps {
    margin-bottom: 40px;
}

.activation-steps h2 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.activation-steps h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

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

.step {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 25px;
}

.step h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Promotional Codes Section */
.promotional-codes {
    margin-top: 40px;
    margin-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promotional-codes h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.promotional-codes h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
}

.code-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.code-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.code-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.code-label {
    font-size: 0.8rem;
    color: #bbb;
}

.code-text {
    font-family: monospace;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.code-description {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

.copy-btn {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background-color: rgba(255, 193, 7, 0.2);
    border-color: var(--primary-color);
}

/* Add styles for sections on bonuses page */
.vip-section {
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-section h2 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.vip-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.vip-tier {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.vip-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

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

.tier-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tier-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.vip-tier ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.vip-tier ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #bbb;
}

.vip-tier ul li i {
    color: var(--primary-color);
}

.tier-requirement {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #999;
}

.holiday-section {
    margin-bottom: 40px;
    border-radius: 15px;
}

.holiday-section h2 {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.holiday-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.holiday-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.holiday-item {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

.holiday-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.holiday-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.holiday-content p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}
