/* Global Styles */
:root {
    --primary-color: #8357da;
    --primary-light: #9e6ff0;
    --primary-dark: #6b46c1;
    --secondary-color: #2d3748;
    --accent-color: #ff4f6a;
    --accent-light: #ff6b82;
    --accent-dark: #e53e3e;
    --text-color: #f7fafc;
    --text-muted: #cbd5e0;
    --bg-color: #141824;
    --light-bg: #2d3748;
    --lighter-bg: #3a4556;
    --darker-bg: #0f131c;
    --success-color: #38d195;
    --warning-color: #ffb830;
    --info-color: #00c6fb;
    --card-bg: #1e2433;
    --border-color: #4a5568;
    
    /* Gradient presets */
    --gradient-purple: linear-gradient(135deg, #8357da 0%, #6b46c1 100%);
    --gradient-blue: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
    --gradient-green: linear-gradient(135deg, #38d195 0%, #0f8c58 100%);
    --gradient-red: linear-gradient(135deg, #ff4f6a 0%, #e53e3e 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff9d00 100%);
    --gradient-casino: linear-gradient(135deg, #ff4f6a 0%, #8357da 100%);
    
    /* Shadow presets */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 15px rgba(131, 87, 218, 0.5);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, 
        rgba(23, 25, 35, 1) 0%, 
        rgba(26, 31, 53, 1) 50%, 
        rgba(23, 25, 35, 1) 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style-type: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.play-btn {
    background: var(--gradient-green);
    border: 2px solid rgba(56, 209, 149, 0.3);
    box-shadow: 0 5px 15px rgba(56, 209, 149, 0.4);
}

.register-btn {
    background: var(--gradient-purple);
    border: 2px solid rgba(131, 87, 218, 0.3);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
    font-weight: 700;
}

.login-btn {
    background-color: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    box-shadow: 0 0 15px rgba(131, 87, 218, 0.2);
}

.login-btn:hover {
    background-color: rgba(131, 87, 218, 0.1);
}

.bonus-btn {
    background: var(--gradient-gold);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 157, 0, 0.4);
}

.container {
    display: flex;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.view-all {
    color: var(--primary-color);
    font-weight: 500;
}

.game-providers {
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: center;
}

.provider-item img {
	width: auto;
	height: 30px;
}

.provider-item:hover img {
	transform: scale(1.2);
	transition: transform 0.3s ease;
}

/* Ticker */
.ticker-wrap {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    width: 100%;
    height: 40px;
    overflow: hidden;
    background-color: var(--darker-bg);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    color: var(--text-color);
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.ticker-item:after {
    content: '•';
    position: absolute;
    right: 15px;
    color: var(--accent-color);
    font-size: 14px;
    animation: blink 1.5s infinite;
}

.ticker-item i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 16px;
    animation: pulse 2s infinite;
}

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

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

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: var(--darker-bg);
    background-image: linear-gradient(90deg, rgba(15, 19, 28, 0.9) 0%, rgba(20, 24, 36, 0.95) 50%, rgba(15, 19, 28, 0.9) 100%);
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 900;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-purple);
    box-shadow: 0 0 10px var(--primary-color);
    border-radius: 10px;
}

.logo-img {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    filter: drop-shadow(0 0 8px var(--primary-light));
    animation: glow 3s infinite alternate, spin 20s linear infinite !important;
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 5px var(--primary-light)); }
    100% { filter: drop-shadow(0 0 10px var(--primary-color)); }
}

.logo span {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
    text-shadow: 0 0 15px var(--primary-color), 0 0 30px rgba(131, 87, 218, 0.5);
    letter-spacing: 1px;
}

.header-btns {
    display: flex;
    gap: 15px;
}

/* Sidebar */
.sidebar {
    width: 240px;
    height: 100vh;
    background-color: var(--darker-bg);
    background-image: linear-gradient(180deg, #171923 0%, #1a1f35 100%);
    position: fixed;
    top: 130px; /* Ticker + Header height */
    left: 0;
    border-right: 2px solid var(--primary-color);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 800;
    overflow-y: auto;
    padding-bottom: 60px;
}

.sidebar ul {
    padding: 20px 0;
}

.sidebar li {
    margin-bottom: 15px;
    position: relative;
}

.sidebar li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    transition: width 0.3s ease;
    z-index: -1;
    opacity: 0.3;
}

.sidebar li:not(.active):hover::before {
    width: 100%;
}

.sidebar li a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 0 30px 30px 0;
}

.sidebar li a i {
    font-size: 22px;
    margin-right: 20px;
    min-width: 28px;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(107, 70, 193, 0.6);
}

.sidebar li.active a {
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(107, 70, 193, 0.7) 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(5px);
}

.sidebar li.active a i {
    color: white;
}

.sidebar li:not(.active) a:hover {
    background-color: rgba(107, 70, 193, 0.1);
    transform: translateX(10px);
}

/* Main Content */
main {
    flex: 1;
    padding: 150px 40px 40px 280px; /* Increased top and left padding to avoid overlap */
    min-height: 100vh;
    width: 100%;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(131, 87, 218, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(56, 209, 149, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 79, 106, 0.03) 0%, transparent 40%);
}

.page-header {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(131, 87, 218, 0.5);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #fff, #cbd5e0);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.main-content {
    margin: 40px 0;
    padding: 40px;
    background-color: rgba(45, 55, 72, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(131, 87, 218, 0.3);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(131, 87, 218, 0.1) 0%, transparent 70%);
    transform: rotate(-30deg);
    z-index: -1;
}

.main-content h1 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.main-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gradient-purple);
    border-radius: 3px;
}

.main-content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(247, 250, 252, 0.9);
}

.main-content p:first-of-type {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.feature-box {
    margin: 30px 0;
    padding: 25px;
    background-color: rgba(15, 19, 28, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(56, 209, 149, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(131, 87, 218, 0.1), rgba(56, 209, 149, 0.1), rgba(255, 79, 106, 0.1));
    z-index: -1;
    filter: blur(20px);
    animation: gradientAnimation 8s ease infinite;
}

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

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

.feature-list li {
    margin-bottom: 15px;
    padding: 10px 15px 10px 40px;
    position: relative;
    background-color: rgba(45, 55, 72, 0.4);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.feature-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(45, 55, 72, 0.6);
}

.feature-list li i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-color);
    font-size: 18px;
    text-shadow: 0 0 10px rgba(56, 209, 149, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    justify-content: center;
    padding: 20px 0;
}

.cta-buttons::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.cta-buttons .btn {
    min-width: 180px;
    padding: 14px 30px;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(131, 87, 218, 0.3);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.6));
    z-index: 0;
}

.slide:nth-child(1) {
    background: url('../images/1.avif') center center/cover no-repeat;
}

.slide:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 8, 72, 0.7) 0%, rgba(131, 87, 218, 0.5) 50%, rgba(107, 70, 193, 0.7) 100%);
    animation: slideLightEffect 10s infinite alternate;
}

.slide:nth-child(2) {
    background: url('../images/2.avif') center center/cover no-repeat;
}

.slide:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 78, 94, 0.7) 0%, rgba(56, 209, 149, 0.5) 50%, rgba(113, 178, 128, 0.7) 100%);
    animation: pulsate 5s infinite alternate;
}

.slide:nth-child(3) {
    background: url('../images/3.avif') center center/cover no-repeat;
}

.slide:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(95, 44, 130, 0.7) 0%, rgba(255, 79, 106, 0.5) 50%, rgba(73, 160, 157, 0.7) 100%);
    animation: rotateEffect 20s linear infinite;
}

@keyframes slideLightEffect {
    0% { transform: rotate(-30deg) translateY(0); }
    100% { transform: rotate(-30deg) translateY(-50px); }
}

@keyframes pulsate {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

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

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

.slide-content {
    max-width: 550px;
    color: var(--text-color);
    position: relative;
    z-index: 10;
    animation: slideContent 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-content {
    animation: slideContent 0.8s ease forwards;
}

@keyframes slideContent {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    background: linear-gradient(90deg, #fff, #ebebeb);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.prev-btn, .next-btn {
    background-color: rgba(15, 19, 28, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 18px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-light);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(131, 87, 218, 0.5);
}

.slider-dots {
    display: flex;
    gap: 15px;
    margin: 0 30px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.dot:hover::after {
    width: 5px;
    height: 5px;
}

.dot.active {
    background-color: var(--primary-color);
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(131, 87, 218, 0.7);
}

.dot.active::after {
    width: 5px;
    height: 5px;
    background-color: white;
}

/* Header Promo Buttons */

.promo-header-1, .promo-header-2, .promo-header-3 {
	background-color: var(--accent-color);
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}
.promo-header-2 {
	background-color: var(--primary-color);
}

.promo-header-3 {
	background-color: var(--success-color);
}

.promo-header-1 i, .promo-header-2 i, .promo-header-3 i {
	margin-right: 5px;
}

.promo-header-1:hover, .promo-header-2:hover, .promo-header-3:hover {
	background-color: var(--darker-bg);
}

/* Promo Cards */
.promo-cards-index {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.promo-card-index {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.promo-card-content-index {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.promo-card-content-index h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.category {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.category-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

/* Popular Games */
.popular-games {
    margin-bottom: 40px;
}

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

.game-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.game-image {
    height: 180px;
    background-color: #1e3799;
    background-size: cover;
    background-position: center;
}

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

.game-card:nth-child(1) .game-image {
    background-color: #6c5ce7;
}

.game-card:nth-child(2) .game-image {
    background-color: #e84393;
}

.game-card:nth-child(3) .game-image {
    background-color: #00cec9;
}

.game-card:nth-child(4) .game-image {
    background-color: #fdcb6e;
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Poker Section */
.poker-section {
    margin-bottom: 40px;
}

.poker-content {
    display: flex;
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
}

.poker-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poker-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.poker-image {
    flex: 1;
    background-color: #1e3799;
    background-image: linear-gradient(135deg, #1e3799 0%, #4a69bd 100%);
}

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

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 50px 30px 20px;
    margin-left: 240px; /* Match sidebar width */
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

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

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

.footer-column h4 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 15px;
}

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

.footer-column ul li a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: #a0aec0;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    padding: 12px 25px;
		background-color: var(--primary-color);
		color: #fff;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Slots Page */
.slots-categories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.category-btn {
    padding: 10px 20px;
    background-color: var(--light-bg);
    border: none;
    border-radius: 5px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.category-btn:hover:not(.active) {
    background-color: var(--secondary-color);
}

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

.slot-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.slot-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.slot-provider {
    font-size: 12px;
    color: #cbd5e0;
    margin-bottom: 5px;
}

.slot-overlay h4 {
    margin-bottom: 10px;
}

.slot-actions {
    display: flex;
    gap: 10px;
}

.load-more {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    padding: 12px 30px;
    font-size: 16px;
}

/* Live Casino Page */
.live-categories {
    margin-bottom: 30px;
}

.featured-live {
    margin-bottom: 30px;
}

.featured-live-game {
    display: flex;
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.featured-game-img {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.featured-game-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.provider-badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--primary-color);
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: 15px;
}

.featured-game-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.featured-game-info p {
    margin-bottom: 20px;
    color: #cbd5e0;
}

.live-game-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.live-game-stats span {
    display: flex;
    align-items: center;
}

.live-game-stats span i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Added distinctive feature-list styles for Live Casino page */
.live-casino-features {
    margin: 30px 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgba(43, 58, 103, 0.8) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 251, 0.3);
    position: relative;
    overflow: hidden;
}

.live-casino-features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 198, 251, 0.1) 0%, transparent 60%);
    animation: rotateGradient 15s linear infinite;
    z-index: -1;
}

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

.live-casino-features h3 {
    color: var(--info-color);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 198, 251, 0.5);
}

.live-casino-features ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.live-casino-features li {
    background-color: rgba(13, 17, 23, 0.6);
    border-radius: 15px;
    padding: 15px 20px 15px 50px;
    position: relative;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    border: 1px solid rgba(0, 198, 251, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.live-casino-features li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 198, 251, 0.4);
}

.live-casino-features li i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--info-color);
    font-size: 20px;
    background-color: rgba(0, 198, 251, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 198, 251, 0.3);
}

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

.live-game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.live-game-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

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

.live-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.live-game-meta {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 14px;
}

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

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

.live-banner {
    background-color: #1e3799;
    background-image: linear-gradient(135deg, #1e3799 0%, #4a69bd 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.live-banner-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.live-banner-content p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sports Betting Page */
.sports-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(131, 87, 218, 0.2);
    overflow-x: auto;
}

.sports-categories i {
    margin-right: 8px;
    font-size: 16px;
}

.sports-categories .category-btn {
    background: rgba(45, 55, 72, 0.7);
    border: 1px solid rgba(255, 79, 106, 0.2);
    border-radius: 30px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.sports-categories .category-btn.active {
    background: var(--gradient-red);
    box-shadow: 0 5px 15px rgba(255, 79, 106, 0.3);
    transform: translateY(-2px);
}

.sports-categories .category-btn:hover:not(.active) {
    background-color: rgba(255, 79, 106, 0.1);
    transform: translateY(-2px);
}

/* Added distinctive feature-list styles for Sports Betting page */
.sports-features {
    margin: 30px 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgba(103, 43, 43, 0.8) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 79, 106, 0.3);
    position: relative;
}

.sports-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff4f6a' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.5;
}

.sports-features h3 {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 79, 106, 0.5);
}

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

.sports-features li {
    background-color: rgba(13, 17, 23, 0.6);
    border-radius: 10px;
    padding: 20px 20px 20px 55px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.sports-features li:hover {
    background-color: rgba(20, 25, 35, 0.7);
    transform: translateX(5px);
}

.sports-features li i {
    position: absolute;
    left: 15px;
    top: 20px;
    color: var(--accent-color);
    font-size: 25px;
}

.match-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.match-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 15px;
}

.match-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.live-badge {
    display: inline-block;
    padding: 2px 8px;
    background-color: var(--accent-color);
    border-radius: 3px;
    font-size: 12px;
}

.match-teams {
    margin-bottom: 15px;
}

.team {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.match-odds {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.odd-btn {
    flex: 1;
    padding: 8px;
    background-color: var(--darker-bg);
    border: none;
    border-radius: 5px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.odd-btn:hover {
    background-color: var(--primary-color);
}

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

.match-more a {
    color: var(--primary-color);
    font-size: 14px;
}

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

.feature-item {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

/* Promotions Page */
.promo-categories, .live-categories {
    margin-bottom: 30px;
		display: flex;
		gap: 10px;
		overflow-x: auto;
}

.featured-promo {
    display: flex;
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.featured-promo-content {
    flex: 1;
    padding: 30px;
}

.promo-badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--accent-color);
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: 15px;
}

.featured-promo-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.featured-promo-content p {
    margin-bottom: 20px;
    color: #cbd5e0;
}

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

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

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

.featured-promo-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

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

.promo-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

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

.promo-card-content {
    padding: 20px;
    background-color: var(--light-bg);
}

.promo-terms {
    margin-top: 30px;
    padding: 15px;
    background-color: var(--darker-bg);
    border-radius: 5px;
    border-left: 4px solid var(--warning-color);
}

.promo-terms h4 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.promo-terms h4 i {
    margin-right: 8px;
    color: var(--warning-color);
}

.newsletter {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.newsletter h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
}

/* About Us Page */
.about-hero {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 300;
}

.values-section {
    margin-bottom: 40px;
    text-align: center;
}

.values-section h2 {
    margin-bottom: 30px;
}

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

.value-item {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.payment-section {
    margin: 40px 0;
    text-align: center;
}

.payment-section h2 {
    margin-bottom: 10px;
}

.payment-section > p {
    margin-bottom: 30px;
}

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

.payment-method {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

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

.payment-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.responsible-gaming {
    margin: 40px 0;
    text-align: center;
}

.responsible-gaming h2 {
    margin-bottom: 10px;
}

.responsible-gaming > p {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.tool-item {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
}

.tool-item i {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-section {
    margin: 40px 0;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    min-width: 200px;
}

.contact-item i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}


/* Fix the button text getting cut off in live-casino page */
.live-game-overlay .btn.play-btn {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 10px 15px;
    font-size: 14px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fix promo-card images not showing content */
.promo-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--light-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.promo-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.promo-card-content {
    padding: 20px;
    background-color: var(--light-bg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Adjust responsiveness */
@media (max-width: 992px) {
    footer {
        margin-left: 0;
    }
} 

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    position: fixed;
    top: 50px;
    left: 90px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    background-color: var(--primary-light);
}

/* Header Promo Buttons */
.header-promo-btns {
    display: flex;
    gap: 10px;
} 


/* Responsive */
@media (max-width: 1200px) {
	.games-grid,
	.values-grid,
	.tools-grid,
	.payment-grid,
	.betting-features {
			grid-template-columns: repeat(2, 1fr);
	}
	
	.game-categories {
			grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	main {
			padding: 150px 20px 40px 80px;
	}
	
	.sidebar {
			width: 60px;
			transition: all 0.3s ease;
	}
	
	.sidebar li a span {
			opacity: 0;
			transition: opacity 0.2s ease;
	}
	
	.sidebar:hover {
			width: 240px;
	}
	
	.sidebar:hover li a span {
			opacity: 1;
	}
	
	.featured-live-game,
	.featured-promo,
	.poker-content {
			flex-direction: column;
	}
	
	.featured-game-img,
	.featured-promo-image,
	.poker-image {
			height: 200px;
	}
	
	.game-providers {
			gap: 15px;
	}
	
	.provider-item img {
			height: 25px;
	}
	.featured-live-game {
		height: 100%;
	}
	
	footer {
			margin-left: 60px;
	}
}

@media (max-width: 768px) {
	body.menu-open {
			overflow: hidden;
	}
	.sports-features {
		padding: 15px;
	}
	
	.header-promo-btns {
		display: none !important;
	}
	.slider-controls {
		display: none !important;
	}
	.main-content {
		padding: 0 15px;
	}
	.cta-buttons {
		flex-direction: column;
	}

	.mobile-menu-toggle {
			display: flex;
			align-items: center;
			justify-content: center;
	}
	
	header {
			justify-content: space-between;
			padding: 10px 15px;
	}
	
	.game-providers {
			display: none;
	}
	
	.sidebar {
			width: 0;
			left: -100%;
			top: 0;
			height: 100vh;
			padding-top: 100px;
			transition: all 0.3s ease;
			z-index: 950;
	}
	
	body.menu-open .sidebar {
			width: 240px;
			left: 0;
	}
	
	.sidebar li a span {
			opacity: 1;
	}
	
	main {
			padding: 130px 15px 40px 15px;
	}
	
	.footer-links {
			grid-template-columns: repeat(2, 1fr);
	}
	
	.promo-cards-index {
			grid-template-columns: 1fr;
	}
	
	.contact-info {
			flex-direction: column;
			gap: 20px;
	}
	
	footer {
			margin-left: 0;
			padding: 40px 15px 20px;
	}
	
	.hero-slider {
			height: 350px;
	}
}

@media (max-width: 576px) {
	.ticker-wrap {
			height: 35px;
	}
	
	header {
			top: 35px;
			padding: 8px 10px;
	}
	
	.logo-img {
			width: 50px;
			height: 50px;
	}
	
	.header-btns .btn {
			padding: 8px 12px;
			font-size: 13px;
			min-width: 70px;
	}
	
	.games-grid,
	.values-grid,
	.tools-grid,
	.payment-grid,
	.betting-features,
	.game-categories {
			grid-template-columns: 1fr;
	}
	
	.footer-links {
			grid-template-columns: 1fr;
	}
	
	.footer-bottom {
			flex-direction: column;
			gap: 15px;
	}
	
	.slide-content h2 {
			font-size: 26px;
	}
	
	.slide-content p {
			font-size: 15px;
	}
	
	.match-cards {
			grid-template-columns: 1fr;
	}
	
	.newsletter-form {
			flex-direction: column;
			gap: 10px;
	}
	
	.newsletter-form input,
	.newsletter-form button {
			width: 100%;
			border-radius: 5px;
	}
	
	.featured-promo-content h2 {
			font-size: 22px;
	}
	
	.promo-details {
			flex-direction: column;
			gap: 10px;
	}
	
	.page-header h1 {
			font-size: 26px;
	}
	
	.main-content h1 {
			font-size: 24px;
	}
	
	.hero-slider {
			height: 300px;
	}
} 

/* Floating Background Icons */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    opacity: 0.08;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 10%;
    font-size: 40px;
    color: var(--primary-color);
    animation: float1 15s infinite;
}

.floating-icon.icon-2 {
    top: 20%;
    right: 15%;
    font-size: 30px;
    color: var(--accent-color);
    animation: float2 18s infinite;
}

.floating-icon.icon-3 {
    bottom: 15%;
    left: 20%;
    font-size: 35px;
    color: var(--secondary-color);
    animation: float3 20s infinite;
}

.floating-icon.icon-4 {
    bottom: 25%;
    right: 10%;
    font-size: 45px;
    color: var(--success-color);
    animation: float4 17s infinite;
}

.floating-icon.icon-5 {
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: var(--warning-color);
    animation: float5 25s infinite;
}

.floating-icon.icon-6 {
    top: 70%;
    left: 30%;
    font-size: 28px;
    color: var(--info-color);
    animation: float6 22s infinite;
}

.floating-icon.icon-7 {
    top: 30%;
    left: 70%;
    font-size: 32px;
    color: var(--primary-light);
    animation: float7 19s infinite;
}

@keyframes float1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(10deg); }
    100% { transform: translate(0, 40px) rotate(0deg); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 30px) rotate(-10deg); }
    100% { transform: translate(0, 60px) rotate(0deg); }
}

@keyframes float3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -20px) rotate(15deg); }
    100% { transform: translate(0, -40px) rotate(0deg); }
}

@keyframes float4 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(-15deg); }
    100% { transform: translate(0, -60px) rotate(0deg); }
}

@keyframes float5 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-20px, 20px) rotate(10deg) scale(1.1); }
    100% { transform: translate(20px, -20px) rotate(-10deg) scale(1); }
}

@keyframes float6 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, 10px) rotate(20deg); }
    100% { transform: translate(0, 20px) rotate(0deg); }
}

@keyframes float7 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, -10px) rotate(-20deg); }
    100% { transform: translate(0, -20px) rotate(0deg); }
}

/* Enhanced Animations for Elements */
.btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Enhanced Card Hover Effects */
.game-card, .slot-card, .live-game-card, .promo-card, .value-item, .payment-method {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card:hover, .slot-card:hover, .live-game-card:hover, .promo-card:hover, .value-item:hover, .payment-method:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.game-card:hover::after, .slot-card:hover::after, .live-game-card:hover::after, .promo-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: 0 0 20px rgba(131, 87, 218, 0.5);
    animation: pulse-border 2s infinite;
    z-index: -1;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Glowing Text Animation */
.section-header h2, .page-header h1, .featured-promo-content h2 {
    position: relative;
    animation: text-glow 3s infinite alternate;
}

@keyframes text-glow {
    0% {
        text-shadow: 0 0 5px rgba(131, 87, 218, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(131, 87, 218, 0.7), 0 0 30px rgba(131, 87, 218, 0.4);
    }
}

/* Enhanced Sidebar Animation */
.sidebar li a {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sidebar li:not(.active) a:hover {
    transform: translateX(15px) scale(1.05);
    background: linear-gradient(90deg, rgba(131, 87, 218, 0.1) 0%, rgba(131, 87, 218, 0.05) 100%);
}

.sidebar li a i {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sidebar li:not(.active) a:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-light);
}

/* Confetti Animation for Special Elements */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0.7;
    animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Header Animation */
header {
    animation: header-glow 5s infinite alternate;
}

@keyframes header-glow {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 4px 25px rgba(131, 87, 218, 0.4);
    }
}

/* Enhanced Button Hover Effects */
.btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn.register-btn:hover, .btn.play-btn:hover {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

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

/* Shining Effect for Casino Elements */
.game-card::before,
.slot-card::before,
.live-game-card::before,
.promo-card::before {
    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.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 6s infinite;
    pointer-events: none;
    z-index: 2;
}

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


@keyframes jackpot-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

/* Neon Text Effect */
.neon-text {
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--primary-color),
        0 0 30px var(--primary-color),
        0 0 40px var(--primary-color),
        0 0 55px var(--primary-color);
    animation: neon-flicker 3s infinite alternate;
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 40px var(--primary-color),
            0 0 55px var(--primary-color);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Spinning Coin Animation */
.coin-spin {
    display: inline-block;
    animation: coin-flip 3s infinite;
    transform-style: preserve-3d;
}

@keyframes coin-flip {
    0% { transform: rotateY(0); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

/* Slot Machine Pull Animation */
.slot-pull {
    position: relative;
    overflow: hidden;
}

.slot-pull::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    animation: slot-pull 5s infinite;
    pointer-events: none;
}

@keyframes slot-pull {
    0% {
        transform: translateY(-100%);
    }
    15% {
        transform: translateY(0);
    }
    85% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Card Flip Animation */
.card-flip {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

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

.card-flip-front,
.card-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

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

/* Dice Roll Animation */
.dice-roll {
    display: inline-block;
    animation: dice-roll 3s infinite;
}

@keyframes dice-roll {
    0% { transform: rotate(0) translate(0, 0); }
    20% { transform: rotate(30deg) translate(5px, -5px); }
    40% { transform: rotate(-30deg) translate(-5px, 5px); }
    60% { transform: rotate(15deg) translate(3px, -3px); }
    80% { transform: rotate(-15deg) translate(-3px, 3px); }
    100% { transform: rotate(0) translate(0, 0); }
}

/* Enhanced Ticker Animation */
.ticker-item {
    position: relative;
    animation: ticker-pulse 2s infinite alternate;
}

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

/* Apply special effects to specific elements */
.logo-img {
    animation: glow 3s infinite alternate, spin 20s linear infinite !important;
}

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

/* Enhanced background with gradient animation */
body {
    background: linear-gradient(135deg, 
        rgba(23, 25, 35, 1) 0%, 
        rgba(26, 31, 53, 1) 50%, 
        rgba(23, 25, 35, 1) 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

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

/* Glowing border animation */
.hero-slider, 
.featured-promo, 
.main-content {
    position: relative;
}

.hero-slider::after,
.featured-promo::after,
.main-content::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color), 
        var(--success-color), 
        var(--warning-color), 
        var(--info-color));
    background-size: 400% 400%;
    animation: glowing-border 10s linear infinite;
    opacity: 0.5;
}

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