/* Global Styles */
:root {
    --primary: #ffc107;
    --secondary: #f57c00;
    --dark: #1a1a2e;
    --light: #f0f0f0;
    --danger: #e53935;
    --success: #43a047;
    --info: #2196f3;
    --gradient-primary: linear-gradient(135deg, #ffc107, #f57c00);
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #0f0f1e);
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.3);
    --anim-speed: 0.3s;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100%;
}

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

.casino-icon {
    position: absolute;
    opacity: 0.08;
    animation: float-icons 15s linear infinite;
}

.casino-icon:nth-child(1) {
    top: 10%;
    left: 5%;
    font-size: 2rem;
    color: var(--primary);
    animation-duration: 20s;
    animation-delay: 0s;
}

.casino-icon:nth-child(2) {
    top: 25%;
    left: 15%;
    font-size: 1.8rem;
    color: #e91e63;
    animation-duration: 25s;
    animation-delay: 2s;
}

.casino-icon:nth-child(3) {
    top: 15%;
    right: 10%;
    font-size: 2.2rem;
    color: #9c27b0;
    animation-duration: 22s;
    animation-delay: 5s;
}

.casino-icon:nth-child(4) {
    top: 40%;
    right: 20%;
    font-size: 1.5rem;
    color: #2196f3;
    animation-duration: 18s;
    animation-delay: 1s;
}

.casino-icon:nth-child(5) {
    bottom: 20%;
    left: 10%;
    font-size: 2.5rem;
    color: #4caf50;
    animation-duration: 23s;
    animation-delay: 3s;
}

.casino-icon:nth-child(6) {
    bottom: 15%;
    right: 5%;
    font-size: 1.7rem;
    color: #ff5722;
    animation-duration: 19s;
    animation-delay: 7s;
}

.casino-icon:nth-child(7) {
    top: 50%;
    left: 25%;
    font-size: 2rem;
    color: #cddc39;
    animation-duration: 21s;
    animation-delay: 4s;
}

.casino-icon:nth-child(8) {
    top: 60%;
    right: 15%;
    font-size: 1.9rem;
    color: #00bcd4;
    animation-duration: 24s;
    animation-delay: 6s;
}

.casino-icon:nth-child(9) {
    top: 75%;
    left: 40%;
    font-size: 2.3rem;
    color: #ff9800;
    animation-duration: 26s;
    animation-delay: 8s;
}

.casino-icon:nth-child(10) {
    top: 30%;
    left: 50%;
    font-size: 1.6rem;
    color: #8bc34a;
    animation-duration: 17s;
    animation-delay: 9s;
}

.casino-icon:nth-child(11) {
    top: 85%;
    right: 30%;
    font-size: 2.1rem;
    color: #03a9f4;
    animation-duration: 27s;
    animation-delay: 10s;
}

.casino-icon:nth-child(12) {
    top: 5%;
    right: 40%;
    font-size: 1.8rem;
    color: #f44336;
    animation-duration: 16s;
    animation-delay: 11s;
}

@keyframes float-icons {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Fix for animated coins - prevent them from causing page shifting */
#coins-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.coin {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
}
/* Improved mobile responsiveness */
@media (max-width: 992px) {
    /* Header improvements removed - now in the dedicated mobile section */
    
    /* Container adjustments */
    .container {
        width: 100%;
        padding: 0 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Currency bar improvements */
    .currency-bar {
        padding: 0.5rem 0;
    }
    
    .currency-bar .container {
        flex-direction: column;
        padding: 0 0.5rem;
    }
    
    .currencies {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        margin-bottom: 0.5rem;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .currencies::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .currency-item {
        margin-right: 0.75rem;
        font-size: 0.85rem;
    }
    
    .winners-section {
        margin: 0.25rem 0;
        font-size: 0.85rem;
    }
    
    .bonus-buttons {
        width: 100%;
        justify-content: space-between;
        margin-top: 0.25rem;
    }
    
    .bonus-buttons .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Auth buttons improvements */
    .auth-buttons .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .currencies {
        display: flex;
        flex-wrap: nowrap;
    }
    
    .currency-item {
        flex: 0 0 auto;
    }
    
    .bonus-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .bonus-buttons .btn {
        flex: 1 0 auto;
        min-width: 100px;
        text-align: center;
    }
    
    /* Partner logos adjustments */
    .partner-sites {
        gap: 0.75rem;
    }
    
    .partner-logo {
        width: 60px;
        height: 25px;
    }
    
    /* Further auth buttons adjustments */
    .auth-buttons {
        display: flex;
        gap: 0.5rem;
    }
    
    .auth-buttons .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
}

a {
    text-decoration: none;
    color: var(--light);
    transition: all var(--anim-speed) ease;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--anim-speed) ease;
    border: none;
    outline: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn i {
    margin-right: 0.5rem;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-cta {
    background: var(--gradient-primary);
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.btn-action {
    background: var(--primary);
    color: #000;
    margin: 0.5rem;
    font-weight: 600;
}

.btn-bonuses {
    background-color: var(--primary);
    color: #000;
}

.btn-money {
    background-color: #43a047;
    color: #fff;
}

.btn-vip {
    background-color: #9c27b0;
    color: #fff;
}

.btn-login {
    background-color: transparent;
    border: 2px solid var(--light);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.btn-signup {
    background: var(--gradient-primary);
    color: #000;
    animation: pulse 2s infinite;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.btn-play {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
    width: 80%;
    margin: 0.5rem auto;
    padding: 0.75rem 0;
    border-radius: 50px;
    display: block;
    transition: all var(--anim-speed) ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-play:hover {
    background: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-play::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-play:hover::before {
    animation: btn-shine 1.5s ease;
}

@keyframes btn-shine {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(45deg);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateX(100%) rotate(45deg);
    }
}

.btn-float {
    padding: 1rem 1.5rem;
    font-weight: 600;
    position: sticky;
    bottom: 1.5rem;
    margin: 0.5rem;
}

.btn-bonus {
    background: var(--gradient-primary);
    color: #000;
}

.btn-register {
    background-color: var(--danger);
    color: var(--light);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes shine {
    0% {
        background-position: -100px;
    }
    40%, 100% {
        background-position: 300px;
    }
}

/* Currency Bar */
.currency-bar {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0;
    width: 100%;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 100;
}

.currency-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

.currencies {
    display: flex;
    align-items: center;
}

.currency-item {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.winners-section {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
    padding: 0 0.5rem;
}

.winners-section i {
    margin-right: 0.5rem;
    animation: winner-pulse 1.5s infinite;
}

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

.currency-item i {
    color: var(--primary);
    margin-right: 0.25rem;
}

.bonus-buttons {
    display: flex;
}

.bonus-buttons .btn {
    margin-left: 0.5rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

/* Header */
header {
    background-color: rgba(15, 15, 30, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 4rem; /* Height of the currency bar */
    z-index: 90;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.logo img {
    height: 50px;
    margin-right: 0.5rem;
}

.logo h1 {
    color: var(--primary);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
}

.main-nav a {
    margin: 0 1rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: #fff;
}

.main-nav a i {
    margin-right: 0.5rem;
}

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

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

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.partner-sites {
    display: flex;
    align-items: center;
}

.partner-logo {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e30;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


.auth-buttons {
    display: flex;
}

.auth-buttons .btn {
    margin-left: 0.5rem;
}

/* Main Content */
main {
    padding: 2rem 0;
}

main .container {
    display: flex;
    gap: 2rem;
}

/* Sidebar */
.sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 9rem;
    height: calc(100vh - 8rem);
    background-color: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1.5rem;
    animation: slideInLeft 0.5s ease-in-out;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    color: var(--light);
    outline: none;
    transition: all var(--anim-speed) ease;
}

.search-box input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
}

.category-heading {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.filter-actions {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-end;
}

.btn-reset-filter {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--primary);
    border: none;
    border-radius: 4px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset-filter:hover {
    background-color: rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

.btn-reset-filter:active, .btn-reset-filter.btn-active {
    background-color: var(--primary);
    color: #000;
    transform: translateY(0);
}

.menu-categories {
    list-style: none;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100% - 100px);
}

.menu-categories li {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.menu-categories li.active a {
    background-color: rgba(255, 193, 7, 0.3);
    transform: translateX(5px);
}

.menu-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: all var(--anim-speed) ease;
}

.menu-categories a:hover {
    background-color: rgba(255, 193, 7, 0.2);
    transform: translateX(5px);
}

.menu-categories i {
    color: var(--primary);
    margin-right: 0.75rem;
}

.menu-categories .count {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* Highlight for search results */
.highlight {
    background-color: rgba(255, 193, 7, 0.4);
    color: #000;
    border-radius: 3px;
    padding: 0 2px;
    font-weight: bold;
}

/* No results message */
.no-results-message {
    padding: 1rem;
    text-align: center;
    color: var(--light);
    opacity: 0.7;
    font-style: italic;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-top: 1rem;
}

/* Animation for filtering */
.filtering {
    animation: pulse-content 0.5s ease;
}

@keyframes pulse-content {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.highlight-animation {
    animation: highlight-pulse 1s ease;
}

@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Content */
.content {
    flex-grow: 1;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
}


.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: capitalize;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #fff, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Home Sections */
.home-section {
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-in-out;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary);
}

.section-header i {
    color: var(--primary);
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.game-card {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--anim-speed) ease;
    box-shadow: var(--shadow-sm);
    text-align: center;
    padding-bottom: 1rem;
    position: relative;
    height: 100%;
}

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

.game-provider {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    z-index: 2;
}

.game-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

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

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


.game-title {
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: var(--light);
    position: relative;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.game-card:hover .game-title::after {
    width: 50px;
}

/* Home Intro and Feature Lists */
.home-intro {
    padding: 2rem;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.intro-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.3;
    text-align: center;
}

.intro-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
    color: #ffffff;
}

/* Feature Lists Grid Layout */
.feature-lists-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-list {
    margin-bottom: 0;
    animation: fadeIn 1s ease-in-out;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-list:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: rgba(0, 0, 0, 0.3);
}

.feature-list h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.feature-list h3 i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.feature-list ul, .feature-list ol {
    padding-left: 1.5rem;
    list-style-position: outside;
}

.feature-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #ffffff;
    position: relative;
}

.feature-list li:hover {
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
}

.feature-list li:hover::before {
    transform: scale(1.3);
    opacity: 1;
    transition: all 0.3s ease;
}

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

.action-buttons .btn-action {
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.action-buttons .btn-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments for feature lists */

.live-winner-ticker {
    position: sticky;
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--primary);
    z-index: 80;
    animation: float 3s infinite ease-in-out;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--primary);
    max-width: fit-content;
}

.live-winner-ticker i {
    margin-right: 0.5rem;
}

@media (max-width: 992px) {
    .feature-lists-container {
        grid-template-columns: 1fr;
    }
		.live-winner-ticker {
			position: relative;
			left: 0;
		}
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.footer-logo h2 {
    color: var(--primary);
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.footer-column a:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background-color: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    z-index: 100;
    animation: fadeIn 1s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .main-nav a {
        margin: 0 0.5rem;
    }
}

@media (max-width: 992px) {
    main .container {
        flex-direction: column;
    }

		.home-intro {
			padding: 1rem;
		}
    
    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        margin-bottom: 2rem;
    }
    
    .menu-categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    header .container {
        flex-direction: column;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .main-nav {
        margin: 1rem 0;
        justify-content: center;
    }
    
    .auth-buttons {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .currency-bar .container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-column {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .currencies {
        justify-content: center;
				overflow-x: auto;
    }
    
    .hero-banner {
        padding: 2rem 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .intro-content h2 {
        font-size: 1.4rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .game-title {
        font-size: 0.9rem;
    }
    
    .btn-play {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
}

/* Special Effects */
.game-card:hover .game-image::before {
    opacity: 0.9;
}

.game-title {
    position: relative;
}

.game-title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 25px;
    background: linear-gradient(to right, transparent, rgba(255, 193, 7, 0.5), transparent);
    background-size: 200% 100%;
    animation: shine 2s infinite;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Additional CSS for Blog Page */
.page-header {
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary), #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-intro, .game-intro, .forum-intro {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    padding: 0 1rem;
}

.blog-section, .game-section, .forum-section {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-in-out;
}

/* Story Cards */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.story-card {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--anim-speed) ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

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

.story-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.story-content {
    padding: 1.5rem;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.story-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0;
    gap: 0.5rem;
}

.story-tags .tag {
    background-color: rgba(255, 193, 7, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary);
}

.btn-read-more {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--anim-speed) ease;
}

.btn-read-more:hover {
    background: var(--primary);
    color: #000;
}

/* Player Favorites */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.favorite-item {
    display: flex;
    background-color: rgba(26, 26, 46, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-speed) ease;
}

.favorite-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: rgba(26, 26, 46, 0.9);
}

.favorite-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.favorite-icon i {
    color: var(--primary);
    font-size: 1.5rem;
}

.favorite-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.favorite-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    background: var(--primary);
    color: #000;
    border-radius: 4px;
}

.btn-sm:hover {
    background: var(--secondary);
}

/* Share Story Section */
.share-story-section {
    padding: 2rem;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.share-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('') center center no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

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

.share-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.share-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tag-cloud .tag {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all var(--anim-speed) ease;
}

.tag-cloud .tag:hover {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--primary);
    transform: translateY(-2px);
}

.share-story-box {
    background-color: rgba(255, 193, 7, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.share-story-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.share-story-box p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Game Page Styles */
.game-info {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.live-casino-highlight {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(41, 30, 94, 0.9), rgba(12, 3, 35, 0.9));
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.live-casino-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('') center center no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.highlight-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.highlight-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.highlight-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Sports Betting Styles */
.sportsbook-intro {
    text-align: center;
    margin-bottom: 2rem;
}

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

.match-card {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-speed) ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.match-teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.vs {
    color: var(--primary);
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    background-color: rgba(255, 193, 7, 0.2);
    border-radius: 4px;
}

.match-info {
    margin-bottom: 1rem;
}

.match-time {
    font-weight: 600;
    color: var(--primary);
}

.match-league {
    font-size: 0.8rem;
    opacity: 0.7;
}

.match-odds {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.odd-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    margin: 0 0.25rem;
    transition: all var(--anim-speed) ease;
}

.odd-box:hover {
    background-color: rgba(255, 193, 7, 0.2);
}

.odd-value {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.odd-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn-bet {
    background: var(--gradient-primary);
    color: #000;
    padding: 0.75rem;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-bet:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.match-badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.25rem 0.75rem;
    background-color: #e53935;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 0 0 5px 0;
}

.tournament {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.markets-count {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.mobile-section {
    padding: 3rem 2rem;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mobile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('') center center no-repeat;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

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

.mobile-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.mobile-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Forum Page Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

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

.comparison-table th {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
}

.comparison-table .check {
    color: var(--success);
}

.comparison-table .times {
    color: var(--danger);
}

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

@media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

/* Payments Page Styles */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-option {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all var(--anim-speed) ease;
    box-shadow: var(--shadow-sm);
}

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

.payment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
}

.payment-icon i {
    color: var(--primary);
}

.payment-option h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.payment-option p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.payment-features {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.payment-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    list-style-type: none;
}

.payment-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
}

/* Promotions Page Styles */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.promo-card {
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--anim-speed) ease;
    position: relative;
}

.promotions-section {
	margin-top: 2rem;
}

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

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

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

.promo-content {
    padding: 1.5rem;
}

.promo-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.promo-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light);
    opacity: 0.85;
}

.vip-section {
    padding: 2.5rem;
    background: linear-gradient(135deg, #141e30, #243b55);
    border-radius: 10px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('') center center no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.vip-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.vip-info {
    flex: 1;
    min-width: 300px;
}

.vip-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
}

.vip-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.vip-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.vip-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.benefit-icon {
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.benefit-text {
    flex: 1;
}

.holiday-promos {
    margin-top: 3rem;
}

.holiday-promos h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.holiday-promos h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--gradient-primary);
}

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

.holiday-item {
    background-color: rgba(26, 26, 46, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-speed) ease;
}

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

.holiday-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.holiday-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.holiday-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .vip-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vip-info {
        text-align: center;
    }
    
    .vip-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .benefit-item {
        text-align: left;
    }
} 

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 193, 7, 0.5);
    border-radius: 10px;
    transition: all var(--anim-speed) ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 193, 7, 0.5) rgba(255, 255, 255, 0.05);
}

.feature-list.standalone {
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list ol {
    counter-reset: steps;
    list-style-type: none;
    padding-left: 0;
}

.feature-list ol li {
    counter-increment: steps;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.feature-list ol li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 1.8rem;
    background-color: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    opacity: 1;
}

/* Remove old game image styles */
.gates-olympus::before,
.gates-olympus::after,
.sweet-bonanza::before,
.sweet-bonanza::after,
.gold-megaways::before,
.gold-megaways::after,
.mega-moolah::before,
.mega-moolah::after {
    display: none;
}


/* VIP Levels Styling */
.vip-levels {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.level-block {
    display: flex;
		flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.promo-intro, .payment-intro {
	margin-bottom: 2.5rem;
	font-size: 1.1rem;
	line-height: 1.7;
	text-align: center;
	padding: 0 1rem;
}

@media screen and (max-width: 992px) {
	.level-block {
		flex-direction: row;
	}

	.logo img {
		margin-right: 0;
	}
}

.level {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 80px;
    position: relative;
    overflow: hidden;
}

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

.level i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.level-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.level.bronze {
    background: linear-gradient(135deg, #a77044 0%, #cd7f32 50%, #a77044 100%);
    color: #000;
}

.level.silver {
    background: linear-gradient(135deg, #757575 0%, #c0c0c0 50%, #757575 100%);
    color: #000;
}

.level.gold {
    background: linear-gradient(135deg, #b7892b 0%, #ffd700 50%, #b7892b 100%);
    color: #000;
}

.level.platinum {
    background: linear-gradient(135deg, #6a6a6a 0%, #e5e4e2 50%, #6a6a6a 100%);
    color: #000;
}

.level.diamond {
    background: linear-gradient(135deg, #6e9dd1 0%, #b9f2ff 50%, #6e9dd1 100%);
    color: #000;
}

/* Page Header Styles */
.page-header {
    margin-bottom: 2.5rem;
    text-align: center;
    padding: 2.5rem 1rem 2rem 1rem;
    background: linear-gradient(135deg, rgba(255,193,7,0.08) 0%, rgba(41,30,94,0.12) 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.7rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--primary), #ff9800 60%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.page-header .header-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1.5rem auto 0 auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header {
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }
}

/* Styling for Forum page sections */

/* Sports Focus Section Styling */
.sports-focus {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.focus-item {
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.8), rgba(15, 15, 30, 0.95));
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.1);
    position: relative;
    overflow: hidden;
}

.focus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.focus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.focus-item:hover::before {
    opacity: 1;
}

.focus-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.focus-icon i {
    font-size: 1.5rem;
    color: var(--dark);
}

.focus-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.focus-content p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}


/* Comment Cards Styling */
.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.comment-card {
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.8), rgba(15, 15, 30, 0.95));
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 193, 7, 0.3);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #333;
    margin-right: 1rem;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary);
}

.user-avatar.a1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' fill='%23555'/%3E%3Ccircle cx='50' cy='35' r='20' fill='%23999'/%3E%3Cpath d='M25 85 C25 65, 75 65, 75 85 L25 85' fill='%23999'/%3E%3C/svg%3E");
}

.user-avatar.a2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' fill='%23446'/%3E%3Ccircle cx='50' cy='35' r='20' fill='%23779'/%3E%3Cpath d='M25 85 C25 65, 75 65, 75 85 L25 85' fill='%23779'/%3E%3C/svg%3E");
}

.user-avatar.a3 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' fill='%23654'/%3E%3Ccircle cx='50' cy='35' r='20' fill='%23987'/%3E%3Cpath d='M25 85 C25 65, 75 65, 75 85 L25 85' fill='%23987'/%3E%3C/svg%3E");
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.user-info span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.comment-content {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.comment-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.comment-content p {
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

.comment-footer {
    display: flex;
    justify-content: flex-end;
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .sports-focus,
    .comments-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Welcome Bonus / Highlight Promo Styling */
.highlight-promo {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.95) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 5px 25px rgba(255, 193, 7, 0.2), inset 0 0 20px rgba(255, 193, 7, 0.05);
    position: relative;
    overflow: hidden;
}

.highlight-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 80%, rgba(255, 193, 7, 0.15), transparent 50%);
    pointer-events: none;
}

.highlight-promo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    animation: shine-effect 4s infinite linear;
    pointer-events: none;
}

@keyframes shine-effect {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.highlight-promo .promo-content h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    color: var(--primary);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.highlight-promo .promo-image {
    position: relative;
    height: 220px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.highlight-promo .promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85rem;
    transform: rotate(5deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Promo Details Styling */
.promo-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.detail-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.highlight-promo .btn-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--dark);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    transform-origin: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

.highlight-promo .btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.highlight-promo .btn-cta:active {
    transform: translateY(0) scale(0.98);
}

.highlight-promo .btn-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.highlight-promo .btn-cta:hover::after {
    opacity: 1;
    transform: rotate(45deg) translateY(-150%);
}

@media (max-width: 768px) {
    .promo-details {
        grid-template-columns: 1fr;
    }

    .highlight-promo .promo-content h3 {
        font-size: 1.3rem;
    }
}

/* Payment Tips Section Styling */
.payment-tips {
    margin: 3rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tip-item {
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.8), rgba(15, 15, 30, 0.95));
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.tip-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 193, 7, 0.3);
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tip-item:hover .tip-icon {
    background: var(--gradient-primary);
}

.tip-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tip-item:hover .tip-icon i {
    color: var(--dark);
}

.tip-content {
    flex-grow: 1;
}

.tip-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.tip-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Extremely small devices */
@media (max-width: 360px) {
    .currency-bar .container {
        padding: 0.25rem;
    }
    
    .currencies {
        padding: 0.15rem 0;
        gap: 0.5rem;
    }
    
    .currency-item {
        font-size: 0.7rem;
        margin-right: 0.5rem;
    }
    
    .winners-section {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }
    
    .bonus-buttons .btn, 
    .auth-buttons .btn {
        padding: 0.3rem 0.4rem;
        font-size: 0.65rem;
        min-width: 0;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .main-nav a {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* Fix for the floating buttons on mobile */
.floating-buttons {
    z-index: 90;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .btn-float {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Mobile specific styles for headers and navigation */
@media (max-width: 992px) {
    .currency-bar, header {
        position: relative;
        top: auto;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .logo {
        margin-right: 0;
        flex: 0 0 auto;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .mobile-menu-toggle {
        position: relative;
        z-index: 101;
        border: none;
        background: transparent;
        color: var(--light);
        font-size: 1.5rem;
        cursor: pointer;
        display: block;
        order: 2;
    }
    
    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background-color: rgba(15, 15, 30, 0.95);
        z-index: 100;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        order: 5;
        width: 100%;
    }
    
    .main-nav.show {
        max-height: 500px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        padding: 0.5rem 0;
    }
    
    .main-nav a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        text-align: center;
    }
    
    .main-nav a:last-child {
        border-bottom: none;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        background-color: rgba(255, 193, 7, 0.1);
    }
    
    .auth-buttons {
        order: 3;
        margin-left: 0;
    }
    
    .partner-sites {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        gap: 0.75rem;
    }
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

.mobile-menu-toggle:focus {
    outline: none;
}

/* Show the toggle button on mobile only */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: inline-block;
    }
    
    .mobile-menu-toggle i {
        transition: transform 0.3s ease;
    }
    
    .main-nav.show + .mobile-menu-toggle i.fa-times {
        transform: rotate(90deg);
    }
}
