/* General Styles */
:root {
    --primary-color: #ffcc00;
    --secondary-color: #ff8800;
    --accent-color: #00e676;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --border-radius: 10px;
    --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
    --gradient-accent: linear-gradient(135deg, #00e676, #00c853);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: var(--dark-color);
    background-image: radial-gradient(circle at top right, rgba(43, 43, 82, 0.8) 0%, rgba(26, 26, 46, 1) 70%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Basic animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Helper classes for animations */
.animate-float {
    animation: float 6s infinite ease-in-out;
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

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

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #fff;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-outline:hover:before {
    width: 100%;
}

.btn-outline:hover {
    color: var(--dark-color);
}

.btn-cta {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 15px rgba(255, 75, 43, 0.4);
    animation: pulse 1.5s infinite;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 75, 43, 0.6);
}

.btn-action {
    background: linear-gradient(135deg, var(--secondary-color), #ff6d00);
    color: #fff;
    margin: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.btn-action:hover {
    background: linear-gradient(135deg, #ff6d00, var(--secondary-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.5);
}

.btn-play {
    background: var(--primary-color);
    color: var(--dark-color);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
}

.btn-play:hover {
    background: #fff;
}

.btn-float {
    padding: 12px 25px;
    margin: 5px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform-origin: right center;
    animation: pulse 2s infinite;
}

.btn-float:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-float i {
    margin-right: 8px;
    font-size: 18px;
}

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

.btn-vip {
    background: #9c27b0;
    color: #fff;
}

.btn-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.btn-floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.btn-floating i {
    font-size: 24px;
}

.btn-floating span {
    font-size: 12px;
    font-weight: 600;
}

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

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

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

/* Currency Bar */
.currency-bar {
    background: linear-gradient(to right, #121225, #1a1a2e);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.currency-items {
    display: flex;
    gap: 20px;
}

.currency-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--light-color);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.currency-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.currency-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

.bonus-item {
    color: var(--primary-color);
    background: rgba(255, 204, 0, 0.1);
}

.bonus-item:hover {
    background: rgba(255, 204, 0, 0.2);
}

.winner-display {
    background: linear-gradient(to right, rgba(255, 193, 7, 0.2), rgba(255, 87, 34, 0.2));
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--primary-color);
    animation: float 3s infinite ease-in-out;
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.winner-display i {
    margin-right: 5px;
}

/* Header */
.header {
    background: linear-gradient(to right, #0f0f1e, #16213e);
		position: sticky;
		top: 0;
		z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo img {
    max-height: 50px;
		border-radius: 10px;
}

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

.partner-logos img {
    height: 30px;
    transition: var(--transition);
}

.partner-logos img:hover {
    transform: scale(1.1);
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    background: linear-gradient(to right, #16213e, #1f3a5f);
    padding: 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;
    padding: 20px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    position: relative;
}

.nav-item a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-item a:hover,
.nav-item.active a {
    color: var(--primary-color);
}

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

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

/* Sidebar */
.sidebar {
    width: 300px;
    position: sticky;
    top: 150px;
    height: calc(100vh - 40px);
    overflow-y: auto;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.search-box {
    display: flex;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-box:hover,
.search-box:focus-within {
    border: 2px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.search-box input {
    flex: 1;
    padding: 14px 15px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
}

.search-box button {
    border: none;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 0 20px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--secondary-color);
}

.sidebar-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    border: 1px solid rgba(255, 193, 7, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sidebar-title {
    padding: 15px 20px;
    background: linear-gradient(to right, rgba(255, 193, 7, 0.1), rgba(255, 87, 34, 0.1));
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list {
    padding: 10px;
}

.category-item {
    display: flex;
    align-items: center;
		justify-content: space-between;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    margin-bottom: 5px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.category-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-item:hover i {
    transform: scale(1.2);
}

.category-item .count {
    background: linear-gradient(to right, rgba(255, 193, 7, 0.2), rgba(255, 87, 34, 0.2));
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Content Area */
.content {
    flex: 1;
    min-width: 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #16213e, #0f0f1e);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-slide:nth-child(1) {
    background-image: url('../images/1.avif');
}

.hero-slide:nth-child(2) {
    background-image: url('../images/2.avif');
}

.hero-slide:nth-child(3) {
    background-image: url('../images/3.avif');
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    width: 60%;
    z-index: 3;
    position: relative;
    animation: fadeIn 1s ease-out;
    padding-right: 20px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-height: 100%;
    object-fit: cover;
}

/* Enhanced Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    gap: 10px;
}

.slider-prev,
.slider-next {
    background: rgba(255, 193, 7, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: scale(1.1);
}

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

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

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--primary-color);
}

.floating-buttons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

/* Homepage Content */
.homepage-content {
    padding: 20px 0;
    animation: fadeIn 1s ease-out;
}

.features-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.popular-games,
.bonus-section {
    margin: 40px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.game-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2b2b52, #1a1a2e);
}

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

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

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

.btn-play {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.game-card:hover .btn-play {
    transform: translateY(0);
    opacity: 1;
}

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

.btn-action {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.btn-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.game-info {
    padding: 0 15px 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
    animation: float 3s infinite ease-in-out;
}

/* Game Categories and Badges */
.new-badge::after {
    content: 'NEW';
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.hot-badge::after {
    content: 'HOT';
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff3d00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

/* Enhanced Features Box */
.features-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.1), transparent 70%);
    z-index: 0;
}

.features-box h3 {
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    font-size: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.features-list {
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
    border: 1px solid rgba(255, 193, 7, 0.15);
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 20px;
}

/* Enhanced Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

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

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

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.6);
    }
}

@keyframes border-glow {
    0% {
        border-color: rgba(255, 193, 7, 0.3);
    }
    50% {
        border-color: rgba(255, 193, 7, 0.8);
    }
    100% {
        border-color: rgba(255, 193, 7, 0.3);
    }
}

/* Enhanced Promotion Cards */
.promo-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.homepage-content h2 {
	text-align: center;
}

.promo-content {
    padding: 30px;
    position: relative;
}

.promo-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.promo-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.promo-details {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}
.promo-points {
    padding: 0;
    margin: 20px 0;
}

.promo-points li {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.promo-points li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
}

.promo-points li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.promo-points li strong {
    color: #fff;
    margin: 0 5px;
}

.promo-steps {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.promo-steps h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.promo-step {
    padding: 12px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-step:last-child {
    border-bottom: none;
}

.step-number {
    background: var(--primary-color);
    color: var(--dark-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced Sections */
.games-section, 
.blog-section, 
.comparison-details, 
.payment-methods,
.popular-games,
.bonus-section {
    margin: 60px 0;
    padding-top: 20px;
    position: relative;
}

.games-section h2,
.blog-section h2,
.comparison-details h2,
.popular-games h3,
.bonus-section h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.games-section h2:after,
.blog-section h2:after,
.comparison-details h2:after,
.popular-games h3:after,
.bonus-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced Blog Posts */
.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-post:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px 12px;
    border-radius: 20px;
}

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

/* Enhanced Button Effects */
.btn-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 2s infinite;
}

.btn-floating:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
}

.btn-floating i {
    font-size: 28px;
    margin-bottom: 2px;
}

.btn-floating span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* CTA Section Enhancement */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
    gap: 15px;
    position: relative;
}

.cta-buttons::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 193, 7, 0.5), transparent);
}

.cta-buttons::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 193, 7, 0.5), transparent);
}

/* Enhanced Hover Effects */
.category-list .category-item:nth-child(odd):hover {
    background: linear-gradient(to right, rgba(255, 193, 7, 0.1), transparent);
}

.category-list .category-item:nth-child(even):hover {
    background: linear-gradient(to right, rgba(255, 136, 0, 0.1), transparent);
}

/* Homepage Content Enhancement */
.homepage-content {
    padding: 30px 0;
    animation: fadeIn 1s ease-out;
}

.homepage-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.homepage-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Add more custom styling for specific elements */
.custom-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.glow-effect {
    animation: glow 3s infinite;
}

.border-glow {
    animation: border-glow 3s infinite;
}

/* Add some scrollbar styling for the entire page */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--dark-color);
}

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .games-layout {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .payment-methods {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

		.forum-topics {
			flex-direction: column;
		}
		.bonus-section {
			padding: 20px !important;
		}
		.blog-posts {
			grid-template-columns: 1fr !important;
		}

    .floating-buttons {
        display: none;
    }
    
    .main-content .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        margin-bottom: 30px;
        position: relative;
        top: 0;
				right: 0;
        height: auto;
        overflow-y: visible;
    }
    
    .content {
        width: 100%;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .promo-details {
        flex-direction: column;
    }
    
    .promo-image {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .partner-logos {
        margin-bottom: 10px;
    }
    
    .comparison-table-container {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .forum-topic {
        padding: 20px;
    }
    
    .blog-post {
        margin-bottom: 30px;
    }
    
    .payment-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fast-facts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .claim-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 540px;
    }
		
    .currency-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .currency-items {
        justify-content: center;
    }
    
    .winner-display {
        width: 100%;
        text-align: center;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .partner-logos {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .features-box {
        padding: 20px;
    }
    
    .promo-details {
        gap: 20px;
    }
    
    .promo-image {
        height: 180px;
    }
    
    .payment-highlight {
        grid-template-columns: 1fr;
    }
    
    .security-item {
        align-items: flex-start;
    }
    
    .forum-topic {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .topic-meta {
        justify-content: center;
    }
    
    .blog-meta {
        justify-content: center;
    }
    
    .blog-tags {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .currency-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .games-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slider-content h1 {
        font-size: 24px;
    }
    
    .slider-content p {
        font-size: 14px;
    }
    
    .welcome-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-action {
        width: 100%;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    .btn-floating {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .btn-floating span {
        display: none;
    }
    
    .promo-card {
        padding: 15px;
    }
    
    .promo-content {
        padding: 15px;
    }
    
    .promo-content h2 {
        font-size: 22px;
    }
    
    .promo-badge {
        font-size: 12px;
        padding: 5px 10px;
        top: 10px;
        right: 10px;
    }
    
    .promo-steps {
        padding: 15px;
    }
    
    .promo-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .fast-facts {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 40px;
    }
    
    .claim-steps {
        grid-template-columns: 1fr;
    }
    
    .comparison-detail-item {
        padding: 15px;
    }
    
    .comparison-detail-item h3 {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-post {
        margin-bottom: 30px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

/* Animation Classes */
.animate-float {
    animation: float 3s infinite ease-in-out;
}

.animate-fade {
    animation: fadeIn 1s ease-out;
}

.animate-pulse {
    animation: pulse 1.5s infinite;
}

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

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

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

/* Enhanced Animations and Effects */
/* Glossy Background Effect */
.main-wrapper {
    position: relative;
    z-index: 1;
}

.main-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(41, 86, 153, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 195, 15, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced Winner Display */
.winner-display {
    position: relative;
    overflow: hidden;
}

.winner-display::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.2), rgba(255, 136, 0, 0.2));
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.winner-display.highlight::before {
    opacity: 1;
}

/* Enhanced Gradient Text for Important Elements */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #fff, #ffd54f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Game Image */
.game-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #2b2b52, #1a1a2e);
}



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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

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

.game-card h4 {
    padding: 15px;
    margin-bottom: 0;
    font-size: 16px;
		text-align: center;
    color: var(--primary-color);
}

/* Glowing Effect for Important Elements */
.glow-effect {
    position: relative;
    z-index: 1;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: all 0.4s ease;
}

.glow-effect:hover::after {
    opacity: 0.3;
}

/* Enhanced Hero Slider */
.hero-slider {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #16213e, #0f0f1e);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
}

/* Animated Rainbow Border for Featured Items */
.rainbow-border {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    z-index: 1;
    padding: 2px;
}

.rainbow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        var(--primary-color)
    );
    background-size: 400% 400%;
    animation: rainbow-border 3s linear infinite;
    z-index: -1;
    border-radius: var(--border-radius);
}

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

.rainbow-border > * {
    background: var(--dark-color);
    border-radius: calc(var(--border-radius) - 2px);
    display: block;
    height: 100%;
    width: 100%;
}

/* Enhanced Floating Button with Ripple Effect */
.btn-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 2s infinite;
    overflow: hidden;
}

.btn-floating::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s ease;
}

.btn-floating:active::after {
    width: 200%;
    height: 200%;
    opacity: 1;
    transition: all 0s;
}

/* Improved Animation Keyframes */
@keyframes float-advanced {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(10px);
    }
    75% {
        transform: translateY(5px) translateX(-5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.welcome-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: float-advanced 5s infinite ease-in-out;
}

/* Enhanced Category Items with Icon Animation */
.category-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.category-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.category-item span {
    flex: 1;
    transition: all 0.3s ease;
}

.category-item:hover span {
    transform: translateX(5px);
}

/* Enhanced Nav Item Glow */
.nav-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-item a:hover::before,
.nav-item.active a::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/* Add sparkle animation to CTA buttons */
.btn-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0) 77%,
        rgba(255,255,255,0.5) 92%,
        rgba(255,255,255,0) 100%
    );
    opacity: 0.3;
    transform: rotate(30deg);
    animation: sparkle 4s infinite;
}

@keyframes sparkle {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Enhanced Table Styling for Comparison Page */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.comparison-table th {
    background: linear-gradient(to right, rgba(255, 193, 7, 0.2), rgba(255, 136, 0, 0.1));
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.comparison-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

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

.comparison-table tr td:first-child {
    font-weight: 600;
    color: #fff;
}

.comparison-check {
    color: var(--accent-color);
    font-size: 18px;
    text-shadow: 0 0 5px rgba(0, 230, 118, 0.3);
}

.comparison-cross {
    color: #ff3d00;
    font-size: 18px;
    text-shadow: 0 0 5px rgba(255, 61, 0, 0.3);
}

.highlight-row {
    background: rgba(255, 193, 7, 0.05) !important;
    border-left: 3px solid var(--primary-color);
}

/* Enhanced Number Counter Effect */
.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
}

.stat-number::after {
    content: '+';
    position: absolute;
    font-size: 24px;
    top: 0;
    right: -15px;
}

.stat-label {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
}

/* Pulsating highlight */
.pulse-highlight {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pulse-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    animation: pulse-highlight 2s infinite;
}

@keyframes pulse-highlight {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Blinking effect for urgent elements */
.blink {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

/* Card flip effect for featured items */
.flip-card {
    perspective: 1000px;
    height: 250px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, 
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.flip-card-front {
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flip-card-back {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 87, 34, 0.2));
    color: #fff;
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Media queries for better responsive design */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
		.promo-cards {
			grid-template-columns: 1fr;
		}
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .sidebar {
        position: relative;
				top: 0;
				bottom: 0;
				right: 0;
				left: 0;
				height: 100%;
    }
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-content {
        width: 80%;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .promo-details {
        flex-direction: column;
    }
    
    .promo-image {
        max-width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .welcome-badge {
        top: 10px;
        left: 10px;
        padding: 5px 15px;
        font-size: 12px;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .btn-floating {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(180deg, #16213e, #0d1117);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/footer-bg.png');
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 15px;
		border-radius: 10px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

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

.footer-column ul li a:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.footer-social h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.social-icons a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icons a:hover {
    color: var(--dark-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icons a:hover:before {
    transform: translateY(0);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Enhanced Bangladesh Casino Bonuses Section */
.bonus-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.1), transparent 70%);
    z-index: 0;
}

.bonus-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bonus-section h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.7;
}

.bonus-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bonus-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.bonus-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 87, 34, 0.1));
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.bonus-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1), transparent 70%);
    z-index: -1;
}



.features-list {
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.features-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    opacity: 0.5;
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
    border: 1px solid rgba(255, 193, 7, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 22px;
    width: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.features-list li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.features-list li p {
    margin: 5px 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Enhanced Paragraph Styling */
p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.homepage-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.homepage-content p strong {
    color: #fff;
    font-weight: 700;
}

.homepage-content p em {
    font-style: italic;
    color: var(--primary-color);
}

.highlight-text {
    background: linear-gradient(to right, rgba(255, 193, 7, 0.1), rgba(255, 87, 34, 0.1));
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 600;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Games Page Styles */
.games-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.games-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.games-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

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

.games-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0.2;
}

.filter-btn:hover::before {
    width: 100%;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.3);
}

.games-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.games-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.05), transparent 70%);
    z-index: -1;
}

.games-intro p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.games-intro p:last-child {
    margin-bottom: 0;
}

.games-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.game-card .game-info {
    padding: 0 15px 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.games-section {
    margin: 60px 0;
    position: relative;
    padding-top: 20px;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 2px;
}

.games-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.games-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Game Category Badges */
.game-card[data-category="slots"]::before {
    content: 'SLOT';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 193, 7, 0.8);
    color: var(--dark-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
}

.game-card[data-category="live"]::before {
    content: 'LIVE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 230, 118, 0.8);
    color: var(--dark-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
}

.game-card[data-category="jackpot"]::before {
    content: 'JACKPOT';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 61, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
}

.game-card[data-category="table"]::before {
    content: 'TABLE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(33, 150, 243, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
}

.game-card[data-category="crash"]::before {
    content: 'CRASH';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(156, 39, 176, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
}

/* Blog Page Styles */
.blog-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.blog-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.blog-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.blog-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.blog-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.blog-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.05), transparent 70%);
    z-index: -1;
}

.blog-intro p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.content > h2 {
    font-size: 28px;
    margin: 40px 0 30px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.content > h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2b2b52, #1a1a2e);
}

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

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

.blog-post:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px 12px;
    border-radius: 20px;
}

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

.blog-excerpt {
    margin-bottom: 20px;
}

.blog-excerpt p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-excerpt p:last-child {
    margin-bottom: 0;
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.blog-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.blog-cta {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 87, 34, 0.1));
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1), transparent 70%);
    z-index: -1;
}

.blog-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Page Styles */
.comparison-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.comparison-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.comparison-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.comparison-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.comparison-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.05), transparent 70%);
    z-index: -1;
}

.comparison-intro p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.comparison-table-container {
    margin: 40px 0;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 5px;
    box-shadow: var(--box-shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #fff;
    font-size: 16px;
}

.comparison-table th {
    background: rgba(255, 193, 7, 0.1);
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    position: relative;
}

.comparison-table th:first-child {
    border-top-left-radius: var(--border-radius);
}

.comparison-table th:last-child {
    border-top-right-radius: var(--border-radius);
}

.comparison-table th:nth-child(2) {
    background: rgba(255, 193, 7, 0.2);
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: var(--border-radius);
}

.comparison-table tr:last-child td:last-child {
    border-bottom-right-radius: var(--border-radius);
}

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

.comparison-table td:nth-child(2) {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(255, 193, 7, 0.05);
}

.comparison-check {
    color: #4caf50;
    font-size: 18px;
}

.comparison-cross {
    color: #f44336;
    font-size: 18px;
}

.casino-winner td:nth-child(2) {
    position: relative;
    overflow: hidden;
}

.casino-winner td:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.comparison-details {
    margin: 60px 0;
}

.comparison-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.comparison-details h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.comparison-detail-item {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-detail-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.comparison-detail-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-detail-item h3 i {
    background: rgba(255, 193, 7, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.comparison-detail-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.comparison-detail-item p:last-child {
    margin-bottom: 0;
}

/* Forum Section Styles */
.forum-section {
    margin: 60px 0 40px;
}

.forum-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.forum-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.forum-topics {
    display: flex;
    gap: 20px;
}

.forum-topic {
    display: flex;
		flex-direction: column;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.forum-topic:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.topic-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.topic-content {
    flex-grow: 1;
}

.topic-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.topic-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.topic-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.topic-content .btn {
    margin-top: 10px;
}

/* Payments Page Styles */
.payments-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.payments-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.payments-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.payments-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.payments-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.payments-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.05), transparent 70%);
    z-index: -1;
}

.payments-intro p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.payment-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

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

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.highlight-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

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

.payment-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.payment-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.payment-card > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.payment-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.payment-info li {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-info li:last-child {
    border-bottom: none;
}

.payment-info li span:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.payment-info li span:last-child {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.payment-card .btn {
    margin-top: auto;
}

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

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

.fact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 auto 15px;
}

.fact-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.fact-content p {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.security-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.security-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.security-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.security-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.security-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.payment-faq {
    margin-bottom: 60px;
}

.payment-faq h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.payment-faq h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    padding-right: 30px;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Promotions Page Styles */
.promotions-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.promotions-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.promotions-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.promotions-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.promotions-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.promotions-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.05), transparent 70%);
    z-index: -1;
}

.promotions-intro p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.promo-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
    position: relative;
    transition: all 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}

.promo-content {
    padding: 30px;
}

.promo-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.promo-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.promo-details {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.promo-image {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: linear-gradient(135deg, #2b2b52, #1a1a2e);
    position: relative;
}

.promo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.2), transparent);
    z-index: 1;
}

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

.promo-description {
    min-width: 300px;
}

.promo-points {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.promo-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.promo-points li i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.promo-points li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.promo-steps {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
}

.promo-steps h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.promo-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 30px;
    height: 30px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-text p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.step-text p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.promo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-color);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-meta span {
    display: flex;
    align-items: center;
}

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

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.cashback-rates {
    margin-bottom: 25px;
}

.cashback-rates h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cashback-rates table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cashback-rates th {
    background: rgba(255, 193, 7, 0.1);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
}

.cashback-rates td {
    padding: 12px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.vip-levels h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vip-level-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.level-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
}

.level-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #e6b17f);
    color: var(--dark-color);
}

.level-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #e6e6e6);
    color: var(--dark-color);
}

.level-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffecb3);
    color: var(--dark-color);
}

.level-badge.platinum {
    background: linear-gradient(135deg, #e5e4e2, #ffffff);
    color: var(--dark-color);
}

.vip-level-item p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.upcoming-promos {
    margin-bottom: 25px;
}

.upcoming-promos h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.upcoming-promo-item {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.upcoming-promo-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.promo-date {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 100px;
}

.promo-name {
    color: rgba(255, 255, 255, 0.9);
}

.how-to-claim {
    margin: 60px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.how-to-claim h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.how-to-claim h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.claim-step {
    text-align: center;
    transition: all 0.3s ease;
}

.claim-step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.claim-step:hover .step-icon {
    background: rgba(255, 193, 7, 0.2);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 460px) {
	.promo-description {
		margin-left: -30px;
	}
}

/* Unique Promotion Card Styles */
/* Default promo card (Welcome Bonus) keeps its current style */

/* Daily Free Spins Card Style */
.promo-card.daily-spins {
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), rgba(33, 150, 243, 0.01));
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.promo-card.daily-spins:hover {
    border: 1px solid rgba(33, 150, 243, 0.4);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2);
}

.promo-card.daily-spins .promo-content h2 {
    color: #29b6f6;
}

.promo-card.daily-spins .promo-content h2::after {
    background: #29b6f6;
}

.promo-card.daily-spins .step-number {
    background: rgba(33, 150, 243, 0.2);
    color: #29b6f6;
}

.promo-card.daily-spins .promo-points li i,
.promo-card.daily-spins .promo-points li strong,
.promo-card.daily-spins .promo-meta i,
.promo-card.daily-spins .step-text p strong {
    color: #29b6f6;
}

.promo-card.daily-spins .btn-action {
    background: linear-gradient(to right, #29b6f6, #2196f3);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.promo-card.daily-spins .btn-action:hover {
    background: linear-gradient(to right, #2196f3, #1976d2);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.4);
}

/* Reload Bonus Card Style */
.promo-card.reload-bonus {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), rgba(123, 31, 162, 0.01));
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.promo-card.reload-bonus:hover {
    border: 1px solid rgba(156, 39, 176, 0.4);
    box-shadow: 0 15px 35px rgba(156, 39, 176, 0.2);
}

.promo-card.reload-bonus .promo-content h2 {
    color: #ab47bc;
}

.promo-card.reload-bonus .promo-content h2::after {
    background: #ab47bc;
}

.promo-card.reload-bonus .step-number {
    background: rgba(156, 39, 176, 0.2);
    color: #ab47bc;
}

.promo-card.reload-bonus .promo-points li i,
.promo-card.reload-bonus .promo-points li strong,
.promo-card.reload-bonus .promo-meta i,
.promo-card.reload-bonus .step-text p strong {
    color: #ab47bc;
}

.promo-card.reload-bonus .btn-action {
    background: linear-gradient(to right, #ab47bc, #8e24aa);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.promo-card.reload-bonus .btn-action:hover {
    background: linear-gradient(to right, #8e24aa, #7b1fa2);
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.4);
}

/* Cashback Card Style */
.promo-card.cashback {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(56, 142, 60, 0.01));
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.promo-card.cashback:hover {
    border: 1px solid rgba(76, 175, 80, 0.4);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
}

.promo-card.cashback .promo-content h2 {
    color: #4caf50;
}

.promo-card.cashback .promo-content h2::after {
    background: #4caf50;
}

.promo-card.cashback .cashback-rates th {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.promo-card.cashback .promo-points li i,
.promo-card.cashback .promo-points li strong,
.promo-card.cashback .promo-meta i {
    color: #4caf50;
}

.promo-card.cashback .btn-action {
    background: linear-gradient(to right, #4caf50, #388e3c);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.promo-card.cashback .btn-action:hover {
    background: linear-gradient(to right, #388e3c, #2e7d32);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.4);
}

/* VIP Club Card Style */
.promo-card.vip-club {
    background: linear-gradient(135deg, rgba(66, 66, 66, 0.1), rgba(33, 33, 33, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-card.vip-club::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0) 0%,
        rgba(255, 215, 0, 0.1) 50%, 
        rgba(255, 215, 0, 0) 100%);
    animation: shine 3s infinite linear;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.promo-card.vip-club:hover {
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.promo-card.vip-club .promo-content {
    position: relative;
    z-index: 2;
}

.promo-card.vip-club .promo-content h2 {
    color: gold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.promo-card.vip-club .promo-content h2::after {
    background: gold;
}

.promo-card.vip-club .promo-points li i,
.promo-card.vip-club .promo-points li strong,
.promo-card.vip-club .promo-meta i {
    color: gold;
}

.promo-card.vip-club .btn-action {
    background: linear-gradient(to right, gold, #e6c200);
    color: #333;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.promo-card.vip-club .btn-action:hover {
    background: linear-gradient(to right, #e6c200, #cca900);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

/* Festival Promos Card Style */
.promo-card.festival {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(194, 24, 91, 0.01));
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.promo-card.festival:hover {
    border: 1px solid rgba(233, 30, 99, 0.4);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.promo-card.festival .promo-content h2 {
    color: #ec407a;
}

.promo-card.festival .promo-content h2::after {
    background: #ec407a;
}

.promo-card.festival .promo-points li i,
.promo-card.festival .promo-points li strong,
.promo-card.festival .promo-meta i {
    color: #ec407a;
}

.promo-card.festival .upcoming-promo-item .promo-date {
    color: #ec407a;
    font-weight: 600;
}

.promo-card.festival .btn-action {
    background: linear-gradient(to right, #ec407a, #d81b60);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.promo-card.festival .btn-action:hover {
    background: linear-gradient(to right, #d81b60, #c2185b);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.4);
}

/* FAQ Accordion Styles */
.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    padding-right: 30px;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-question.open::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Mobile Navigation Scrollbar */
.mobile-nav-scroll {
    display: none;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.mobile-nav-scroll::-webkit-scrollbar {
    height: 5px;
}

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

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

.mobile-nav-scroll .nav-list {
    display: flex;
    padding: 0 350px;
    margin: 0;
}

.mobile-nav-scroll .nav-item {
    margin: 0 10px;
    flex-shrink: 0;
}

.mobile-nav-scroll .nav-item a {
    padding: 8px 15px;
    font-size: 14px;
    white-space: nowrap;
}

/* Bonus Details Styles */
.bonus-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 15px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.bonus-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.detail-value {
    color: var(--primary-color);
    font-weight: 700;
}

/* Media Queries */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-nav-scroll {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
}

/* Specific styles for each promo card type */
.promo-card.daily-spins .bonus-details {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.05), rgba(0, 230, 118, 0.01));
    border-color: rgba(0, 230, 118, 0.1);
}

.promo-card.daily-spins .detail-value {
    color: var(--accent-color);
}

.promo-card.reload-bonus .bonus-details {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05), rgba(33, 150, 243, 0.01));
    border-color: rgba(33, 150, 243, 0.1);
}

.promo-card.reload-bonus .detail-value {
    color: #2196f3;
}

.promo-card.cashback .bonus-details {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05), rgba(255, 87, 34, 0.01));
    border-color: rgba(255, 87, 34, 0.1);
}

.promo-card.cashback .detail-value {
    color: #ff5722;
}

.promo-card.vip-club .bonus-details {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), rgba(156, 39, 176, 0.01));
    border-color: rgba(156, 39, 176, 0.1);
}

.promo-card.vip-club .detail-value {
    color: #9c27b0;
}

.promo-card.festival .bonus-details {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 193, 7, 0.01));
    border-color: rgba(255, 193, 7, 0.1);
}

.promo-card.festival .detail-value {
    color: var(--primary-color);
}
