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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #fbbf24;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #fbbf24;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-text span {
    color: #fbbf24;
}

.age-badge {
    background: #dc2626;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #7c3aed 100%);
    padding: 40px 0;
    text-align: center;
    border-bottom: 3px solid #fbbf24;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 18px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.last-updated-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
}

.last-updated-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.last-updated-pill::before {
    content: '🕒';
    font-size: 16px;
}

/* Casino Grid */
.casinos {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #fbbf24;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.casino-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #475569;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    border-color: #fbbf24;
}

.casino-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fbbf24;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.casino-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
}

.casino-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.casino-bonus {
    background: rgba(251, 191, 36, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 12px 0;
    border-left: 3px solid #fbbf24;
}

.bonus-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-amount {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
}

.casino-features {
    margin: 15px 0;
    font-size: 13px;
    color: #cbd5e1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.feature-item::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

.casino-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.5);
}

/* Content Sections */
.intro-content {
    background: #1e293b;
    padding: 40px 0;
    border-bottom: 2px solid #334155;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
    background: #334155;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
}

.content-section {
    background: #0f172a;
    padding: 50px 0;
    border-bottom: 2px solid #334155;
}

.content-section h2 {
    font-size: 32px;
    color: #fbbf24;
    margin-bottom: 25px;
    text-align: center;
}

.content-section h3 {
    font-size: 24px;
    color: #fbbf24;
    margin: 30px 0 15px;
}

.content-section h4 {
    font-size: 20px;
    color: #fff;
    margin: 25px 0 12px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.content-section ul {
    list-style: none;
    margin: 20px 0;
}

.content-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #cbd5e1;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.pros, .cons {
    background: #1e293b;
    padding: 25px;
    border-radius: 12px;
}

.pros {
    border-left: 4px solid #10b981;
}

.cons {
    border-left: 4px solid #ef4444;
}

.pros h4 {
    color: #10b981;
}

.cons h4 {
    color: #ef4444;
}

.faq-section {
    background: #1e293b;
    padding: 50px 0;
}

.faq-item {
    background: #334155;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #fbbf24;
}

.faq-item h4 {
    color: #fbbf24;
    margin-bottom: 10px;
}

.faq-item p {
    color: #cbd5e1;
    line-height: 1.8;
}

/* Author Bio */
.author-section {
    background: #0f172a;
    padding: 40px 0;
    border-top: 2px solid #334155;
}

.author-bio {
    max-width: 800px;
    margin: 0 auto;
    background: #1e293b;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

.author-bio h3 {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 12px;
}

.author-bio p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

.author-bio .author-name {
    color: #fff;
    font-weight: 700;
}

/* Info Section */
.info-section {
    background: #1e293b;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 2px solid #334155;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: #334155;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

.info-card h3 {
    color: #fbbf24;
    margin-bottom: 10px;
    font-size: 20px;
}

.info-card p {
    color: #cbd5e1;
    font-size: 14px;
}

/* Footer */
footer {
    background: #0f172a;
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid #334155;
    margin-top: 40px;
}

.footer-warning {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.footer-warning p {
    color: #fca5a5;
    font-size: 13px;
    line-height: 1.8;
}

.footer-links {
    color: #94a3b8;
    font-size: 13px;
    margin-top: 15px;
}

/* Mobile Bottom Banner */
.mobile-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 12px 15px;
    border-top: 2px solid #fbbf24;
    z-index: 101;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.mobile-banner a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.mobile-banner-text {
    color: #fff;
    font-weight: 700;
}

.mobile-banner-btn {
    background: #fbbf24;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .casino-grid {
        grid-template-columns: 1fr;
    }

    .mobile-banner {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}
