/* Global Styles */
:root {
    --primary-color: #0e1e3a;
    --secondary-color: #1a2a47;
    --accent-color: #f7b035;
    --accent-hover: #ffc457;
    --text-color: #ffffff;
    --text-secondary: #a0a9bc;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --gradient-primary: linear-gradient(135deg, #1a2a47 0%, #0e1e3a 100%);
    --gradient-accent: linear-gradient(135deg, #f7b035 0%, #ff9800 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.4);
    --border-radius: 5px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-color);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.currency-rates {
    display: flex;
    gap: 15px;
}

.currency-rates span {
    font-size: 14px;
    color: #fff;
}

.currency-rates i {
    color: var(--accent-color);
    margin-right: 5px;
}

.quick-links {
    display: flex;
    gap: 15px;
}

.quick-links a {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--border-radius);
}

.bonus-btn {
    background-color: rgba(247, 176, 53, 0.2);
    color: var(--accent-color);
}

.free-money-btn {
    background-color: rgba(76, 175, 80, 0.2);
    color: var(--success-color);
}

.vip-btn {
    background-color: rgba(255, 152, 0, 0.2);
    color: var(--warning-color);
}

.winner-ticker {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.winner-ticker i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 16px;
}

.winner-ticker .winner-text {
    font-size: 14px;
    font-weight: 700;
		color: #fff;
}

/* Main Header */
.main-header {
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
		padding: 15px 0;
}

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

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    gap: 10px;
}

.main-nav li a {
    padding: 10px 15px;
    font-weight: 500;
    position: relative;
}

.main-nav li.active a {
    color: var(--accent-color);
}

.main-nav li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
}

.main-nav li a:hover {
    color: var(--accent-color);
}

.game-providers {
    display: flex;
    align-items: center;
    gap: 15px;
}

.game-providers img {
    height: 25px;
    transition: all 0.3s ease;
}

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

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

.login-btn, .signup-btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

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

.signup-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.signup-btn:hover {
    background-color: var(--accent-hover);
}

/* Page Content */
.page-content {
    display: flex;
    min-height: calc(100vh - 200px);
    padding-top: 20px;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background-color: var(--secondary-color);
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 125px;
    height: 100vh;
		overflow-x: hidden;
    overflow-y: auto;
    z-index: 10;
}

.search-box {
    display: flex;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: transparent;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    width: 45px;
    background-color: var(--accent-color);
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.categories h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background-color: rgba(247, 176, 53, 0.15);
    color: var(--accent-color);
    transform: translateX(5px);
}

.sidebar-menu a.active {
    border-left: 3px solid var(--accent-color);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-menu a.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(247, 176, 53, 0.1), transparent);
    z-index: -1;
}

.sidebar-menu i {
    font-size: 18px;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.sidebar-menu a:hover i, .sidebar-menu a.active i {
    transform: scale(1.2);
}

.sidebar-menu .game-count {
    margin-left: auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 20px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease;
    flex-direction: row;
}

.slide.active {
    display: flex;
    opacity: 1;
}

.slide-content {
    width: 60%;
    padding: 40px;
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, rgba(14, 23, 37, 0.9) 0%, rgba(14, 23, 37, 0.8) 60%, rgba(14, 23, 37, 0) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 12px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide h1 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 90%;
}

.slide-image {
    width: 40%;
    position: relative;
    display: none; /* Hide since we're using background images */
}

.slide-image img {
    display: none; /* Hide since we're using background images */
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Slot Machines Section */
.slot-machines {
    margin-bottom: 40px;
}

.slot-machines h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 24px;
}

.slot-machines h2 i {
    color: var(--accent-color);
}


.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 15px;
    border: 2px solid transparent;
    background: linear-gradient(145deg, rgba(30, 48, 80, 0.9), rgba(20, 30, 48, 0.95));
    opacity: 1;
    transform: translateY(0);
    height: 280px;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f7b035, #ff9800, #f7b035, #ff9800);
    z-index: -1;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: 400% 400%;
    animation: gradientBorder 3s ease infinite;
}

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

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(247, 176, 53, 0.4);
    z-index: 5;
}

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

.game-provider {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent-color);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(247, 176, 53, 0.3);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
    filter: brightness(0.85) contrast(1.1);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    transform: translateY(70%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.game-overlay h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.game-overlay .play-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #ff9800);
    color: var(--primary-color);
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(247, 176, 53, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.game-overlay .play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

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

.game-card:hover .play-btn::before {
    left: 100%;
}

.game-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.6) contrast(1.2) blur(2px);
}

.game-card:hover .game-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.4) 100%);
}

.game-card:hover .game-overlay h3 {
    transform: translateY(-10px);
}

.game-card .game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.game-card .game-stat {
    font-size: 12px;
    color: var(--text-secondary);
}

.game-card .game-stat span {
    color: var(--accent-color);
    font-weight: 600;
}

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

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

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Top Games Section */
.top-games {
    margin-bottom: 40px;
}

.top-games h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

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

.game-item {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.game-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: rgba(26, 42, 71, 0.7);
}

.game-item i {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(247, 176, 53, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    margin-right: 15px;
}

.game-info {
    flex: 1;
}

.game-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.game-info p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 10px;
}

.play-now {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: var(--border-radius);
}

.play-now:hover {
    background-color: var(--accent-hover);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(247, 176, 53, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

.cta-btn {
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 60px 0 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links h3,
.footer-games h3,
.footer-payments h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-games h3::after,
.footer-payments h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-links ul,
.footer-games ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-games a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover,
.footer-games a:hover {
    color: var(--accent-color);
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.payment-icons i {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.footer-social a:hover {
    background-color: var(--accent-color);
}

.footer-social i {
    font-size: 16px;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.fixed-buttons a {
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.fixed-buttons a:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Live Chat */
.live-chat {
    position: fixed;
    bottom: 140px;
   	right: 20px;
    z-index: 100;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

.chat-time {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--success-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover, .mobile-menu-btn.active {
    color: #fff;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1000;
    padding: 20px;
    transition: all 0.4s ease;
    overflow-y: auto;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
}

.mobile-menu-close:hover {
    color: #fff;
    transform: rotate(90deg);
    background-color: rgba(247, 176, 53, 0.2);
}

.mobile-nav {
    margin-top: 30px;
}

.mobile-nav ul {
    flex-direction: column;
    padding-top: 20px;
    list-style: none;
    padding-left: 0;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav li a {
    display: block;
    padding: 15px 10px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-nav li a:hover, .mobile-nav li.active a {
    color: var(--accent-color);
    background-color: rgba(247, 176, 53, 0.1);
    padding-left: 15px;
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .slide h1 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .sidebar {
        top: 115px;
        height: calc(100vh - 115px);
    }
    
    .container {
        max-width: 100%;
    }
    
    .main-nav {
        display: none;
    }
    
    .game-providers {
        display: none;
    }
    
    .slide h1 {
        font-size: 28px;
    }
    
    .slide p {
        font-size: 16px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-header .container {
        padding: 10px 0;
        flex-wrap: wrap;
    }
    
    .auth-buttons {
        margin-right: 50px;
    }
    
    .mobile-menu-btn {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .currency-rates {
        margin-bottom: 10px;
    }
    
    .winner-ticker {
        margin-top: 10px;
    }
    
    .page-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .slide {
        flex-direction: column;
    }
    
    .slide-content {
        width: 100%;
    }
    
    .slide-image {
        display: none;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
    }
    
    .game-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 15px;
    }

    header {
        position: relative;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
    
    .auth-buttons {
        flex-direction: column;
    }
    
    .quick-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-section {
        padding: 20px;
    }
    
    .cta-section h2 {
        font-size: 22px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.hero-slider, .game-card, .feature-card {
    animation: fadeIn 0.5s ease-in-out;
}

.game-item {
    animation: slideUp 0.3s ease-in-out;
}

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

section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Page Styles */

/* Page Header */
.page-header {
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 42, 71, 0.7) 0%, rgba(14, 30, 58, 0.7) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.page-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Game Filters */
.game-filters, .blog-filters {
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.game-filter, .blog-filter {
    padding: 10px 15px;
    background-color: var(--secondary-color);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.game-filter.active, .blog-filter.active, 
.game-filter:hover, .blog-filter:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Game Category */
.game-category {
    margin-bottom: 40px;
}

.game-category h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.game-category h2 i {
    color: var(--accent-color);
}

/* Sports Betting */
.sports-betting {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .sports-betting {
        grid-template-columns: 1fr 1fr;
    }
}

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

.sports-feature {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.sports-feature i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.sports-feature h3 {
    margin-bottom: 10px;
}

.sports-feature p {
    color: var(--text-secondary);
    font-size: 14px;
}

.match-highlight {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
}

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

.match-header h3 {
    font-size: 18px;
}

.live-badge {
    background-color: #f44336;
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

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

.team {
    text-align: center;
}

.team-flag {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.team-flag i {
    font-size: 20px;
    color: var(--accent-color);
}

.match-score {
    display: flex;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
}

.match-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.odd {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
}

.odd-name {
    display: block;
    margin-bottom: 5px;
    color: var(--text-secondary);
    font-size: 12px;
}

.odd-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
}

.bet-now-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.bet-now-btn:hover {
    background-color: var(--accent-hover);
}

/* Try Free Section */
.try-free {
    margin-bottom: 40px;
}

.try-free-content {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.try-free-content i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.try-free-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.try-free-content p {
    margin-bottom: 20px;
}

.try-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Blog Posts */
.blog-posts {
    margin-bottom: 40px;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .blog-post {
        grid-template-columns: 300px 1fr;
    }
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
}

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

.blog-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    text-align: center;
}

.blog-date .day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.blog-content {
    padding: 20px;
}

.blog-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.blog-meta span {
    font-size: 12px;
    color: var(--text-secondary);
}

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

.blog-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.read-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: var(--accent-hover);
}

/* Top Games Section */
.top-games-section {
    margin-bottom: 40px;
}

.top-games-section h2 {
    margin-bottom: 20px;
}

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

.top-game-item {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.top-game-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.top-game-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(247, 176, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 16px;
}

.top-game-info {
    flex: 1;
}

.top-game-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.top-game-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Submit Story */
.submit-story {
    margin-bottom: 40px;
}

.submit-story-content {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.submit-story-content i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.submit-story-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.submit-story-content p {
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.submit-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Forum Styles */
.comparison-table {
    margin-bottom: 40px;
    overflow-x: auto;
}

.table-container {
    min-width: 100%;
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison th, .comparison td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison th {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    font-weight: 600;
}

.comparison td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison .highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.advantages {
    margin-bottom: 40px;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.advantage-card {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.advantage-card i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.cta-buttons.center {
    justify-content: center;
}

.forum-topics {
    margin-bottom: 40px;
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.topic {
    display: flex;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.topic:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.topic-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(247, 176, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.topic-icon i {
    color: var(--accent-color);
    font-size: 20px;
}

.topic-details {
    flex: 1;
}

.topic-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.topic-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.topic-meta span {
    font-size: 12px;
    color: var(--text-secondary);
}

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

.topic-details p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.view-topic {
    align-self: center;
    padding: 8px 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 15px;
}

.join-forum {
    margin-bottom: 40px;
}

.join-forum-content {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.join-forum-content i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.join-forum-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.join-forum-content p {
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.forum-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Payment Styles */
.payment-methods {
    margin-bottom: 40px;
}

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

.payment-card {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(247, 176, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.payment-icon i {
    color: var(--accent-color);
    font-size: 24px;
}

.payment-details {
    flex: 1;
}

.payment-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.payment-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.payment-info {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: var(--border-radius);
}

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

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

.info-item .label {
    font-size: 12px;
    color: var(--text-secondary);
}

.info-item .value {
    font-size: 12px;
    font-weight: 600;
}

.info-item .value.highlight {
    color: var(--accent-color);
}

.fast-facts {
    margin-bottom: 40px;
}

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

.fact-card {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(247, 176, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.fact-icon i {
    color: var(--accent-color);
    font-size: 24px;
}

.fact-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.fact-info p.highlight {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.fact-info p.subtext {
    font-size: 12px;
    color: var(--text-secondary);
}

.security {
    margin-bottom: 40px;
}

.security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .security-features {
        grid-template-columns: repeat(3, 1fr);
    }

}

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

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.security-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(247, 176, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.security-icon i {
    color: var(--accent-color);
    font-size: 24px;
}

.security-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.security-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.payment-cta {
    margin-bottom: 40px;
}

.payment-cta-content {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.payment-cta-content i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.payment-cta-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.payment-cta-content p {
    margin-bottom: 20px;
}

.payment-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Promotions Styles */
.welcome-bonus {
    margin-bottom: 40px;
}

.bonus-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
    transition: all 0.3s ease;
}

.bonus-card.featured {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .bonus-card.featured {
        grid-template-columns: 300px 1fr;
    }
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bonus-image {
    position: relative;
    height: 380px;
}

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

.bonus-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 5px;
}

.bonus-badge i {
    color: var(--primary-color);
}

.bonus-badge span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
}

.bonus-content {
    padding: 20px;
}

.bonus-content h2, .bonus-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.bonus-highlight {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.bonus-highlight .amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.bonus-highlight .type {
    font-size: 16px;
    color: var(--text-secondary);
}

.bonus-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.bonus-info {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bonus-info.mini {
    padding: 10px;
}

.claim-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.claim-btn:hover {
    background-color: var(--accent-hover);
}

.extra-bonus {
    display: flex;
    align-items: center;
    background-color: rgba(247, 176, 53, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.extra-bonus-badge {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.extra-bonus-badge i {
    color: var(--primary-color);
    font-size: 20px;
}

.extra-bonus-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.extra-bonus-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 0;
}

.recurring-offers {
    margin-bottom: 40px;
}

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

.bonus-card .bonus-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(247, 176, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.bonus-card .bonus-icon i {
    color: var(--accent-color);
    font-size: 24px;
}

.vip-program {
    margin-bottom: 40px;
}

.vip-content {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(14, 30, 58, 0.7) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.vip-header {
    margin-bottom: 20px;
}

.vip-header i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.vip-header h2 {
    font-size: 28px;
    color: var(--accent-color);
}

.vip-intro {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
}

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

.vip-benefit {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.vip-benefit:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.vip-benefit i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.vip-benefit h3 {
    margin-bottom: 10px;
}

.vip-benefit p {
    color: var(--text-secondary);
    font-size: 14px;
}

.vip-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.vip-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.seasonal-bonuses {
    margin-bottom: 40px;
}

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

.seasonal-card {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.seasonal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.seasonal-card.active {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(247, 176, 53, 0.2) 100%);
    border: 1px solid var(--accent-color);
}

.seasonal-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(247, 176, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.seasonal-icon i {
    color: var(--accent-color);
    font-size: 24px;
}

.seasonal-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.seasonal-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.seasonal-countdown {
    margin-top: 15px;
}

.seasonal-countdown span {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.countdown {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
}

.seasonal-tag {
    background-color: #4caf50;
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.promo-cta {
    margin-bottom: 40px;
}

.promo-cta-content {
    background: linear-gradient(135deg, rgba(247, 176, 53, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.promo-cta-content i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.promo-cta-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.promo-cta-content p {
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.promo-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
} 

@media (max-width: 768px) {
	.topic {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}
}

/* ====== ANIMATIONS AND DECORATIVE ELEMENTS ====== */
/* Floating elements */
.floating-element {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    filter: blur(1px);
    animation: float 10s infinite ease-in-out;
}

.floating-element.dice {
    color: var(--accent-color);
    font-size: 2.5rem;
    animation-duration: 15s;
}

.floating-element.card {
    color: #ffffff;
    font-size: 3rem;
    animation-duration: 12s;
    animation-delay: 2s;
}

.floating-element.chip {
    color: var(--accent-color);
    font-size: 2rem;
    animation-duration: 18s;
    animation-delay: 1s;
}

.floating-element.coin {
    color: #ffd700;
    font-size: 1.8rem;
    animation-duration: 20s;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
    75% {
        transform: translate(-15px, -10px) rotate(3deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Glowing effect for game cards */
.game-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-accent);
    z-index: -1;
    opacity: 0;
    border-radius: var(--border-radius);
    transition: opacity 0.5s ease;
    filter: blur(15px);
}

.game-card:hover::after {
    opacity: 0.6;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

/* Enhanced button hover effects */
.signup-btn:hover, .login-btn:hover, .play-btn:hover, .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    background-position: right center;
}

/* Subtle shine effect for feature cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.feature-card:hover::before {
    left: 150%;
}

/* Page transition effects */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.page-transition.active {
    transform: translateY(0);
}

/* Glitter effect for jackpot elements */
.glitter {
    position: relative;
    overflow: hidden;
}

.glitter::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0;
    animation: glitter 6s linear infinite;
    pointer-events: none;
}

@keyframes glitter {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
    10% {
        opacity: 0.2;
    }
    20% {
        opacity: 0;
    }
    30% {
        opacity: 0.2;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(360deg);
    }
}

/* 3D card flip effect */
.flip-card {
    perspective: 1000px;
    transform-style: preserve-3d;
}

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

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

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

.flip-card-back {
    transform: rotateY(180deg);
    background: var(--gradient-primary);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Neon text effect */
.neon-text {
    color: #fff;
    text-shadow: 0 0 5px #fff, 
                 0 0 10px #fff, 
                 0 0 15px #fff, 
                 0 0 20px var(--accent-color), 
                 0 0 35px var(--accent-color), 
                 0 0 40px var(--accent-color);
    animation: neon-flicker 3s infinite alternate;
}

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

/* Confetti overlay effect */
.confetti-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.confetti-overlay.active {
    opacity: 1;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    opacity: 0.8;
    animation: confetti-fall 5s ease-in infinite;
}

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