:root { --primary: #4F686D; --win-color: #2e7d32; --loss-color: #c62828; --bg-light: #f7f8fa; --text-main: #1a1a1a; }
html, body { overflow-x: hidden; width: 100%; }
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-light); color: var(--text-main); margin: 0; padding: 0; display: flex; flex-direction: column; min-height: 100vh; }
.container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; flex: 1; width: 100%; }
.site-header { text-align: center; margin-bottom: 30px; }
.logo { max-width: 180px; height: auto; }

/* Dashboard Cards */
.header-card, .hero { background-color: var(--primary); color: white; padding: 40px 30px; border-radius: 12px; margin-bottom: 30px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); width: 100%; }
h1 { font-family: 'Outfit', sans-serif; margin: 0 0 10px 0; font-size: 2.5rem; }
.stats-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 30px; }
.stat-box { background: rgba(255,255,255,0.1); padding: 20px 30px; border-radius: 8px; min-width: 200px; border: 1px solid rgba(255,255,255,0.2); color: white; }
.stat-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.9; margin-bottom: 5px; }
.stat-value { font-size: 1.8rem; font-weight: 700; font-family: 'Outfit', sans-serif; }

/* Static Page Elements */
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto 30px; line-height: 1.6; }
.cta-button { background: #635bff; color: white; padding: 15px 30px; border-radius: 30px; font-weight: 600; text-decoration: none; display: inline-block; font-size: 1.1rem; transition: transform 0.2s; border: none; cursor: pointer; }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(99, 91, 255, 0.4); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; }
.feature-card, .content-card, .legal-content { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid #e9ecef; margin-bottom: 30px; line-height: 1.8; }
.feature-card { text-align: center; padding: 30px; }
.feature-card h3, .legal-content h2 { color: var(--primary); font-family: 'Outfit', sans-serif; margin-bottom: 15px; }
.legal-content h2 { margin-top: 30px; }

/* Daily Picks Display */
.picks-box { background-color: var(--bg-light); border: 1px solid #e9ecef; border-radius: 8px; padding: 25px; text-align: left; }
.picks-text { white-space: pre-wrap; word-wrap: break-word; font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 500; color: var(--text-main); margin: 0; line-height: 1.8; }
.pick-image-container { text-align: center; margin-bottom: 40px; }
.pick-image { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* Footer */
footer { background: #1a1a1a; color: #888; padding: 40px 20px; text-align: center; font-size: 0.85rem; line-height: 1.6; width: 100%; margin-top: auto; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: #ccc; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.gambling-warning { max-width: 800px; margin: 0 auto; border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .container { padding: 20px 10px; }
    .stat-box { flex: 1 1 100%; min-width: 100%; }
    .header-card, .hero { padding: 30px 15px; }
    h1 { font-size: 2rem; }
    .content-card, .legal-content { padding: 25px 15px; }
    .cta-button { padding: 15px 20px; font-size: 1.1rem; display: block; width: 100%; box-sizing: border-box; }
}


