/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4e1db0;
    --secondary-color: #2cc4eb;
    --accent-color: #ff8400;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f5;
    --text-color: #ffffff;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --gray-color: #6c757d;
    --link-color: #4dabf7;
    
    --gradient-primary: linear-gradient(135deg, #4e1db0, #2a0f7a);
    --gradient-secondary: linear-gradient(135deg, #2cc4eb, #1a7a99);
    --gradient-accent: linear-gradient(135deg, #ff8400, #e05f00);
    
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --button-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #0d0d1a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

section {
    padding: 1rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.featured-banners {
	padding: 0;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

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

.games-section {
	padding: 1rem 0;
}

/* Ticker improvements */
.ticker-container {
    background-color: #0f0f1b;
    padding: 0.5rem 0;
    max-width: 1800px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    font-size: 0.8rem;
    z-index: 1000;
}

.ticker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}

.exchange-rates {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
    background-color: rgba(20, 27, 46, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.exchange-rates span {
    font-size: 0.75rem;
		font-weight: 500;
    white-space: nowrap;
    transition: transform 0.2s ease;
}

.exchange-rates span:hover {
    transform: translateY(-2px);
}

.currency-name {
    font-weight: 500;
    color: var(--accent-color);
}

.winners-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin: 0 20px;
}

.winners {
    display: flex;
    gap: 2rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.winners span {
    color: #f5f5f5;
    font-size: 0.75rem;
    white-space: nowrap;
}

.ticker-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ticker-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f1f1f1;
    font-size: 0.8rem;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    background-color: #141b2e;
    font-weight: 500;
}

.ticker-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ticker-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    margin-right: 0.25rem;
    font-size: 0.75rem;
}

.ticker-btn:first-child .ticker-icon {
    background-color: #b968e8;
    color: #fff;
}

.ticker-btn:nth-child(2) .ticker-icon {
    background-color: #2196f3;
    color: #fff; 
}

.ticker-btn:nth-child(3) .ticker-icon {
    background-color: #3bde7c;
    color: #fff;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #f1f1f1;
    font-size: 0.8rem;
    margin-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
}

.os-icon {
    color: #fff;
    font-size: 1rem;
    transition: color 0.2s;
}

.os-icon:hover {
    color: var(--secondary-color);
}

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

/* Header improvements */
header {
    background-color: #141b2e;
    padding: 0.1rem 0;
    border-bottom: 3px solid #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.logo {
		padding-top: .5rem;
    flex: 0 0 auto;
}

.logo img {
    height: 4rem;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.main-nav ul li a {
    color: #f1f1f1;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.main-nav ul li.active a {
    color: #fff;
    font-weight: 600;
    position: relative;
}

.main-nav ul li.active a:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3066f6;
}

.main-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.auth-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-login {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
    letter-spacing: 0.02em;
}

.btn-register {
    background-color: #3bde7c;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
    letter-spacing: 0.02em;
}

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

.btn-register:hover {
    background-color: #32c76c;
}

/* Main content adjustments for fixed sidebar */
.main-content {
    display: flex;
    padding: 1rem;
    max-width: 1800px;
    margin: 0 auto;
    gap: 1.5rem;
    position: relative;
}

/* Sidebar styles improvements */
.sidebar {
    width: 260px;
    height: calc(100vh - 150px);
    flex-shrink: 0;
    background-color: #141b2e;
    border-radius: 10px;
    overflow: hidden;
    padding: 1rem;
    position: sticky;
    top: 100px;
    z-index: 990;
    overflow-y: auto;
}

/* Sidebar search improvements */
.search-box {
    position: relative;
		display: flex;
    margin-bottom: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-box span {
    position: absolute;
		top: .5rem;
		left: .7rem;
    color: rgba(255, 255, 255, 1);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}

.search-box input:focus {
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.search-box input:focus + span {
    color: rgba(255, 255, 255, 0.6);
}

.categories-section {
    padding: 0 0.25rem;
}

.sidebar-heading {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.categories-list li {
    margin-bottom: 0.3rem;
}

.categories-list li a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: all 0.2s;
    font-weight: 500;
}

.categories-list li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.category-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.08);
}

.categories-list li:nth-child(1) .category-icon {
    background-color: #9b2ca7;
    color: #fff;
}

.categories-list li:nth-child(2) .category-icon {
    background-color: #30b857;
    color: #fff;
}

.categories-list li:nth-child(3) .category-icon {
    background-color: #2196f3;
    color: #fff;
}

.categories-list li:nth-child(4) .category-icon {
    background-color: #9b2ca7;
    color: #fff;
}

.categories-list li:nth-child(5) .category-icon {
    background-color: #2196f3;
    color: #fff;
}

.categories-list li:nth-child(6) .category-icon {
    background-color: #9829a7;
    color: #fff;
}

.categories-list li:nth-child(7) .category-icon {
    background-color: #9829a7;
    color: #fff;
}

.categories-list li:nth-child(8) .category-icon {
    background-color: #e35656;
    color: #fff;
}

.categories-list li:nth-child(9) .category-icon {
    background-color: #e35656;
    color: #fff;
}

.category-icon i {
    color: currentColor;
    font-size: 1rem;
}

.category-count {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* Content area improvements */
.content {
    flex: 1;
    margin-left: 0;
}

/* Banner slider improvements */
.banner-slider {
    display: flex;
    gap: 1rem;
}

.banner {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 230px;
    display: flex;
    align-items: center;
}

.banner-primary {
    background: linear-gradient(to right, rgba(106, 71, 207, 0.9), rgba(150, 114, 255, 0.8));
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.banner-secondary {
    background: linear-gradient(to right, rgba(30, 104, 152, 0.9), rgba(73, 184, 255, 0.7));
    flex: 2;
    background-size: cover;
    background-position: right center;
    position: relative;
}

.banner-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    width: 60%;
}

@media screen and (max-width: 768px) {
    .banner-content {
        width: 100%;
    }
}

.banner-tag {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.banner-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.03em;
}

.banner-secondary .banner-title {
    font-size: 1.5rem;
    line-height: 1.4;
}

.banner-provider {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-provider img {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: #fff;
}

.banner-provider span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hide the actual image elements but keep them in the HTML for accessibility */
.banner-image {
    display: none;
}

.btn-participate {
    display: inline-block;
    background-color: #fff;
    color: #1a1a2e;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.btn-participate:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Games section improvements */
.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: -0.03em;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.game-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background-color: #1a1a2e;
    position: relative;
    display: block;
    text-decoration: none;
}

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

.game-card:hover .game-image::after {
    opacity: 1;
}

.game-card:hover .play-now-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.game-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

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

.game-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.play-now-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: #3bde7c;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.game-provider {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.game-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: #f44336;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    color: #fff;
    font-weight: 600;
}

.game-title {
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

/* Contact footer improvements */
.contact-footer {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 99;
}

.contact-phone a,
.contact-chat a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-phone a {
    background-color: #2196f3;
}

.contact-chat a {
    background-color: #2196f3;
}

.contact-support {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    background-color: #0f0f1b;
    border-radius: 20px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile menu toggle styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    margin-left: 20px;
    position: relative;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive adjustments with improvements */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 0.5rem;
    }
    
    .main-content {
        flex-direction: column;
    }
    
    .sidebar {
        position: fixed;
        left: -300px;
        top: 60px;
        height: calc(100vh - 60px);
        transition: left 0.3s ease;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .content {
        margin-left: 0;
        width: 100%;
    }
    
    .categories-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .categories-list li {
        margin-bottom: 0;
    }
    
    .banner-slider {
        flex-direction: column;
    }
    
    .banner {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.5rem 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: 20px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #141b2e;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        z-index: 5;
        transition: all 0.3s ease;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    
    .main-nav ul li {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .main-nav ul li a {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }
    
    .main-nav ul li.active a:after {
        display: none;
    }
    
    .main-nav ul li.active a {
        background-color: rgba(48, 102, 246, 0.15);
				padding: 0.5rem;
        color: #3066f6;
    }
    
    .auth-buttons {
        margin-left: auto;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .contact-footer {
        flex-direction: column;
        gap: 0.5rem;
        bottom: 1rem;
        right: 1rem;
        left: auto;
    }
    
    .ticker-actions {
        display: none;
    }
    
    .winners-container {
        margin: 0;
    }
    
    .categories-list {
        display: block;
    }
    
    .categories-list li {
        margin-right: 0;
    }
}

/* Enhanced content section styles */
.content-section {
    margin-bottom: 3.5rem;
    padding: 2rem;
    background-color: #141b2e;
    background-image: linear-gradient(140deg, rgba(78, 29, 176, 0.08), rgba(20, 27, 46, 0), rgba(44, 196, 235, 0.05));
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 768px) {
    .content-section {
			padding: 1rem;
    }
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #4e1db0, #2cc4eb);
    opacity: 0.8;
}

.content-section:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffffff, #b5b5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.content-text {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    letter-spacing: 0.2px;
}

.content-text p {
    margin-bottom: 1.25rem;
}

.content-text i {
    color: #ff8400;
    margin-right: 10px;
}

.feature-list {
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid #3bde7c;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    color: #3bde7c;
    margin-right: 1.25rem;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    background-color: rgba(59, 222, 124, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    background-color: rgba(59, 222, 124, 0.2);
}

.feature-item div {
    flex: 1;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.game-categories {
    margin: 2.5rem 0;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .game-categories {
        padding: .5rem;
    }
}

.game-categories h3 {
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.game-categories h3 i {
    margin-right: 1rem;
    color: #ff8400;
    background-color: rgba(255, 132, 0, 0.15);
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.game-categories h3:hover i {
    transform: rotate(15deg);
    background-color: rgba(255, 132, 0, 0.25);
}

.game-list {
    margin-left: 0;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.game-list-item {
    margin-bottom: 0;
    padding: 1rem 1.5rem;
    color: #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #4e1db0, #2cc4eb);
    opacity: 0.7;
}

.game-list-item:hover {
    background-color: rgba(0, 0, 0, 0.35);
    transform: translateX(8px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.game-list-item span:first-child {
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 2;
}

.game-list-item span:last-child {
    color: #b5b5b5;
    font-size: 0.9rem;
    text-align: right;
    max-width: 60%;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
	.game-list-item span:last-child {
		max-width: 100%;
	}
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.btn-orange {
    background: linear-gradient(135deg, #ff8400, #ff5f00);
    color: #fff;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #ff9500, #ff6d00);
}

.btn-green {
    background: linear-gradient(135deg, #3bde7c, #28a745);
    color: #fff;
}

.btn-green:hover {
    background: linear-gradient(135deg, #44e886, #2ebd4e);
}

.btn-red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

.btn-red:hover {
    background: linear-gradient(135deg, #f15849, #cf4436);
}

.btn-blue {
    background: linear-gradient(135deg, #3498db, #2173a6);
    color: #fff;
}

.btn-blue:hover {
    background: linear-gradient(135deg, #41a4e8, #2980b9);
}

.testimonials {
    margin-top: 3rem;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.testimonial-item {
    margin-bottom: 1.75rem;
    padding: 1.5rem 1.75rem 1.5rem 3.5rem;
    position: relative;
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-family: var(--font-main);
    font-weight: 400;
    font-style: italic;
}

.testimonial-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-item::before {
    content: '💬';
    position: absolute;
    left: 1.25rem;
    top: 1.5rem;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

.testimonial-item:last-child {
    margin-bottom: 0;
}

.security-notice {
    margin-top: 2.5rem;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #3bde7c;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.security-notice:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.security-notice p {
    color: #e0e0e0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.security-notice i {
    color: #3bde7c;
    margin-right: 1rem;
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

.getting-started h3,
.limited-offers h3 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.getting-started h3 i,
.limited-offers h3 i {
    margin-right: 1rem;
    color: #ff8400;
    background-color: rgba(255, 132, 0, 0.15);
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.getting-started h3:hover i,
.limited-offers h3:hover i {
    transform: rotate(15deg);
}

/* Sidebar scrollbar styling */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

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

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Font Awesome icon styles in content sections */
.content-section .fas,
.content-section .fab,
.content-section .fa,
.content-section .far,
.content-section svg.svg-inline--fa {
    margin-right: 15px;
}

.content-section .feature-item .fas,
.content-section .feature-item .fab,
.content-section .feature-item .fa,
.content-section .feature-item .far,
.content-section .feature-item svg.svg-inline--fa {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3bde7c;
    margin-right: 15px;
    font-size: 1.25rem;
    background-color: rgba(59, 222, 124, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
}

.content-section .game-categories h3 .fas,
.content-section .game-categories h3 .fab,
.content-section .game-categories h3 .fa,
.content-section .game-categories h3 .far,
.content-section .game-categories h3 svg.svg-inline--fa {
    margin-right: 15px;
    color: #ff8400;
}

.content-section .getting-started h3 .fas,
.content-section .getting-started h3 .fab,
.content-section .getting-started h3 .fa,
.content-section .getting-started h3 .far,
.content-section .getting-started h3 svg.svg-inline--fa,
.content-section .limited-offers h3 .fas,
.content-section .limited-offers h3 .fab,
.content-section .limited-offers h3 .fa,
.content-section .limited-offers h3 .far,
.content-section .limited-offers h3 svg.svg-inline--fa {
    margin-right: 15px;
    color: #ff8400;
}

.content-section .security-notice .fas,
.content-section .security-notice .fab,
.content-section .security-notice .fa,
.content-section .security-notice .far,
.content-section .security-notice svg.svg-inline--fa {
    margin-right: 15px;
    color: #3bde7c;
}

.content-section .btn-action .fas,
.content-section .btn-action .fab,
.content-section .btn-action .fa,
.content-section .btn-action .far,
.content-section .btn-action svg.svg-inline--fa {
    margin-right: 12px;
}

/* Footer Styles */
.site-footer {
    background-color: #0d0e1b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
    margin-top: 3rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0.7;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #a8a8b3;
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

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

.footer-links-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 0.8rem;
}

.footer-links-column ul li a {
    color: #a8a8b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

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

.footer-links-column ul li a i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-middle {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.payment-methods {
    flex: 1;
    min-width: 250px;
}

.payment-methods h4, 
.responsible-gaming h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-icons span {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #a8a8b3;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.payment-icons span:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.payment-icons span i {
    margin-right: 8px;
    color: var(--accent-color);
    font-size: 1rem;
}

.responsible-gaming {
    flex: 1;
    min-width: 250px;
}

.responsible-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.responsible-icons img {
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.responsible-icons img:hover {
    transform: scale(1.05);
}

.responsible-gaming p {
    color: #a8a8b3;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 500px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
    text-align: right;
}

.copyright p {
    color: #a8a8b3;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Responsive footer */
@media (max-width: 992px) {
    .footer-top, 
    .footer-middle,
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-links-column {
        flex: 1 0 40%;
    }
    
    .copyright {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-links-column {
        flex: 1 0 100%;
    }
    
    .payment-icons,
    .responsible-icons {
        justify-content: center;
    }
    
    .responsible-gaming p {
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo p {
        max-width: 100%;
    }
}

/* Promotions Page Styles */
.hero-section {
    background: linear-gradient(135deg, #002266 0%, #000033 100%);
    padding: 60px 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}


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

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(90deg, #ffdd00, #ff7700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promotions-grid-section,
.vip-program-section,
.limited-offers-section,
.daily-offers-section,
.tournaments-section,
.referral-section,
.app-promo-section,
.bonus-terms-section {
    margin-bottom: 50px;
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f8f8f8;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffdd00, #ff7700);
    border-radius: 3px;
}

.section-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

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

.promotion-card {
    background: linear-gradient(145deg, #131b2e, #0a0f1a);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffdd00, #ff7700);
}

.promo-icon {
    background: linear-gradient(135deg, #ffdd00, #ff7700);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.promo-icon i {
    font-size: 24px;
    color: #000;
}

.promotion-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

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

.promo-tag {
    display: inline-block;
    background: rgba(255, 120, 0, 0.15);
    color: #ff7700;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 120, 0, 0.3);
}

.promo-details p {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 1rem;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-features li {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.promo-features li i {
    color: #00cc66;
    margin-right: 8px;
    font-size: 0.9rem;
}

.bonus-code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: #fff;
    font-weight: 700;
}

.btn-promo {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    background: linear-gradient(90deg, #ffdd00, #ff7700);
    color: #000;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 120, 0, 0.3);
}

.btn-promo:hover {
    background: linear-gradient(90deg, #ff7700, #ffdd00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 120, 0, 0.4);
}

.btn-promo-animated {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    background: linear-gradient(90deg, #f00, #f50, #f90, #fc0);
    background-size: 300% 100%;
    color: #000;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.4s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 120, 0, 0.3);
    animation: gradient-slide 3s infinite;
}

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

.btn-promo-animated:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 120, 0, 0.4);
}

.btn-promo-sm {
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    background: rgba(255, 120, 0, 0.2);
    color: #ff7700;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 120, 0, 0.3);
    cursor: pointer;
}

.btn-promo-sm:hover {
    background: rgba(255, 120, 0, 0.3);
    color: #ffaa55;
    border-color: rgba(255, 120, 0, 0.5);
}

/* VIP Program Styles */
.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vip-level {
    background: linear-gradient(145deg, #131b2e, #0a0f1a);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.vip-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vip-icon i {
    font-size: 30px;
}

.vip-icon.bronze {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
}

.vip-icon.silver {
    background: linear-gradient(135deg, #c0c0c0, #a9a9a9);
}

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

.vip-icon.platinum {
    background: linear-gradient(135deg, #e5e4e2, #bcc6cc);
}

.vip-icon.diamond {
    background: linear-gradient(135deg, #b9f2ff, #64d8ff);
}

.vip-level h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.vip-cashback {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffdd00;
    margin-bottom: 15px;
}

.vip-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.vip-features li {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.vip-features li i {
    color: #00cc66;
    margin-right: 8px;
    font-size: 0.8rem;
}

.vip-cta {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.vip-cta p {
    color: #ddd;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Limited Offers Styles */
.limited-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.limited-offer {
    background: linear-gradient(145deg, #131b2e, #0a0f1a);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 0, 0, 0.2);
    overflow: hidden;
}
@keyframes sparkle {
    0% { transform: translateX(0) translateY(0) rotate(0); }
    100% { transform: translateX(-50px) translateY(-50px) rotate(360deg); }
}

.limited-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ff0000, #ff6600);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 0 12px 0 12px;
    z-index: 1;
}

.limited-offer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.limited-offer p {
    color: #ddd;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Daily Offers Styles */
.daily-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.daily-offer {
    background: linear-gradient(145deg, #131b2e, #0a0f1a);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.day-badge {
    background: linear-gradient(135deg, #0066ff, #0033cc);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.daily-offer h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.daily-offer p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Tournament Styles */
.tournaments {
	display: flex;
    gap: 30px;
}

@media screen and (max-width: 1024px) {
	.tournaments {
		flex-direction: column;
	}
}

.tournament {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    background: linear-gradient(145deg, #131b2e, #0a0f1a);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tournament-image {
    position: relative;
    height: 100%;
    min-height: 250px;
}

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

.prize-pool {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: linear-gradient(90deg, #ff0000, #ff6600);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.tournament-details {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    padding: 25px;
}

.tournament-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.tournament-details p {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 1rem;
}

.tournament-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.tournament-info li {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.tournament-info li i {
    color: #ffdd00;
    margin-right: 10px;
}

/* Referral Section Styles */
.referral-section {
    background: linear-gradient(145deg, #131b2e, #0a0f1a);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.referral-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.referral-content p {
    color: #ddd;
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.referral-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.referral-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffdd00, #ff7700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.referral-step p {
    color: #ddd;
    margin-bottom: 0;
    font-size: 1rem;
}

/* App Promo Styles */
.app-promo-section {
    background: linear-gradient(145deg, #131b2e, #0a0f1a);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-promo-content {
    display: flex;
		justify-content: center;
		text-align: center;
    gap: A30px;
    align-items: center;
}

.app-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.app-info p {
    color: #ddd;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.app-features li {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.app-features li i {
    color: #00cc66;
    margin-right: 10px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.btn-app {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-app:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-app i {
    margin-right: 8px;
}

.app-qr {
    text-align: center;
}

.app-qr img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border: 5px solid #fff;
    border-radius: 10px;
}

.app-qr p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Bonus Terms Styles */
.bonus-terms-section {
    background: linear-gradient(145deg, #131b2e, #0a0f1a);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-terms p {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-list li {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.terms-link {
    display: inline-block;
    color: #ffdd00;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #ff7700;
    text-decoration: underline;
}

.terms-link i {
    margin-left: 5px;
    font-size: 0.85rem;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #002266 0%, #000033 100%);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

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

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    color: #ddd;
    margin-bottom: 30px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-orange {
    background: linear-gradient(90deg, #ffdd00, #ff7700);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 120, 0, 0.3);
}

.btn-orange:hover {
    background: linear-gradient(90deg, #ff7700, #ffdd00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 120, 0, 0.4);
}

.btn-blue {
    background: linear-gradient(90deg, #0066ff, #0033cc);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-blue:hover {
    background: linear-gradient(90deg, #0033cc, #0066ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.btn-green {
    background: linear-gradient(90deg, #00cc66, #009933);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 204, 102, 0.3);
}

.btn-green:hover {
    background: linear-gradient(90deg, #009933, #00cc66);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 204, 102, 0.4);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tournament {
        grid-template-columns: 1fr;
    }
    
    .tournament-image {
        min-height: 200px;
    }
    
    .referral-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .app-qr {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .promotion-card {
        padding: 20px;
    }
    
    .vip-levels {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-action {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .limited-offers {
        grid-template-columns: 1fr;
    }
    
    .daily-offers {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-app {
        width: 100%;
    }
}

/* Games Page Styles */
.game-hero-section {
    background: linear-gradient(135deg, #2a0845 0%, #6441a5 100%);
    border-radius: 12px;
    padding: 40px 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ff914d;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 800px;
}

.search-game {
    position: relative;
    margin-bottom: 30px;
    max-width: 500px;
}

.search-game input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-game input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 145, 77, 0.3);
}

.search-game input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-game button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 45px;
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-game button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(252, 70, 107, 0.5);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-action i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(135deg, #ff914d 0%, #fc466b 100%);
    color: #fff;
}

.btn-tertiary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

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

.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.game-categories-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.category-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 5px;
}

.category-tab {
    padding: 10px 20px;
    background: rgba(35, 30, 65, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-tab.active {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    color: #fff;
    border-color: transparent;
}

.category-tab:hover:not(.active) {
    background: rgba(35, 30, 65, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

.category-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-sort label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.category-sort select {
    padding: 8px 15px;
    background: rgba(35, 30, 65, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.category-sort select:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.featured-games-section {
    margin-bottom: 40px;
}


.view-all {
    color: #ff914d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.view-all i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-all:hover {
    color: #fc466b;
}

.view-all:hover i {
    transform: translateX(3px);
}

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

.featured-game {
    background: rgba(35, 30, 65, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-game:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.featured-game .game-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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


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

.btn-play, .btn-demo {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-play {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    color: #fff;
}

.btn-demo {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-play:hover, .btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.featured-game h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 15px 15px 5px;
}

.featured-game p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0 15px 15px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    background: rgba(35, 30, 65, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    border-color: transparent;
}

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

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fc466b;
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

.top-slots-section, .live-casino-section {
    margin-bottom: 40px;
}

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

.game-card {
    background: rgba(35, 30, 65, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.game-card .game-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

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

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

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


.game-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 5px;
}

.game-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0 0 15px;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.game-stats span {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.game-stats span i {
    margin-right: 5px;
    color: #ff914d;
}

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

.btn-show-more {
    padding: 10px 25px;
    background: rgba(35, 30, 65, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-show-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-show-more:hover {
    background: rgba(35, 30, 65, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-show-more:hover i {
    transform: translateY(3px);
}

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

.jackpot-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.jackpot-counter {
    background: linear-gradient(135deg, rgba(35, 30, 65, 0.8) 0%, rgba(50, 40, 90, 0.8) 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.jackpot-info {
    position: relative;
    z-index: 1;
}

.jackpot-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 5px;
}

.jackpot-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

.jackpot-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fc466b;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

.jackpot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    animation: pulse 2s infinite;
}

.jackpot-games {
    grid-template-columns: repeat(3, 1fr);
}

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

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

.tournament-item {
    background: rgba(35, 30, 65, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tournament-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tournament-banner {
    height: 180px;
    position: relative;
    overflow: hidden;
}

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

.tournament-item:hover .tournament-banner img {
    transform: scale(1.1);
}

.tournament-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.tournament-badge.live {
    background: linear-gradient(135deg, #ff914d 0%, #fc466b 100%);
}

.tournament-content {
    padding: 20px;
}

.tournament-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 10px;
}

.tournament-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0 0 20px;
}

.detail {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.detail-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.countdown {
    color: #ff914d;
}

.btn-join-tournament {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

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

.provider {
    background: rgba(35, 30, 65, 0.4);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(35, 30, 65, 0.6);
}

.provider img {
    width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}

.provider:hover img {
    filter: grayscale(0%);
}

.cta-section {
    background: linear-gradient(135deg, #2a0845 0%, #6441a5 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

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

.cta-content h2 {
    font-size: 2rem;
    color: #fff;
    margin: 0 0 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0 0 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-primary {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Styles for Games Page */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .featured-games-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jackpot-counters {
        grid-template-columns: 1fr;
    }
    
    .jackpot-games {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .game-hero-section {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
    }
    
    .featured-games-slider {
        grid-template-columns: 1fr;
    }
    
    .tournaments-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .category-tabs {
        width: 100%;
        justify-content: flex-start;
    }
    
    .category-sort {
        width: 100%;
        justify-content: flex-start;
    }

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    background: linear-gradient(90deg, #fff 0%, #64ffda 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.blog-hero h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
}

.hero-text {
    color: #a8b2d1;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
}

@media screen and (max-width: 768px) {
    .search-bar {
        flex-direction: column;
    }
}

.search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-bar button {
    background: linear-gradient(90deg, #F94567 0%, #FF7B51 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(249, 69, 103, 0.3);
}

/* Winner Stories Section */
.featured-winners {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F94567 0%, #FF7B51 100%);
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    color: #a8b2d1;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.winner-story-card {
    display: flex;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.7) 0%, rgba(17, 34, 64, 0.7) 100%);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.winner-story-card.featured {
    border: 2px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.winner-image {
    width: 280px;
    position: relative;
}

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

.win-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(90deg, #F94567 0%, #FF7B51 100%);
    padding: 8px 15px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(249, 69, 103, 0.3);
}

.win-badge span {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.win-badge small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.winner-details {
    flex: 1;
    padding: 25px;
}

.winner-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.meta-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-info span {
    color: #a8b2d1;
    font-size: 0.95rem;
}

.meta-info i {
    color: #64ffda;
    margin-right: 5px;
}

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

.testimonial p {
    color: #ccd6f6;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.quote-mark {
    position: absolute;
    bottom: 10px;
    right: 15px;
}

.quote-mark i {
    color: rgba(100, 255, 218, 0.2);
    font-size: 1.5rem;
}

.payout-proof {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.proof-label {
    background: rgba(100, 255, 218, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    color: #64ffda;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.payment-method, .payout-time {
    color: #a8b2d1;
    font-size: 0.95rem;
}

.btn-play, .btn-read {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-play {
    background: linear-gradient(90deg, #F94567 0%, #FF7B51 100%);
    color: #fff;
}

.btn-read {
    background: transparent;
    border: 2px solid #64ffda;
    color: #64ffda;
}

.btn-play:hover, .btn-read:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Winning Strategies Section */
.winning-strategies {
    margin-bottom: 50px;
}

.strategies-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.strategy-card {
    display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.6) 0%, rgba(17, 34, 64, 0.6) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.strategy-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(90deg, #F94567 0%, #FF7B51 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(249, 69, 103, 0.2);
}

.strategy-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.strategy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.strategy-card p {
    color: #a8b2d1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: #64ffda;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #fff;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Community Section */
.community-wrapper {
    display: flex;
		align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.7) 0%, rgba(17, 34, 64, 0.7) 100%);
    border-radius: 15px;
    overflow: hidden;
}

.community-content {
    flex: 1;
    padding: 40px;
}

.community-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.community-content p {
    color: #a8b2d1;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.benefits-list li {
    padding: 8px 0;
    color: #ccd6f6;
}

.benefits-list li i {
    color: #64ffda;
    margin-right: 10px;
}

.community-image {
    width: 40%;
}

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

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

/* Payment Proof Section */
.payment-proof {
    margin-bottom: 50px;
}

.proof-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.proof-card {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.5) 0%, rgba(17, 34, 64, 0.5) 100%);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.proof-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.proof-date {
    color: #a8b2d1;
    font-size: 0.9rem;
}

.proof-amount {
    color: #64ffda;
    font-weight: 700;
    font-size: 1.1rem;
}

.proof-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.proof-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.proof-info span {
    color: #a8b2d1;
    font-size: 0.9rem;
}

.proof-info i {
    color: #64ffda;
    margin-right: 8px;
}

.proof-status {
    align-self: center;
}

.proof-status.verified {
    color: #64ffda;
    font-weight: 500;
    font-size: 0.9rem;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.5) 0%, rgba(17, 34, 64, 0.5) 100%);
    border-radius: 15px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 5px;
}

.stat-label {
    color: #a8b2d1;
    font-size: 0.95rem;
}

/* Jackpot Winners Section */
.jackpot-winners {
    margin-bottom: 50px;
}

.jackpot-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.jackpot-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.6) 0%, rgba(17, 34, 64, 0.6) 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jackpot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.jackpot-game {
    position: relative;
}

.jackpot-game img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.jackpot-amount {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(249, 69, 103, 0.9) 0%, rgba(255, 123, 81, 0.9) 100%);
    color: #fff;
    padding: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.winner-info {
    padding: 20px;
    text-align: center;
}

.winner-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.winner-info p {
    color: #a8b2d1;
    margin-bottom: 5px;
}

.winner-info .date {
    display: block;
    color: #64ffda;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #64ffda;
    color: #64ffda;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

.play-jackpots {
    text-align: center;
}

.btn-large {
    background: linear-gradient(90deg, #F94567 0%, #FF7B51 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(249, 69, 103, 0.2);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 69, 103, 0.3);
}

/* CTA Section */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.75);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.cta-content p {
    color: #ccd6f6;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-cta {
    background: linear-gradient(90deg, #F94567 0%, #FF7B51 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(249, 69, 103, 0.2);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 69, 103, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .blog-hero {
        padding: 40px 30px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero h2 {
        font-size: 1.4rem;
    }
    
    .winner-story-card {
        flex-direction: column;
    }
    
    .winner-image {
        width: 100%;
        height: 200px;
    }
    
    .community-wrapper {
        flex-direction: column;
    }
    
    .community-image {
        width: 100%;
        height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .blog-hero h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta, .btn-outline-light {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Стили для кнопок Submit Your Win & Get Bonus и Read More Winning Stories */
.btn-action {
    display: flex;
		justify-content: center;
		align-items: center;
    padding: 14px 28px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
		margin: 0 auto;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-orange {
    background: linear-gradient(to right, #ff6b6b, #ff8e53);
}

.btn-orange:hover {
    background: linear-gradient(to right, #ff5252, #ff7043);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 107, 107, 0.3);
}

.btn-blue {
    background: linear-gradient(to right, #4a6cf7, #6a8eff);
}

.btn-blue:hover {
    background: linear-gradient(to right, #3959e3, #5678f7);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(74, 108, 247, 0.3);
}

/* Стили для community-icon */
.community-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6eaf0 100%);
    border-radius: 150px;
    margin-right: 5rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.community-icon i {
    font-size: 100px;
    color: #ffc107;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Стили для подсветки результатов поиска */
.highlight {
    background-color: rgba(255, 193, 7, 0.3);
    border-radius: 3px;
    padding: 0 2px;
    font-weight: bold;
}

/* Медиа-запрос для адаптивности на мобильных устройствах */
@media (max-width: 1024px) {
    .community-wrapper {
        flex-direction: column;
    }
    
    .community-icon {
        width: 200px;
        height: 200px;
				margin: 0 0 2rem 0;
    }
    
    .community-icon i {
        font-size: 100px;
    }
    
    .btn-action {
        display: block;
        margin-right: 0;
        width: 100%;
    }
}

/* Мобильный адаптив для сайдбара, game-list и тикера */
@media screen and (max-width: 768px) {
    /* Адаптив для сайдбара */
    .main-content {
        flex-direction: column;
    }
    
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        max-height: none;
        left: 0;
        overflow-x: auto;
        overflow-y: hidden;
        background: transparent;
        box-shadow: none;
        padding: 0.5rem 0;
        margin-bottom: 1rem;
        z-index: 20;
    }
    
    .search-box {
        display: none;
    }
    
    .sidebar-heading {
        display: none;
    }
    
    .categories-list {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 0 0.5rem;
        gap: 0.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        white-space: nowrap;
    }
    
    .categories-list::-webkit-scrollbar {
        display: none;
    }
    
    .categories-list li {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .categories-list li a {
        white-space: nowrap;
        padding: 0.5rem 0.75rem;
        border-radius: 1rem;
        background-color: rgba(0, 0, 0, 0.25);
        min-height: 0;
    }
    
    .category-icon {
        margin-right: 0.25rem;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
    }
    
    .category-count {
        display: none;
    }
    
    /* Адаптив для game-list */
    .game-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .game-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .game-list-item span:first-child {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        width: 100%;
        font-weight: 600;
    }
    
    .game-list-item span:last-child {
        font-size: 0.875rem;
        color: #a9b8d9;
        font-style: italic;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }
    
    /* Адаптив для тикера */
    .ticker-container {
        overflow: hidden;
        padding: 0.5rem 0;
    }
    
    .ticker {
        justify-content: flex-start;
        width: max-content;
        animation: ticker-scroll 20s linear infinite;
    }
    
    .exchange-rates {
        width: auto;
        flex-shrink: 0;
        margin-right: 1.5rem;
    }
    
    .winners-container {
        width: auto;
        flex-shrink: 0;
    }
    
    .winners {
        position: static;
        animation: none;
    }
    
    @keyframes ticker-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

@media screen and (max-width: 480px) {
    .game-list {
        grid-template-columns: 1fr;
    }
    
    .categories-list li a {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .category-icon {
        font-size: 0.8rem;
    }
}

/* Адаптив для feature-item */
@media screen and (max-width: 768px) {
    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .feature-item {
        width: 100%;
        min-height: auto;
        padding: 0.75rem;
        border-radius: 0.5rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }
    
    .feature-item i {
        min-width: 2rem;
        min-height: 2rem;
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
        margin-right: 0.5rem;
        margin-bottom: 0;
        font-size: 1rem;
        text-align: center;
        flex-shrink: 0;
    }
    
    .feature-item div {
        font-size: 0.85rem;
        line-height: 1.2;
        width: calc(100% - 2.5rem);
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .game-categories {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .game-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .game-list-item {
        width: 100%;
        min-height: auto;
        position: relative;
        padding: 0.75rem 0.75rem 0.75rem 1.25rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .game-list-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 5px;
        background: linear-gradient(to bottom, #4e1db0, #2cc4eb);
        opacity: 0.7;
    }
    
    .game-list-item span:first-child {
        width: 100%;
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .game-list-item span:last-child {
        width: 100%;
        font-size: 0.8rem;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 480px) {
    .feature-item i {
        min-width: 1.75rem;
        width: 1.75rem;
        height: 1.75rem;
        line-height: 1.75rem;
        font-size: 0.9rem;
    }
    
    .feature-item div {
        font-size: 0.8rem;
        width: calc(100% - 2.25rem);
    }
    
    .game-list-item span:first-child {
        font-size: 0.85rem;
    }
    
    .game-list-item span:last-child {
        font-size: 0.75rem;
    }
}


@media screen and (max-width: 768px) {
	h3 {
			font-size: 1.2rem !important;
	}
}

/* Contact footer hover effects */
.contact-footer .contact-phone a:hover,
.contact-footer .contact-chat a:hover {
    background-color: #3066f6;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(48, 102, 246, 0.5);
}

.contact-footer .contact-support:hover {
    background-color: #3066f6;
    transform: scale(1.05);
}

.contact-footer .contact-phone a,
.contact-footer .contact-chat a,
.contact-footer .contact-support {
    transition: all 0.3s ease;
}
