/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffc107; /* Yellow */
    --secondary-color: #ff9800; /* Orange */
    --accent-color: #4caf50; /* Green */
    --dark-color: #111111; /* Black */
    --light-color: #ffffff;
    --grey-color: #333333;
    --gradient-primary: linear-gradient(135deg, #ffc107, #ff9800);
    --gradient-secondary: linear-gradient(135deg, #ff9800, #ff5722);
    --gradient-accent: linear-gradient(135deg, #4caf50, #8bc34a);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

main {
	overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin: 20px 0;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin: 30px 0 20px;
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    text-align: center;
}

.btn i {
    margin-right: 8px;
}

.login-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.login-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.signup-btn {
    background: var(--gradient-primary);
    color: var(--dark-color);
}

.signup-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-color);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--light-color);
}

.btn-tertiary {
    background: var(--gradient-accent);
    color: var(--dark-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--dark-color);
    font-size: 1.1rem;
    padding: 15px 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Ticker Styles */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    padding: 8px 0;
    position: fixed;
    top: 0;
    z-index: 100;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 20px;
    color: var(--dark-color);
    font-weight: 600;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Header Styles */
header {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 35px;
    width: 100%;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin: 0 10px;
}

.main-nav ul li a {
    color: var(--light-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li.active a {
    color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Main Content Styles */
main {
    padding-top: 130px;
    padding-bottom: 50px;
    margin-left: 270px; /* sidebar width (250px) + margin (20px) */
}

.main-container {
    max-width: 1200px; /* Adjusted to account for sidebar */
    margin: 0 auto;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    left: 0;
    top: 130px; /* header (75px) + ticker (35px) */
    width: 250px;
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 20px;
    overflow-y: auto;
    height: calc(100vh - 130px); /* По умолчанию */
    border: 1px solid rgba(255, 193, 7, 0.2);
    margin-left: 20px;
    z-index: 90;
    transition: height 0.3s ease;
}

/* Добавляем класс, который будет применяться с помощью JavaScript */
.sidebar-with-footer-visible {
    height: calc(100vh - 350px); /* Уменьшаем высоту, когда футер видимый */
}

.search-box {
    display: flex;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    outline: none;
}

.search-box button {
    background-color: var(--primary-color);
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 10px 15px;
    cursor: pointer;
    color: var(--dark-color);
}

.categories h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.categories ul li a {
    display: flex;
    align-items: center;
		justify-content: space-between;
    padding: 12px 10px;
    color: var(--light-color);
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.categories ul li a:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
}

.categories ul li a i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.categories ul li a .count {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50px;
    padding: 3px 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Content Styles */
.content {
    flex: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/bg.webp') no-repeat center center;
    background-size: cover;
    border-radius: 15px;
    padding: 70px 30px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.25), rgba(255, 152, 0, 0.25), rgba(76, 175, 80, 0.2));
    z-index: 1;
    animation: heroGradient 10s infinite alternate;
}

@keyframes heroGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    backdrop-filter: blur(3px);
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/1.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.25), rgba(255, 152, 0, 0.25), rgba(76, 175, 80, 0.2));
    z-index: 1;
    animation: heroGradient 10s infinite alternate;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 15px;
    backdrop-filter: blur(3px);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary-color);
    animation: titleShine 3s infinite alternate;
    letter-spacing: 1px;
}

@keyframes titleShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.hero h2 {
    font-size: 1.9rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    position: relative;
    display: inline-block;
}

.hero h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.hero p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

/* Game Categories Section */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-card {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.category-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature p {
    font-size: 0.95rem;
}

/* Get Started Section */
.get-started {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 30px 0;
}

.step {
    width: 200px;
    text-align: center;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    top: 30px;
    right: -20px;
    font-size: 24px;
    color: var(--primary-color);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Footer Styles */
footer {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    position: relative;
    z-index: 98;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.btn-float {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 3s infinite ease-in-out;
}

.signup-float {
    background: var(--gradient-primary);
    color: var(--dark-color);
}

.bonus-float {
    background: var(--gradient-accent);
    color: var(--dark-color);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Game Grid Styles */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.game-card {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
}

.game-image {
    height: 160px;
    background: linear-gradient(45deg, #333, #222);
    position: relative;
    overflow: hidden;
}

.game-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-play, .btn-demo {
    padding: 8px 12px;
    font-size: 0.8rem;
}

.btn-play {
    background: var(--gradient-primary);
    color: var(--dark-color);
}

.btn-demo {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.game-provider {
    font-size: 0.75rem;
    opacity: 0.7;
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.section-header {
    display: flex;
		flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.section-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.section-desc {
    text-align: center;
    margin-bottom: 20px;
}

.game-intro {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.game-section {
    margin-bottom: 50px;
}

/* Live Casino Preview */
.live-casino-preview {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px 30px;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.live-casino-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
    z-index: 1;
}

.live-casino-content {
    position: relative;
    z-index: 2;
}

.live-games-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0 30px;
}

.live-games-list li {
    background-color: rgba(34, 34, 34, 0.8);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-games-list li i {
    color: var(--accent-color);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
		display: flex;
		flex-direction: column;
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
}

.feature-item .feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 30px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.cta-section h2 {
	margin-top: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Filters Section */
.filters {
    margin-top: 30px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    color: var(--light-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    cursor: pointer;
}

.filter-options input {
    cursor: pointer;
}

/* Blog Styles */
.blog-intro {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.featured-story {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.story-image {
    height: 200px;
    background: linear-gradient(45deg, #333, #222);
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-content h2 {
	margin-top: 0;
}

.story-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

.story-meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
}

.blog-image {
    height: 160px;
    background: linear-gradient(45deg, #333, #222);
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: var(--dark-color);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-start;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.blog-meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    align-self: flex-start;
}

.read-more i {
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 5px;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 5px;
    color: var(--light-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

/* Promotions Page Styles */
.promo-intro {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.promo-categories {
    margin-bottom: 30px;
}

.promo-categories ul li a {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    color: var(--light-color);
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.promo-categories ul li a:hover,
.promo-categories ul li a.active {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
}

.promo-categories ul li a i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.promotion-info {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.promotion-info h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 12px;
    padding-top: 3px;
}

.info-card p {
    font-size: 0.85rem;
    margin: 0;
}

.promo-section {
    margin-bottom: 50px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title i {
    margin-right: 12px;
    color: var(--primary-color);
}

.promo-card {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.2);
    padding: 25px;
    margin-bottom: 30px;
}

.promo-card.featured {
    display: flex;
    background: linear-gradient(to right, rgba(34, 34, 34, 0.95), rgba(34, 34, 34, 0.8));
    padding: 0;
}

.promo-content {
    padding: 30px;
    flex: 1;
}

.promo-image {
    width: 300px;
    background: linear-gradient(45deg, #333, #222);
}

.promo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.welcome-image {
    position: relative;
}

.promo-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.promo-features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.2rem;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.promo-card .promo-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.promo-card h3 {
    margin-bottom: 15px;
    text-align: center;
}

.promo-card p {
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: center;
}

.promo-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.promo-meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.promo-card.special {
    border: 1px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.promo-card.special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.05), rgba(139, 195, 74, 0.05));
    z-index: 0;
}

.promo-card.special .promo-icon,
.promo-card.special h3,
.promo-card.special p,
.promo-card.special .promo-tag,
.promo-card.special .btn {
    position: relative;
    z-index: 1;
}

.vip-card {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/vip.avif') no-repeat center center;
    background-size: cover;
    border: none;
    position: relative;
    padding: 40px 30px;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    z-index: 0;
}

.vip-card .promo-content {
    position: relative;
    z-index: 1;
    padding: 0;
}

.vip-card .promo-content h2, .referral-card .promo-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
	.vip-card .promo-content h2, .referral-card .promo-content h2 {
		font-size: 2rem;
	}
}

.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    padding-top: 5px;
}

.benefit-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1rem;
}

.benefit-info p {
    margin: 0;
    font-size: 0.85rem;
    text-align: left;
}

.referral-card {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg') no-repeat center center;
    background-size: cover;
    border: none;
    position: relative;
    padding: 40px 30px;
}

.referral-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    z-index: 0;
}

.referral-card .promo-content {
    position: relative;
    z-index: 1;
    padding: 0;
}

.referral-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.referral-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    min-width: 200px;
}

.referral-item h4 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.referral-item ul {
    list-style: none;
    padding: 0;
}

.referral-item ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.referral-item ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.promo-calendar {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.pagination .next {
    width: auto;
    padding: 0 15px;
}

/* Newsletter */
.newsletter {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 20px auto 0;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    outline: none;
}

/* Live Casino Styles */
.live-intro {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.live-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/2.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
    padding: 70px 30px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.live-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 152, 0, 0.25), rgba(76, 175, 80, 0.2), rgba(255, 193, 7, 0.25));
    z-index: 1;
    animation: heroGradient 10s infinite alternate;
}

.live-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.live-hero .hero-content {
    max-width: 850px;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.live-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.live-game-card {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
    height: 100%;
    position: relative;
}

.live-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
}

.game-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #f44336;
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(244, 67, 54, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

.status-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #f44336;
}

.live-game-card .game-image {
    height: 160px;
    background: linear-gradient(45deg, #333, #222);
    position: relative;
    overflow: hidden;
}

.btn-play, .btn-watch {
    padding: 8px 12px;
    font-size: 0.8rem;
}

.btn-play {
    background: var(--gradient-primary);
    color: var(--dark-color);
}

.btn-watch {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.dealer-info {
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.dealer-name {
    font-weight: 600;
    color: var(--primary-color);
}

.live-dealers-online {
    margin-top: 30px;
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.2);
    margin-bottom: 30px;
}

.online-count {
    margin: 20px 0;
}

.count-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.count-text {
    font-size: 0.9rem;
    margin-top: 5px;
}

.live-winners {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.winners-list {
    margin-top: 20px;
}

.winner-item {
    padding: 12px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.winner-game {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.winner-amount {
    font-weight: 700;
    font-size: 1.1rem;
}

.winner-name {
    font-size: 0.8rem;
    opacity: 0.7;
}

.live-game-category {
    margin-bottom: 40px;
    padding-top: 20px;
}

.game-list {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.2);
    margin-top: 20px;
}

.game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-item:last-child {
    border-bottom: none;
}

.game-name {
    font-weight: 500;
}

.live-tournaments {
    margin: 50px 0;
}

.tournament-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tournament-card {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.2);
    padding: 0;
}

.tournament-header {
    background: var(--gradient-primary);
    padding: 15px 20px;
    color: var(--dark-color);
}

.tournament-header h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.prize-pool {
    font-size: 0.9rem;
    font-weight: 700;
}

.tournament-details {
    padding: 20px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.label {
    color: var(--primary-color);
    font-weight: 600;
}

.tournament-card .btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

.live-bonus {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/4.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.live-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
    z-index: 1;
}

.bonus-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.bonus-code {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--dark-color);
    border: 2px dashed var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin: 25px 0;
}

.blog-categories {
    margin-bottom: 30px;
}

.blog-categories h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.blog-categories ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-categories ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-categories ul li a:hover {
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateX(5px);
}

.blog-categories ul li a i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.blog-categories ul li a span {
    color: var(--light-color);
}

.blog-categories ul li a .count {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50px;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.popular-posts h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-post {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.mini-post:hover {
    background-color: rgba(255, 193, 7, 0.1);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.post-meta .date {
    color: var(--primary-color);
}

.mini-post h4 {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 500;
}

/* Sportsbook Styles */
.sport-section {
    margin-bottom: 40px;
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.match-card {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.4);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tournament {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.match-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.team {
    flex: 1;
    text-align: center;
}

.team-name {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.vs {
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0 10px;
}

.odds {
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--primary-color);
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    min-width: 50px;
    font-size: 1.1rem;
}

.match-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bet-options {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-betting-section {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.mobile-betting-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.mobile-betting-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
    transform: perspective(800px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.mobile-betting-image img:hover {
    transform: perspective(800px) rotateY(0deg);
}

.mobile-betting-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mobile-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(255, 193, 7, 0.15);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-feature h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.mobile-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-betting-features .btn {
    align-self: flex-start;
    margin-top: 15px;
}

.why-bet-section {
    margin-top: 40px;
}

.why-bet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.why-bet-item {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.why-bet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
}

.why-bet-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-bet-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.why-bet-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .mobile-betting-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mobile-betting-image {
        margin-bottom: 20px;
    }
		.promo-card.featured {
			flex-direction: column;
		}
		.section-title {
			flex-direction: column;
		}
		.promo-features {
			flex-wrap: wrap;
			justify-content: center;
		}
		.promo-image.welcome-image {
			width: 100%;
			height: 100%;
		}
		.live-hero {
			padding: 10px;
		}
    .hero-content h1 {
			font-size: 2rem;
		}
		.hero-content h2 {
			font-size: 1.5rem;
		}
    .mobile-betting-features .btn {
        align-self: center;
    }
		.page-banner {
			padding: 10px;
		}
		.banner-content h1 {
			font-size: 2rem;
		}
		.banner-content h2 {
			font-size: 1.5rem;
		}
		.newsletter-form {
			flex-direction: column;
		}
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .main-nav ul li {
        margin: 0 5px;
    }
}

@media (max-width: 992px) {
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        margin: 110px 20px 0;
        max-height: none;
    }
    
    main {
        margin-left: 0;
        padding-top: 20px;
    }
    
    .main-container {
        max-width: 1400px;
    }
    
    .categories ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        background-color: rgba(17, 17, 17, 0.95);
        z-index: 1000;
        padding: 20px;
        border-bottom: 2px solid var(--primary-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

		.hero {
			padding: 10px;
		}
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step::after {
        content: '↓';
        top: auto;
        right: auto;
        bottom: -25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .auth-buttons {
        display: none;
    }
    
    .category-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        right: 20px;
        bottom: 10px;
				width: fit-content;
    }
    
    .btn-float {
        width: 100%;
        text-align: center;
    }
} 

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccc00;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ffc107 #000000;
}

/* Mobile App Page Styles */
.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.4);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background-color: rgba(255, 193, 7, 0.15);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-security {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.mobile-security-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: center;
    margin-top: 25px;
}

.mobile-security-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
    transform: perspective(800px) rotateY(15deg);
    transition: transform 0.5s ease;
}

.mobile-security-image img:hover {
    transform: perspective(800px) rotateY(0deg);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateX(5px);
    background-color: rgba(255, 193, 7, 0.1);
}

.security-feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
}

.security-feature div {
    flex: 1;
}

.security-feature h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.security-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.install-section {
    margin: 40px 0;
}

.install-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.install-option {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.install-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.install-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.install-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.install-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
}

.install-steps {
    margin-left: 20px;
    margin-bottom: 25px;
}

.install-steps li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 5px;
}

.install-steps li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    font-weight: 600;
}

.install-option .btn {
    margin-top: 10px;
    width: 100%;
}

.qr-section {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.qr-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.qr-text h2 {
    text-align: left;
    margin-top: 0;
}

.qr-benefits {
    margin-top: 20px;
}

.qr-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-benefits li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.qr-image {
    text-align: center;
}

.qr-image img {
    border: 8px solid white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    max-width: 200px;
    margin-bottom: 15px;
}

.qr-image p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .mobile-security-content,
    .qr-content {
        grid-template-columns: 1fr;
    }
    
    .mobile-security-image,
    .qr-image {
        margin-bottom: 25px;
    }
    
    .qr-text h2 {
        text-align: center;
    }
    
    .install-options {
        grid-template-columns: 1fr;
    }
} 

/* Payment Page Styles */
.payment-method {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.4);
}

.payment-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-logo {
    width: 80px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 5px;
}

.payment-logo i {
	font-size: 2rem;
	color: var(--dark-color);
}
.payment-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.payment-details {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.payment-info {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.payment-description p {
    margin-bottom: 0;
}

.payment-description .btn {
    align-self: flex-start;
}

.verification-section {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.verification-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.verification-info p {
    margin-bottom: 25px;
}

.verification-benefits h3,
.verification-steps h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.verification-benefits ul {
    list-style: none;
    margin-bottom: 25px;
}

.verification-benefits ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.verification-benefits ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.verification-steps ol {
    margin-left: 20px;
    margin-bottom: 25px;
}

.verification-steps ol li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
}

.verification-cta {
    margin-top: 20px;
}

.verification-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.banking-tips {
    margin: 40px 0;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 193, 7, 0.4);
}

.tip-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background-color: rgba(255, 193, 7, 0.15);
    padding: 12px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-content h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.tip-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.payment-faq {
    margin: 40px 0;
}

.faq-list {
    margin-top: 25px;
}

.faq-item {
    background-color: rgba(34, 34, 34, 0.8);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 193, 7, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

@media (max-width: 992px) {
    .payment-details {
        grid-template-columns: 1fr;
    }
    
    .verification-content {
        grid-template-columns: 1fr;
    }
    
    .verification-image {
        order: -1;
    }
    
    .payment-description .btn {
        align-self: center;
    }
    
    .tips-list {
        grid-template-columns: 1fr;
    }
} 

/* Win Notification */
.win-notification {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background-color: rgba(34, 34, 34, 0.95);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.5s ease;
    border: 1px solid var(--primary-color);
    max-width: 300px;
}

.win-notification.active {
    bottom: 20px;
}

.win-icon {
    background-color: var(--primary-color);
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.win-details {
    flex: 1;
}

.winner-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 2px;
}

.win-game {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
}

.win-amount {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.close-notification {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 5px;
}

.close-notification:hover {
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .win-notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

