/* General Styles */
:root {
    --primary-color: #00a86b;
    --primary-light: #0fe593;
    --primary-dark: #00845b;
    --secondary-color: #ffc107;
    --secondary-light: #ffeb3b;
    --secondary-dark: #ffa000;
    --dark-bg: #0d1726;
    --darker-bg: #08101c;
    --light-bg: #1a2d4c;
    --lighter-bg: #243b5e;
    --light-text: #ffffff;
    --muted-text: rgba(255, 255, 255, 0.7);
    --accent: #ff4081;
    --accent-light: #ff80ab;
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #f44336;
    --info: #2196F3;
    --gradient-start: #0f2035;
    --gradient-end: #1a2d4c;
    --button-gradient: linear-gradient(45deg, #00c08b, #00a86b);
    --hover-gradient: linear-gradient(45deg, #00a86b, #009e63);
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    --border-radius: 10px;
    --border-radius-sm: 5px;
    --border-radius-lg: 15px;
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-container {
    display: flex;
    gap: 20px;
    padding-top: 20px;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.cta-section:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 168, 107, 0.3);
    transition: var(--transition-fast);
}

.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 168, 107, 0.4);
}


/* Ticker/Running Line */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, var(--dark-bg), var(--light-bg), var(--dark-bg));
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.ticker-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.ticker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.ticker-item {
    margin: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
}

.ticker-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.ticker-item i {
    margin-right: 8px;
    color: var(--secondary-color);
    font-size: 16px;
}

.ticker-item:nth-child(3n+1) i {
    color: var(--secondary-color);
}

.ticker-item:nth-child(3n+2) i {
    color: var(--primary-color);
}

.ticker-item:nth-child(3n+3) i {
    color: var(--accent);
}

.ticker a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.ticker a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.ticker a:hover {
    color: var(--primary-light);
}

.ticker a:hover:after {
    width: 100%;
}

.ticker a span {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--light-text);
    padding: 3px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition-fast);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.ticker a:hover span {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Winner ticker items specific styles */
.ticker-item:has(i.fa-trophy) {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-left: 2px solid var(--secondary-color);
    font-weight: 500;
}

.ticker-item:has(i.fa-trophy) i {
    color: gold;
    animation: pulse-trophy 2s infinite;
}

@keyframes pulse-trophy {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
    50% {
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Remove animation */
@keyframes ticker-move {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Added styles for ticker item animations */
@keyframes fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.ticker-item.fade-out {
    animation: fade-out 0.5s ease forwards;
}

.ticker-item.fade-in {
    animation: fade-in 0.5s ease forwards;
}

.ticker-item.winner-fade {
    transition: opacity 0.5s ease;
}

/* Header */
.main-header {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 100px;
    height: auto;
    transition: var(--transition-fast);
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.logo h1 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-fast);
}

.logo:hover h1 {
    text-shadow: 0 0 10px rgba(0, 168, 107, 0.5);
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
    position: relative;
}

.main-nav ul li a {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition-fast);
    position: relative;
}

.main-nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: var(--transition-fast);
}

.main-nav ul li a:hover:before {
    width: 100%;
}

.main-nav ul li a:hover {
    color: var(--primary-light);
}

.main-nav ul li.active a {
    color: var(--primary-color);
}

.main-nav ul li.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), transparent);
    border-radius: 3px;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition-fast);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
		visibility: hidden;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(25deg);
    transition: var(--transition-fast);
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
		visibility: visible;
}

.btn-login {
    color: var(--light-text);
    border: 1px solid var(--primary-color);
    background-color: rgba(0, 168, 107, 0.1);
}

.btn-login:hover {
    border-color: var(--primary-light);
    box-shadow: 0 6px 12px rgba(0, 168, 107, 0.2);
    transform: translateY(-3px);
}

.btn-register {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--light-text);
    border: none;
}

.btn-register:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 168, 107, 0.3);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--card-shadow);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition-medium);
    position: sticky;
    top: 120px;
    height: calc(100vh - 150px);
    overflow-y: auto;
}

.sidebar:hover {
    border-left: 3px solid var(--secondary-color);
    box-shadow: var(--hover-shadow);
}

.sidebar-category h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-category h3:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.sidebar-category ul li {
    margin-bottom: 10px;
}

.sidebar-category ul li a {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-category ul li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-category ul li a i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--secondary-color);
}

.sidebar-category ul li a span.count {
    margin-left: auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.sidebar-search {
    margin: 20px 0;
}

.sidebar-search form {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 14px;
}

.sidebar-search button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
}

.sidebar-promo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.promo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s ease;
}

.promo-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.promo-box i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.promo-box span {
    font-size: 12px;
}

/* Content Area */
.content {
    flex: 1;
}

/* Hero Section */
.hero-section {
    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: var(--border-radius);
    padding: 80px 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    animation: heroBackgroundAnimation 15s ease infinite alternate;
    box-shadow: var(--card-shadow);
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 168, 107, 0.2), transparent 60%);
    z-index: 1;
}

.hero-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(8, 16, 28, 0.8), transparent);
    z-index: 1;
}

@keyframes heroBackgroundAnimation {
    0% {
        background-color: var(--gradient-start);
    }
    50% {
        background-color: var(--darker-bg);
    }
    100% {
        background-color: var(--gradient-end);
    }
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-chip, 
.floating-card, 
.floating-coin {
    position: absolute;
    opacity: 0.2;
    filter: blur(1px);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.floating-chip {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    animation-name: float-chip;
    animation-duration: 12s;
}

.floating-card {
    width: 50px;
    height: 70px;
    border-radius: 5px;
    border: 2px solid var(--secondary-color);
    animation-name: float-card;
    animation-duration: 15s;
}

.floating-coin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    animation-name: float-coin;
    animation-duration: 10s;
}

@keyframes float-chip {
    0% { transform: translate(10vw, 20vh) rotate(0deg); }
    100% { transform: translate(15vw, 25vh) rotate(360deg); }
}

@keyframes float-card {
    0% { transform: translate(70vw, 10vh) rotate(10deg); }
    100% { transform: translate(75vw, 15vh) rotate(-10deg); }
}

@keyframes float-coin {
    0% { transform: translate(40vw, 70vh) rotate(0deg); }
    100% { transform: translate(45vw, 75vh) rotate(180deg); }
}

.welcome-button {
    margin-bottom: 25px;
    display: inline-block;
}

.welcome-bonus-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-light));
    color: #000;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    display: inline-block;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--secondary-dark);
}

.welcome-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.5);
}

.welcome-bonus-btn:after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0));
    transform: rotate(30deg) translate(-100%, 0);
    animation: shine-effect 4s infinite;
}

@keyframes shine-effect {
    to {
        transform: rotate(30deg) translate(100%, 0);
    }
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--light-text), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.8;
    color: var(--muted-text);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-play, .btn-register-alt {
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-play {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--light-text);
    box-shadow: 0 5px 15px rgba(0, 168, 107, 0.3);
    border-bottom: 3px solid var(--primary-dark);
}

.btn-play: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: var(--transition-fast);
    z-index: -1;
}

.btn-play:hover:before {
    left: 100%;
}

.btn-play:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 168, 107, 0.5);
}

.btn-register-alt {
    background-color: transparent;
    border: 2px solid var(--light-text);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.btn-register-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

/* Unique Highlight Blocks */
.highlights-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.highlight-block {
    background: linear-gradient(135deg, var(--dark-bg), var(--light-bg));
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.highlight-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-bottom-color: var(--primary-color);
}

.highlight-block:nth-child(2):hover {
    border-bottom-color: var(--secondary-color);
}

.highlight-block:nth-child(3):hover {
    border-bottom-color: var(--accent);
}

.highlight-block:nth-child(4):hover {
    border-bottom-color: var(--info);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    transition: var(--transition-medium);
}

.highlight-block:nth-child(2) .highlight-icon {
    color: var(--secondary-color);
}

.highlight-block:nth-child(3) .highlight-icon {
    color: var(--accent);
}

.highlight-block:nth-child(4) .highlight-icon {
    color: var(--info);
}

.highlight-block:hover .highlight-icon {
    transform: rotateY(360deg);
}

.highlight-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.highlight-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.highlight-block:nth-child(2) .highlight-title:after {
    background: var(--secondary-color);
}

.highlight-block:nth-child(3) .highlight-title:after {
    background: var(--accent);
}

.highlight-block:nth-child(4) .highlight-title:after {
    background: var(--info);
}

.highlight-block:hover .highlight-title:after {
    width: 80px;
}

.highlight-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-text);
}

.highlight-block:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition-medium);
}

.highlight-block:hover:before {
    opacity: 1;
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.section-header h2 {
    font-size: 24px;
}

.section-header h2 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Info Section */
.info-section {
    background-color: var(--dark-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.info-content {
    line-height: 1.8;
}

.info-content h3 {
    margin: 20px 0 10px;
    color: var(--secondary-color);
    font-size: 20px;
}

.info-content p {
    margin-bottom: 15px;
}

.feature-list {
    margin: 15px 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #000;
}

.btn-secondary:hover {
    background-color: #e6ac00;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 70px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.main-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent), var(--primary-color));
    background-size: 300% 100%;
    animation: gradientFlow 10s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-column ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    transition: var(--transition-fast);
}

.footer-column ul li:before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-column ul li:hover:before {
    left: 5px;
    opacity: 1;
}

.footer-column ul li a {
    opacity: 0.7;
    font-size: 15px;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
    transform: translateX(3px);
}

.footer-newsletter {
    position: relative;
    margin-top: 20px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 14px;
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 15px;
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.footer-newsletter button:hover {
    background: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-socials a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    z-index: -1;
    opacity: 0;
    transform: scale(0);
    border-radius: 50%;
    transition: var(--transition-medium);
}

.footer-socials a:hover:before {
    opacity: 1;
    transform: scale(1);
}

.footer-socials a:hover {
    transform: translateY(-5px);
    color: var(--light-text);
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 150px;
    height: auto;
    filter: brightness(1.2);
}

.footer-contact {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}

.contact-item span {
    font-size: 14px;
    opacity: 0.8;
}

/* Fixed Action Button */
.fixed-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.btn-floating {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--button-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-floating:hover {
    transform: scale(1.1);
}

.btn-floating i {
    font-size: 24px;
}

.action-btn-list {
    position: absolute;
    bottom: 70px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.fixed-action-btn:hover .action-btn-list {
    opacity: 1;
    pointer-events: all;
}

.action-btn-list li .btn-floating {
    width: 45px;
    height: 45px;
}

.action-btn-list li .btn-floating i {
    font-size: 18px;
}

.btn-floating.red {
    background: linear-gradient(45deg, #f44336, #d32f2f);
}

.btn-floating.green {
    background: linear-gradient(45deg, #4CAF50, #388E3C);
}

.btn-floating.blue {
    background: linear-gradient(45deg, #2196F3, #1976D2);
}

/* Support Button */
.support-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
}

.support-btn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4CAF50, #388E3C);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.support-btn a i {
    font-size: 24px;
}

.support-btn a span {
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-play {
    animation: pulse 2s infinite;
}

/* Mobile Menu (Shown on mobile) */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-bg);
    z-index: 1000;
    padding: 30px;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu-close {
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-nav ul li {
    margin-bottom: 20px;
}

.mobile-menu-nav ul li a {
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Page transitions */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-bg);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* Media Queries */
@media (max-width: 1100px) {
    .main-container {
        flex-direction: column;
    }

		.ticker {
			flex-wrap: wrap;
		}

    .sidebar {
        width: 100%;
        position: static;
        height: auto;
        max-height: none;
        overflow-y: visible;
        margin-bottom: 20px;
    }

    .sidebar-promo {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .sidebar-promo {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .header-buttons .btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .hero-section {
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
} 

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0066cc, #003399);
    border-radius: 5px;
    border: 2px solid var(--dark-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #0077ee, #0044aa);
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

::-webkit-scrollbar-corner {
    background: var(--dark-bg);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #0066cc var(--dark-bg);
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    opacity: 0.15;
    font-size: 24px;
    z-index: 1;
}

.floating-icon.size-sm { font-size: 16px; }
.floating-icon.size-md { font-size: 24px; }
.floating-icon.size-lg { font-size: 32px; }
.floating-icon.size-xl { font-size: 48px; }

.floating-icon.color-primary { color: var(--primary-color); }
.floating-icon.color-secondary { color: var(--secondary-color); }
.floating-icon.color-gold { color: #FFD700; }
.floating-icon.color-red { color: #FF5252; }
.floating-icon.color-blue { color: #40C4FF; }
.floating-icon.color-green { color: #69F0AE; }
.floating-icon.color-purple { color: #E040FB; }

@keyframes float-1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -15px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 10px) rotate(-15deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(5deg); }
    66% { transform: translate(-10px, 15px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes float-4 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-5px, -15px) rotate(10deg) scale(1.1); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

.float-animation-1 { animation: float-1 8s ease-in-out infinite; }
.float-animation-2 { animation: float-2 12s ease-in-out infinite; }
.float-animation-3 { animation: float-3 15s ease-in-out infinite; }
.float-animation-4 { animation: float-4 10s ease-in-out infinite; }

/* Winner Notification */
.winner-notification {
    position: fixed;
    bottom: 20px;
    right: 110px;
    background: linear-gradient(135deg, #1a2a3a, #0d1b2a);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.winner-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.winner-notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.winner-notification-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.winner-notification-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary-color);
}

.winner-notification-content {
    display: flex;
    align-items: center;
}

.winner-notification-amount {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-right: 10px;
}

.winner-notification-game {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.winner-notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 14px;
}

/* Confetti Container */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
}

/* Glowing Effects */
.glow-text {
    text-shadow: 0 0 10px rgba(0, 168, 107, 0.7);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0% { text-shadow: 0 0 5px rgba(0, 168, 107, 0.7); }
    50% { text-shadow: 0 0 15px rgba(0, 168, 107, 0.9), 0 0 20px rgba(0, 168, 107, 0.5); }
    100% { text-shadow: 0 0 5px rgba(0, 168, 107, 0.7); }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Shiny Button Effect */
.btn-shiny {
    position: relative;
    overflow: hidden;
}

.btn-shiny:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    animation: shiny-effect 3s infinite;
    opacity: 0.6;
}

@keyframes shiny-effect {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Animated Background Gradient */
.animated-gradient {
    background: linear-gradient(270deg, var(--gradient-start), var(--gradient-end), var(--primary-color), var(--secondary-color));
    background-size: 800% 800%;
    animation: gradient-animation 8s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Bounce Animation */
.bounce-animation {
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Shake Animation */
.shake-animation {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slide In Animation */
.slide-in-right {
    animation: slideInRight 0.5s ease-in-out;
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-in-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.slide-in-up {
    animation: slideInUp 0.5s ease-in-out;
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
