:root {
    --primary: #ffcc00; /* Gold */
    --dark: #1a1a1a;
    --light: #f4f4f4;
    --accent: #2ecc71; /* Success Green */
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 5%;
    background: #000;
    align-items: center;
}

.logo { font-size: 1.5rem; font-weight: bold; }
.logo span { color: var(--primary); }

.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: white; text-decoration: none; }

.hero {
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-bg.jpg');
}

/* Casino Card Styling */
.casino-card {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    background: #222;
    margin: 10px 5%;
    padding: 20px;
    border-radius: 8px;
    align-items: center;
    border-left: 5px solid var(--primary);
}

.btn-visit {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}


/* Featured Article Section */
.featured-article {
    padding: 60px 5%;
    background: radial-gradient(circle at top left, #2c3e50, #000);
}

.article-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    gap: 40px;
}

.category-tag {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.article-content h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: #fff;
}

.article-content p {
    color: #bbb;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 25px;
}

.article-meta {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #888;
    display: flex;
    gap: 20px;
}

/* The Visual Interactive Element */
.article-visual {
    background: linear-gradient(135deg, var(--primary), #e6b800);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.probability-chip {
    font-size: 3rem;
    font-weight: 900;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-container { flex-direction: column; text-align: center; }
    .article-content p { margin: 0 auto 25px auto; }
}

html {
    /* This ensures a scrollbar gutter is always present, even if not needed */
    overflow-y: scroll; 
    
    /* Modern 2026 approach: prevents the content from shifting when scrollbar appears */
    scrollbar-gutter: stable; 
}