:root {
    --primary-color: #0072f5;
    --secondary-color: #7828c8;
    --dark-color: #111111;
    --darker-color: #000000;
    --text-color: #555555;
    --light-text: #f5f5f5;
    --gold: #FFD34E;
    --gold-light: #FFE57F;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray-text: #71717a;
    --card-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--darker-color);
    color: var(--light-text);
    line-height: 1.6;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header styles */
header {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 211, 78, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.gold-text {
    color: var(--gold);
    margin-right: 4px;
}

.white-text {
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    border: 1.5px solid var(--gold);
    background: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background-color: rgba(255, 211, 78, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(255, 211, 78, 0.2);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--darker-color);
    border: none;
    box-shadow: 0 4px 14px 0 rgba(255, 211, 78, 0.4);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 211, 78, 0.5);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Hero section */
.hero {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.9) 100%);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 180px 0 120px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 211, 78, 0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    margin-bottom: 48px;
    border: 2px solid var(--gold);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
    position: relative;
}

.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; /* match the rounded corners */
    display: block;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

.hero-image img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #FFFFFF, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h1 span {
    background: linear-gradient(90deg, var(--gold), #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Stats section */
.stats {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-header {
    margin-bottom: 70px;
    text-align: center;
}

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

.stat-item {
    padding: 32px 24px;
    background: rgba(17, 17, 17, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 211, 78, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(255, 211, 78, 0.15);
    border-color: rgba(255, 211, 78, 0.3);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--gold), #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.next-section-button {
    text-align: center;
    margin-top: 60px;
}

/* Games section */
.games {
    padding: 120px 0;
    background-color: var(--darker-color);
    position: relative;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(90deg, #FFFFFF, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header p {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.games-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border-radius: 12px;
    background-color: rgba(17, 17, 17, 0.5);
    border: 1.5px solid rgba(255, 211, 78, 0.2);
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    margin: 4px;
    min-width: 150px;
}

.filter-btn.active, .filter-btn:hover {
    background-color: rgba(255, 211, 78, 0.1);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(255, 211, 78, 0.2);
}

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

.game-card {
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 211, 78, 0.1);
    position: relative;
}

.game-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(255, 211, 78, 0.15);
    border-color: rgba(255, 211, 78, 0.3);
}

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

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.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-info {
    padding: 28px;
    position: relative;
}

.game-title {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--white);
}

.game-description {
    font-size: 0.95rem;
    color: #bbbbbb;
    margin-bottom: 24px;
    min-height: 70px;
    line-height: 1.6;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--gold);
}

.game-meta .jackpot {
    font-weight: 700;
}

.game-meta .rtp {
    opacity: 0.9;
}

/* Enhanced Play Button */
.play-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(90deg, var(--gold), #FFC107);
    color: var(--darker-color);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(255, 211, 78, 0.3);
    text-align: center;
    font-size: 14px;
}

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

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 211, 78, 0.4);
}

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

/* Let's Talk Section */
.lets-talk {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.9) 100%);
    padding: 120px 0;
    position: relative;
}

.lets-talk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.talk-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.talk-image {
    flex: 1;
    text-align: center;
}

.talk-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.talk-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(255, 211, 78, 0.2);
}

.talk-text {
    flex: 1;
}

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

.talk-text h2 {
    font-size: 3rem;
    margin-bottom: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, #FFFFFF, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.talk-text p {
    margin-bottom: 36px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.vip-button-container {
    text-align: center;
    margin-top: 36px;
}

/* Footer */
footer {
    background-color: var(--darker-color);
    color: var(--light-text);
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 211, 78, 0.2), transparent);
}

.footer-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-links a {
    color: #bbbbbb;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #777777;
    font-size: 0.9rem;
}

/* Visually hidden but accessible to screen readers */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-text {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        justify-content: space-between;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .talk-content {
        flex-direction: column-reverse;
        gap: 48px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .talk-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .talk-text h2 {
        font-size: 2.2rem;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .stats-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .games-filter .filter-btn {
        min-width: 140px;
        font-size: 13px;
        padding: 10px 18px;
    }
}