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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f1ea; /* Retro paper feel */
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.main-header {
    background: #1a1a1a;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #d4af37; /* Gold */
}

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

.logo img {
    height: 40px;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    .desktop-nav ul {
        display: flex;
        list-style: none;
    }
    .desktop-nav a {
        color: #fff;
        text-decoration: none;
        padding: 0 15px;
        font-weight: 500;
        transition: color 0.3s;
    }
    .desktop-nav a:hover {
        color: #d4af37;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, background 0.3s;
    cursor: pointer;
}

.btn-header {
    background: #ce2b37; /* Italian Red */
    color: #fff;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg=='); /* Mockup bg */
    background-size: cover;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.hero-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.author-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #009246; /* Italian Green */
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
}

.badge-verified {
    background: #009246;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
}

.update-date {
    font-size: 12px;
    opacity: 0.8;
}

.btn-hero {
    background: #009246;
    color: #fff;
    font-size: 1.2rem;
}

/* Listing */
.listing-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.listing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.casino-card.featured {
    border: 2px solid #d4af37;
    background: #fffdf5;
}

.rank {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #1a1a1a;
    color: #d4af37;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.brand-block {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 15px;
}

.casino-logo {
    max-width: 150px;
    height: auto;
}

.bonus-block {
    flex: 1 1 100%;
    text-align: center;
    padding: 10px;
    border-top: 1px solid #eee;
}

.label {
    text-transform: uppercase;
    font-size: 12px;
    color: #777;
    font-weight: 700;
}

.bonus-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ce2b37;
}

.features {
    flex: 1 1 100%;
    list-style: none;
    margin: 15px 0;
}

.features li {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 5px;
}

.features svg {
    width: 18px;
    fill: #009246;
    margin-right: 10px;
}

.cta-block {
    flex: 1 1 100%;
}

.btn-play {
    background: linear-gradient(180deg, #009246 0%, #007a3a 100%);
    color: #fff;
    width: 100%;
    font-size: 1.1rem;
    box-shadow: 0 4px 0 #005a2a;
}

@media (min-width: 768px) {
    .casino-card {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .brand-block, .bonus-block, .features, .cta-block {
        flex: 1;
        margin-bottom: 0;
        text-align: left;
    }
    .brand-block { border-right: 1px solid #eee; padding-right: 20px; }
    .bonus-block { border: none; padding: 0 20px; }
    .cta-block { max-width: 200px; }
}

/* Content Styles */
.main-content {
    padding: 40px 0;
    background: #fff;
    border-radius: 30px 30px 0 0;
}

.main-content h2 {
    font-family: 'Playfair Display', serif;
    margin: 30px 0 15px;
    color: #1a1a1a;
    border-left: 5px solid #009246;
    padding-left: 15px;
}

.main-content h3 {
    margin: 25px 0 10px;
}

.main-content ul, .main-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #fdfdfd;
}

table td, table th {
    border: 1px solid #ddd;
    padding: 12px;
}

table tr:nth-child(even) { background: #f9f9f9; }

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto;
}