/* Main styles for Banglawin88 Casino website */

/* Global Styles */
:root {
    --primary-color: #e4af11; /* Brighter gold */
    --secondary-color: #e82a7c; /* Brighter pink */
    --accent-color: #26de81; /* Brighter green */
    --dark-bg: #0b0b1a; /* Darker, more dramatic background */
    --medium-bg: #12122c; /* Medium background */
    --light-bg: #21214d; /* Light background elements */
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
    --success-color: #26de81;
    --warning-color: #ffab00;
    --error-color: #ff3d71;
    --border-radius: 8px;
    --box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    --glow-shadow: 0 0 15px rgba(228, 175, 17, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

button {
    cursor: pointer;
}

/* Utility Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
    color: #000;
}

.btn-login {
    background-color: transparent;
    border: 1px solid var(--text-color);
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.btn-signup {
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: #000;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
    color: #000;
}

.btn-bonus {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: var(--box-shadow);
}

.btn-bonus:hover {
		color: #000 !important;
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
}

.btn-money {
    background-color: var(--accent-color);
    color: #000;
    box-shadow: var(--box-shadow);
}

.btn-money:hover {
	color: #000 !important;
	transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.7);
}

.btn-vip {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: var(--box-shadow);
}

.btn-vip:hover {
	color: #fff !important;

    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 62, 127, 0.7);
}

.btn-play, .btn-bet {
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: #000;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.btn-play:hover, .btn-bet:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
    color: #000;
}

.btn-play i {
	margin-left: 10px;
}

.btn-deposit {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 4px;
}

.btn-forum {
    background-color: var(--light-bg);
    padding: 0.5rem 1rem;
    font-size: 14px;
    border-radius: 4px;
}

.btn-forum:hover {
    background-color: var(--primary-color);
    color: #000;
}

.btn-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-top: 0.5rem;
}

.btn-read-more:hover {
    text-decoration: underline;
}

.btn-terms {
    background-color: transparent;
    color: var(--text-color);
    font-size: 14px;
    border: none;
    display: flex;
    align-items: center;
}

.btn-terms i {
    margin-left: 0.5rem;
}

/* Ticker */
.ticker-container {
    background: linear-gradient(90deg, var(--dark-bg), var(--medium-bg), var(--dark-bg));
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
}

.ticker-wrapper {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.ticker-rates {
    display: flex;
    white-space: nowrap;
}

.ticker-rates span, .ticker-winners span {
    margin-right: 2rem;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0;
}

.ticker-rates i, .ticker-winners i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.ticker-winners {
    position: relative;
    margin-left: 2rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 20px;
    display: flex;
    align-items: center;
    width: 50%; /* Make it wider */
    white-space: nowrap;
    overflow: hidden;
}

.ticker-winners span {
    position: absolute;
    top: 0;
    left: 1rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    white-space: nowrap;
    width: 100%;
    display: inline-block;
}

.ticker-winners span.active {
    opacity: 1;
    transform: translateY(0);
}

.ticker-buttons {
    display: flex;
    gap: 10px;
}

.ticker-buttons .btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.85rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Header */
header {
    background: linear-gradient(to bottom, var(--medium-bg), var(--dark-bg));
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(228, 175, 17, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(228, 175, 17, 0.3);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(228, 175, 17, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 42, 124, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo img {
    max-height: 45px;
    animation: glow 3s infinite;
    filter: drop-shadow(0 0 3px rgba(228, 175, 17, 0.7));
}

.main-nav ul {
    display: flex;
    gap: .5rem;
}

.main-nav li a {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-nav li.active a::before {
    width: 70%;
}

.main-nav li a:hover::before {
    width: 70%;
}

.main-nav li.active a {
    background-color: var(--light-bg);
}

.main-nav li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.main-nav li a i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.main-nav li a:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.partners {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(228, 175, 17, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.partners img {
    height: 20px;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.partners img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(228, 175, 17, 0.5));
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Main Content */
main {
    max-width: 1800px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(135deg, var(--medium-bg), var(--light-bg));
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    margin-right: 1.5rem;
    position: sticky;
    top: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto; /* Make sidebar scrollable */
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: none;
    background-color: rgba(11, 11, 26, 0.6);
    color: var(--text-color);
    font-size: 0.9rem;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: #000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background-color: #ffda44;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.categories-title {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.categories-menu {
    max-height: 300px;
    overflow-y: auto; /* Make categories scrollable */
    margin-bottom: 1.5rem;
    padding-right: 5px;
}

.categories-menu li {
    margin-bottom: 0.5rem;
}

.categories-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    background-color: rgba(11, 11, 26, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.categories-menu li a:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateX(5px);
}

.categories-menu li a i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.categories-menu li a span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 24px;
    background-color: var(--dark-bg);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.categories-menu li a:hover i {
    color: #000;
    transform: rotate(10deg) scale(1.1);
}

.categories-menu li a:hover span {
    background-color: rgba(0, 0, 0, 0.2);
    color: #000;
}

/* Content */
.content {
    flex: 1;
    padding: 0 1.5rem;
		overflow: hidden;
    background: rgba(11, 11, 26, 0.5);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
    position: relative;
    padding: 2rem;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--medium-bg), var(--light-bg));
    overflow: hidden;
}

.page-header::before {
    content: '\f3a5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 12rem;
    bottom: -3rem;
    right: -2rem;
    opacity: 0.05;
    color: var(--primary-color);
    transform: rotate(-15deg);
}

.page-header::after {
    content: '\f51e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 8rem;
    top: -2rem;
    left: -1rem;
    opacity: 0.03;
    color: var(--primary-color);
    transform: rotate(15deg);
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.section-header i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 450px;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius);
    padding: 2rem;
}

/* Add slide background images */
.slide-1 {
    background: linear-gradient(rgba(11, 11, 26, 0.7), rgba(11, 11, 26, 0)), url('images/1.avif');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background: linear-gradient(rgba(11, 11, 26, 0.7), rgba(11, 11, 26, 0.1)), url('images/2.avif');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background: linear-gradient(rgba(11, 11, 26, 0.7), rgba(11, 11, 26, 0.1)), url('images/3.avif');
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.welcome-bonus {
    width: 100%;
    max-width: 700px;
    z-index: 3;
}

.bonus-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.slide h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.game-card {
    position: relative;
    background: linear-gradient(to bottom, var(--medium-bg), var(--dark-bg));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.game-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.game-provider {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, var(--primary-color), rgba(255, 204, 0, 0.7));
    color: #000;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 var(--border-radius) 0;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.game-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-title {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    background: rgba(11, 11, 26, 0.8);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sports-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 180px;
}

.sports-image {
    height: 100%;
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
}

.sports-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sports-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8) 50%);
    font-weight: 600;
}

.sports-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sports-card:hover .sports-overlay {
    opacity: 1;
}

/* Jackpot Banner */
.jackpot-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.jackpot-info {
    background: linear-gradient(135deg, #9100e6, #3e00b3);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.jackpot-info::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="70" cy="30" r="4" fill="rgba(255,255,255,0.2)"/><circle cx="30" cy="70" r="2.5" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.2)"/></svg>');
    opacity: 0.4;
    z-index: -1;
}

.jackpot-label {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: jackpot-pulse 2s infinite;
}

.jackpot-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.countdown {
    color: #fff;
    font-weight: 700;
    animation: blink 1s infinite;
}

.jackpot-game {
    position: relative;
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-image: url('images/4.webp');
}

.jackpot-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,215,0,0.6)"/><circle cx="30" cy="40" r="1.5" fill="rgba(255,215,0,0.6)"/><circle cx="60" cy="20" r="2.5" fill="rgba(255,215,0,0.6)"/><circle cx="20" cy="70" r="1.8" fill="rgba(255,215,0,0.6)"/><circle cx="80" cy="50" r="2.2" fill="rgba(255,215,0,0.6)"/><circle cx="45" cy="90" r="1.7" fill="rgba(255,215,0,0.6)"/></svg>');
    z-index: 1;
    animation: sparkle 4s infinite linear, pulse-opacity 3s infinite ease-in-out;
}

/* New animated jackpot particles with FA icons */
.jackpot-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.8;
    animation: float-icon 8s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

@keyframes float-icon {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translate(var(--tx), var(--ty)) rotate(var(--tr)); opacity: 0; }
}

/* Starry background for the entire site */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 25px 25px, white 1%, transparent 0%), 
        radial-gradient(1px 1px at 50px 100px, white 1%, transparent 0%),
        radial-gradient(1px 1px at 100px 25px, white 1%, transparent 0%),
        radial-gradient(1px 1px at 200px 100px, white 1%, transparent 0%),
        radial-gradient(2px 2px at 300px 300px, white 1%, transparent 0%);
    background-size: 400px 400px;
    z-index: -2;
    opacity: 0.15;
    pointer-events: none;
}

/* Enhance floating coins with FA icons */
.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.page-coin {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: var(--size);
    animation: float-coin var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

@keyframes float-coin {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.jackpot-game .game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

@keyframes jackpot-pulse {
    0% { transform: scale(1); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { transform: scale(1.05); text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.5); }
    100% { transform: scale(1); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
}

@keyframes sparkle {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Add flash effect for jackpot counter */
.jackpot-amount.flash {
    animation: flash 0.5s ease;
}

@keyframes flash {
    0% { color: #fff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    50% { color: var(--primary-color); text-shadow: 0 0 30px var(--primary-color); }
    100% { color: #fff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
}

/* Add animation to jackpot-particles for more dynamic effect */
@keyframes pulse-opacity {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Content Blocks */
.content-blocks {
    margin-bottom: 2rem;
}

.content-block {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(33, 33, 77, 0.7), rgba(18, 18, 44, 0.7));
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-block h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-block h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.features-list, .highlights-list {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(11, 11, 26, 0.3);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.features-list li, .highlights-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0;
}

.features-list li i, .highlights-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 4px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Blog Posts */
.blog-posts {
    margin-bottom: 2rem;
    position: relative;
}

.blog-posts::before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    bottom: -5rem;
    left: -3rem;
    opacity: 0.03;
    color: var(--secondary-color);
    transform: rotate(-15deg);
    z-index: -1;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--light-bg), var(--medium-bg));
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.blog-post::before {
    content: '\f091';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 8rem;
    bottom: -2rem;
    right: -1rem;
    opacity: 0.03;
    color: var(--primary-color);
    transform: rotate(15deg);
}

.blog-image {
    height: 100%;
    min-height: 200px;
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(228, 175, 17, 0.2), transparent 70%);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-meta i {
    color: var(--primary-color);
    opacity: 0.8;
}

.blog-excerpt {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.btn-read-more::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.btn-read-more:hover::after {
    transform: translateX(3px);
}

/* Trending Cards Styling */
.trending-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.trending-grid::before {
    content: '\f0c3';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    bottom: -5rem;
    right: -3rem;
    opacity: 0.03;
    color: var(--accent-color);
    transform: rotate(15deg);
    z-index: -1;
}

.trending-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: linear-gradient(135deg, var(--medium-bg), var(--light-bg));
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
}

.trending-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.trending-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(38, 222, 129, 0.1) 0%, transparent 70%);
    border-radius: 100% 0 0 0;
}

.trending-image {
    height: 100%;
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.trending-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(38, 222, 129, 0.2), transparent 70%);
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.trending-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.trending-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Payment Section Styling */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.payment-grid::before {
    content: '\f51e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    bottom: -5rem;
    left: -3rem;
    opacity: 0.03;
    color: var(--primary-color);
    transform: rotate(-15deg);
    z-index: -1;
}

.payment-card {
    background: linear-gradient(135deg, var(--medium-bg), var(--light-bg));
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
		flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(228, 175, 17, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(228, 175, 17, 0.3);
    position: relative;
    z-index: 1;
}

/* Promotions Styling */
.promo-card {
    background: linear-gradient(135deg, var(--medium-bg), var(--light-bg));
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    padding: 1.5rem;
    position: relative;
    animation: fadeIn 0.6s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.promo-card::before {
    content: '\f004';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 10rem;
    bottom: -2rem;
    right: -1rem;
    opacity: 0.03;
    color: var(--secondary-color);
    transform: rotate(15deg);
    z-index: 0;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(232, 42, 124, 0.1) 0%, transparent 70%);
    border-radius: 0 0 100% 0;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #ff6b9b);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 8px rgba(232, 42, 124, 0.3);
}

.promo-details {
    margin: 1.5rem 0;
}

.promo-list {
    margin: 1rem 0;
}

.promo-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.promo-note {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.promo-action {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.promo-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* VIP Program */
.vip-program {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.vip-tiers {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.vip-tier {
    background: linear-gradient(135deg, var(--medium-bg), #2c3e50);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    min-width: 200px;
    flex: 1;
}

.tier-name {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-benefits li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.tier-benefits li::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.vip-action {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, var(--medium-bg), var(--dark-bg));
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo img {
    max-height: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.footer-column h4 i {
    margin-right: 0.5rem;
}

.footer-column ul li a {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .partners {
        display: none;
    }
}

@media (max-width: 992px) {
    main {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
		position: relative;
    }

    .jackpot-banner {
        grid-template-columns: 1fr;
    }

    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .trending-card {
        grid-template-columns: 1fr;
    }
    
    .trending-image {
        height: 200px;
    }

    .promo-card.featured {
        flex-direction: column;
    }

    .promo-badge {
        margin: 0 auto 1.5rem;
    }

    .vip-tiers {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .ticker-buttons {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
				justify-content: center;
        gap: 1rem;
    }

    .logo {
        margin: 0 auto;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
    }

    .main-nav ul {
        min-width: max-content;
    }

    .slide {
        padding: 1rem !important;
    }
    .slide h1 {
        font-size: 1.8rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid,
    .benefits-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .security-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefit-icon,
    .security-icon {
        margin-bottom: 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Animation for winner ticker */
@keyframes fadein {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

/* Add these new animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(228, 175, 17, 0.2); }
    50% { text-shadow: 0 0 20px rgba(228, 175, 17, 0.8); }
    100% { text-shadow: 0 0 10px rgba(228, 175, 17, 0.2); }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.logo img {
    animation: glow 3s infinite;
}

.game-card, .promo-card, .blog-post {
    animation: fadeIn 0.6s ease-out;
}

.jackpot-amount {
    animation: glow 2s infinite;
}

.btn-primary, .btn-bonus, .btn-vip, .btn-money {
    position: relative;
    overflow: hidden;
}

.btn-primary:after, .btn-bonus:after, .btn-vip:after, .btn-money:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Additional Sidebar Elements */
.sidebar-jackpot {
    background: linear-gradient(135deg, var(--medium-bg), #122339);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 204, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.sidebar-jackpot:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    animation: pulse-glow 3s infinite;
}

.sidebar-jackpot h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.sidebar-jackpot h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    animation: spin-slow 3s infinite linear;
}

.jackpot-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0 1rem;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    position: relative;
    z-index: 1;
    animation: pulse-text 2s infinite;
}

.sidebar-jackpot .btn {
    width: 100%;
    position: relative;
    z-index: 1;
}

.sidebar-promo {
    background: linear-gradient(135deg, var(--secondary-color), #ff9066);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.sidebar-promo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.promo-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 0 var(--border-radius) 0 var(--border-radius);
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
}

.sidebar-promo h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.sidebar-promo p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.sidebar-promo .btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--dark-bg);
    font-weight: 600;
    border: none;
}

/* Section Header with View All Link */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.section-header h2 {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.section-header h2 i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.view-all {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.view-all i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-all:hover {
    color: var(--primary-color);
}

.view-all:hover i {
    transform: translateX(3px);
}

/* Game Badges */
.game-hot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #ff5722);
    color: #fff;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.game-hot-badge i {
    margin-right: 0.3rem;
    animation: pulse 1.5s infinite;
}

.promotions-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

@media (max-width: 768px) {
	.promotions-grid {
		grid-template-columns: 1fr;
	}
	.content {
		padding: 10px;
	}
	.promo-action {
		flex-direction: column;
	}
}

/* Enhanced Animations */
@keyframes pulse-glow {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes pulse-text {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Welcome Bonus Button */
.welcome-bonus {
    position: relative;
    z-index: 1;
}

.welcome-bonus .btn {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.welcome-bonus .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.5);
}

.welcome-bonus .btn i {
    margin-left: 0.75rem;
    font-size: 0.9rem;
}

/* Floating Coins Animation */
.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15"><circle cx="7.5" cy="7.5" r="7.5" fill="%23e4af11"/></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><circle cx="5" cy="5" r="5" fill="%23e4af11"/></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="10" fill="%23e4af11"/></svg>');
    background-repeat: repeat;
    animation: falling-coins 40s linear infinite;
    opacity: 0.15;
}

@keyframes falling-coins {
    from {
        background-position: 
            0 -100px,
            30px -50px,
            100px -150px;
    }
    to {
        background-position: 
            100px calc(100vh + 100px),
            130px calc(100vh + 50px),
            200px calc(100vh + 150px);
    }
}

/* Win Notifications */
.win-notifications {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.win-notification {
    background: linear-gradient(135deg, var(--dark-bg), var(--medium-bg));
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slide-in-right 0.5s ease forwards, fade-out 0.5s ease 4.5s forwards;
    max-width: 300px;
    transform: translateX(120%);
    display: flex;
    align-items: center;
    pointer-events: all;
}

.win-notification-icon {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.win-notification-content {
    flex: 1;
}

.win-notification-title {
    font-size: 0.95rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.win-notification-amount {
    color: var(--primary-color);
}

.content-block td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-block tr:nth-child(even) {
    background-color: rgba(11, 11, 26, 0.3);
}

.content-block tr:hover {
    background-color: rgba(33, 33, 77, 0.3);
}

.content-block img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

/* Enhanced ticker styles */
.ticker-rates span, .ticker-winners span {
    margin-right: 2rem;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0;
}

.ticker-winners span {
    display: inline-block;
}

/* Enhance slide for better text fit */
.slide {
    padding: 2rem;
}

.welcome-bonus {
    width: 100%;
    max-width: 700px;
}

@media (max-width: 768px) {
	.content-block {
		padding: 1rem;
	}
}

/* Add animation to buttons in content-block */
.content-block .btn {
    position: relative;
    overflow: hidden;
}

.content-block .btn::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.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-150%) rotate(30deg); }
    100% { transform: translateX(150%) rotate(30deg); }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg, #1a1a1a);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color, #ffc107), #ff9800);
    border-radius: 5px;
    border: 2px solid var(--dark-bg, #1a1a1a);
}

.win-notification-game {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@keyframes slide-in-right {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

@keyframes fade-out {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(120%); }
}

/* Forum Topics */
.forum-topics {
    margin-bottom: 2rem;
    position: relative;
}

.forum-topics::before {
    content: '\f086';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    bottom: -5rem;
    right: -3rem;
    opacity: 0.03;
    color: var(--secondary-color);
    transform: rotate(15deg);
    z-index: -1;
}

.forum-topic {
    background: linear-gradient(135deg, var(--light-bg), var(--medium-bg));
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.forum-topic:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.forum-topic::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(228, 175, 17, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.topic-header {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.topic-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.topic-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.topic-meta i {
    color: var(--primary-color);
    opacity: 0.8;
}

.topic-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.topic-content p {
    margin-bottom: 1rem;
}

.topic-content ul {
    margin: 1rem 0;
    padding-left: 1rem;
    position: relative;
}

.topic-content ul li {
    list-style-type: none;
    margin-bottom: 0.75rem;
    margin-left: 1rem;
    position: relative;
}

.topic-content ul li::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -1.5rem;
    top: 0.2rem;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Comparison Table */
.comparison-table {
    margin-bottom: 2rem;
    overflow-x: auto;
		overflow-y: hidden;
    position: relative;
}

.comparison-table::before {
    content: '\f080';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    bottom: -5rem;
    left: -3rem;
    opacity: 0.03;
    color: var(--primary-color);
    transform: rotate(-15deg);
    z-index: -1;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--medium-bg), var(--dark-bg));
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(33, 33, 77, 0.5);
    transition: all 0.3s ease;
}

.comparison-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.05);
    transform: scale(1.01);
}

.comparison-table .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table .fa-check {
    color: var(--success-color);
    animation: pulse 2s infinite;
}

.comparison-table .fa-times {
    color: var(--error-color);
}

/* Decorative Elements */
.decorative-element {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5px, -5px) rotate(2deg);
    }
    50% {
        transform: translate(0, -10px) rotate(5deg);
    }
    75% {
        transform: translate(-5px, -5px) rotate(3deg);
    }
}

/* Add position: relative to all containers that will have decorative elements */
.content-block, .forum-topic, .blog-post, .trending-card, .payment-card, .promo-card {
    position: relative;
    overflow: hidden;
}

/* Payment Methods Section */
.payment-methods .section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(228, 175, 17, 0.4);
    letter-spacing: 0.5px;
}

.payment-methods .section-header h2 i {
    font-size: 1.7rem;
    margin-right: 12px;
    animation: pulse 2s infinite;
}

/* Payment Benefits Section */
.payment-benefits {
    padding: 2rem;
    background: linear-gradient(135deg, var(--medium-bg), var(--light-bg));
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.payment-benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228,175,17,0.2) 0%, rgba(228,175,17,0) 70%);
    z-index: 0;
}

.payment-benefits::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228,175,17,0.15) 0%, rgba(228,175,17,0) 70%);
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(18, 18, 44, 0.7);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(228, 175, 17, 0.3);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: #000;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(228, 175, 17, 0.3);
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(228, 175, 17, 0.5);
    animation: pulse-opacity 2s infinite;
}

.benefit-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Security Section */
.security-section {
    padding: 2rem;
    background: linear-gradient(135deg, var(--medium-bg), var(--light-bg));
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.security-section::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0) 70%);
    z-index: 0;
}

.security-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.15) 0%, rgba(40, 167, 69, 0) 70%);
    z-index: 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.security-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(18, 18, 44, 0.7);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(40, 167, 69, 0.3);
}

.security-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.security-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(40, 167, 69, 0.5);
    animation: pulse-opacity 2s infinite;
}

.security-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #28a745;
}

.security-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Enhanced Welcome Bonus in Promotions */
.promo-card.featured {
    background: linear-gradient(135deg, var(--dark-bg), var(--medium-bg));
    position: relative;
    overflow: hidden;
    border: none;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 12px;
}

.promo-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e4af11' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.8;
}

.promo-card.featured::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228,175,17,0.2) 0%, rgba(228,175,17,0) 70%);
    z-index: -1;
}

.promo-card.featured .promo-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: #000;
    font-weight: 700;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 1.2rem 1rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(228, 175, 17, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 5;
    width: 100px;
    height: 100px;
    transform: rotate(15deg);
    animation: pulse-text 2s infinite;
}

.promo-card.featured .promo-badge span {
    font-size: 1.5rem;
    font-weight: 800;
}

.promo-card.featured h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 80%;
}

.promo-card.featured .promo-content {
    position: relative;
    z-index: 2;
}

.promo-card.featured .promo-action {
    margin-top: 1.5rem;
}

.promo-card.featured .btn-bonus {
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(228, 175, 17, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promo-card.featured .btn-bonus:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(228, 175, 17, 0.6);
}

.promo-card.featured .btn-bonus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card.featured .btn-bonus:hover::before {
    opacity: 1;
}

.promo-card.featured .promo-list {
    background: rgba(17, 17, 39, 0.6);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-left: 3px solid var(--primary-color);
}

.promo-card.featured .promo-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.promo-card.featured .promo-list li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Decorative elements for welcome bonus */
.promo-card.featured::before {
    content: '';
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath d='M15 0L18.5 11.5H30L20.5 18.5L24 30L15 23L6 30L9.5 18.5L0 11.5H11.5L15 0Z' fill='%23e4af11' fill-opacity='0.2'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23e4af11' fill-opacity='0.1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M20 0L24 16H40L28 26L32 40L20 30L8 40L12 26L0 16H16L20 0Z' fill='%23e4af11' fill-opacity='0.15'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-position: 
        0 0,
        20px 20px,
        40px 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Media queries adjustments */
@media (max-width: 992px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .promo-card.featured .promo-badge {
        right: 20px;
        transform: scale(0.8) rotate(15deg);
    }

    .promo-card.featured h3 {
        font-size: 1.5rem;
        max-width: 75%;
    }
}

@media (max-width: 576px) {
    .promo-card.featured .promo-badge {
        right: 10px;
        top: 10px;
        transform: scale(0.7) rotate(15deg);
    }

    .promo-card.featured h3 {
        font-size: 1.3rem;
        max-width: 100%;
        margin-top: 60px;
    }
}

/* Additional mobile optimizations for slider */
@media (max-width: 768px) {
    .slide h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .slide p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .welcome-bonus {
        padding: 1rem;
    }
    
    .bonus-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .welcome-bonus .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-top: 0.8rem;
    }
}


/* Search box no results message */
.no-results-message {
    text-align: center;
    padding: 1.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1rem;
    animation: fadeIn 0.3s ease-in;
}

.no-results-message i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    opacity: 0.7;
}
