/* ReelWager.live - Emerald Green Live Casino Theme */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(rgba(0, 20, 10, 0.95), rgba(0, 0, 0, 0.95)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23000" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

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

header {
    background: linear-gradient(135deg, #0d7a4f 0%, #064d31 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(13, 122, 79, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #00ff88;
}

header h1 {
    color: #00ff88;
    text-align: center;
    font-size: 2.5em;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background: rgba(0, 255, 136, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

nav a:hover {
    background: rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 255, 136, 0.4);
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(13, 122, 79, 0.9), rgba(6, 77, 49, 0.9));
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
    border: 2px solid rgba(0, 255, 136, 0.5);
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-text {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.casino-comparison {
    margin: 40px 0;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.casino-comparison h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.casino-card {
    background: linear-gradient(135deg, #001a10 0%, #003320 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(13, 122, 79, 0.5);
    transition: all 0.3s;
    position: relative;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.casino-rank {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #00ff88, #00cc6f);
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(0, 255, 136, 0.5);
}

.casino-card h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.casino-bonus {
    color: #fff;
    margin: 15px 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc6f);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
}

.content-section, .info-section, article {
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.content-section h2, .content-section h3, article h2, article h3,
.info-section h2, .info-section h3 {
    color: #00ff88;
    margin: 25px 0 15px 0;
}

.content-section p, .content-section ul, .content-section li, article p,
.info-section p {
    color: #fff;
    margin: 15px 0;
    line-height: 1.8;
}

.content-section ul { padding-left: 25px; }

.content-section a, article a {
    color: #00ff88;
    text-decoration: underline;
    transition: color 0.3s;
}

.content-section a:hover, article a:hover { color: #00cc6f; }

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

.info-card {
    background: linear-gradient(135deg, #001a10, #003320);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(13, 122, 79, 0.4);
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #00ff88;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.info-card h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.article-meta {
    color: #00ff88;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.article-meta span { margin-right: 20px; }

.comments {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.comments h3 {
    color: #00ff88;
    margin-bottom: 20px;
}

.comment {
    background: rgba(0, 255, 136, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid #0d7a4f;
}

.comment-author {
    color: #00ff88;
    font-weight: bold;
    margin-bottom: 10px;
}

.comment-text {
    color: #fff;
    line-height: 1.6;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.sitemap-link {
    display: block;
    padding: 15px;
    background: rgba(13, 122, 79, 0.3);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s;
    text-align: center;
}

.sitemap-link:hover {
    background: rgba(13, 122, 79, 0.5);
    border-color: #00ff88;
    transform: translateY(-2px);
}

.disclaimer {
    background: rgba(13, 122, 79, 0.2);
    border: 2px solid #0d7a4f;
    border-radius: 10px;
    padding: 25px;
    margin: 40px 0;
    text-align: center;
}

.disclaimer p {
    color: #fff;
    font-size: 1.1em;
    margin: 10px 0;
}

footer {
    background: linear-gradient(135deg, #0d7a4f, #064d31);
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    border-top: 3px solid #00ff88;
}

footer p {
    color: #fff;
    margin: 10px 0;
}

footer a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover { color: #00cc6f; }

.footer-keyword {
    font-size: 1.2em;
    margin-top: 15px;
}

@media (max-width: 768px) {
    header h1 { font-size: 1.8em; }
    .hero h2 { font-size: 1.8em; }
    .casino-grid, .info-grid, .sitemap-grid { grid-template-columns: 1fr; }
    nav { gap: 10px; }
    nav a { padding: 8px 15px; font-size: 0.9em; }
}
