/* -----------------------------------------------------
   GLOBAL RESET
----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #0f0f11;
    color: #d5d7de;
    line-height: 1.5;
}

/* -----------------------------------------------------
   LAYOUT
----------------------------------------------------- */
.container {
    width: 92%;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: #151517;
    border: 1px solid #2a2a2d;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 22px;
}

/* -----------------------------------------------------
   NAVIGATION
----------------------------------------------------- */
header {
    background: #151517;
    border-bottom: 1px solid #222;
    padding: 14px 0;
    margin-bottom: 25px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    height: 96px;
}

nav a {
    color: #c7c9d2;
    text-decoration: none;
    margin-left: 18px;
    font-size: 15px;
    transition: .25s;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
    color: #ffd54a;
    border-bottom: 2px solid #ffd54a;
}

/* -----------------------------------------------------
   HERO
----------------------------------------------------- */
.hero {
    padding: 40px 0 10px 0;
}

.kicker {
    color: #ffd54a;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 16px;
    color: #b7bcc7;
    max-width: 580px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #ffd54a;
    color: #000;
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 6px;
}

.btn.secondary {
    background: #2f3033;
    border: 1px solid #444;
    color: #ddd;
}

/* -----------------------------------------------------
   FEATURE BLOCKS
----------------------------------------------------- */
.features {
    display: flex;
    justify-content: space-between;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* -----------------------------------------------------
   FEATURED PICKS
----------------------------------------------------- */
.pick-card {
    background: #1a1a1d;
    border: 1px solid #2a2a2d;
    padding: 16px;
    margin-bottom: 14px;
    border-radius: 12px;
    transition: .25s;
}

.pick-card:hover {
    transform: translateY(-2px);
}

.pick-card h3 {
    color: #fff;
    margin-bottom: 6px;
}

.pick-meta {
    color: #aab0bb;
    font-size: 14px;
}

.league-tag {
    background: #ffd54a;
    color: #000;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 12px;
    margin-left: 6px;
}

/* Player list inside picks */
.picks-players li {
    list-style: none;
    padding: 4px 0;
    color: #dcdde3;
    font-size: 14px;
    border-bottom: 1px solid #222;
}

/* -----------------------------------------------------
   PLAYERS TO WATCH
----------------------------------------------------- */
.players-watch h2 {
    color: #fff;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.player-card {
    background: #1a1a1d;
    padding: 16px;
    border: 1px solid #2a2a2d;
    border-radius: 10px;
    transition: .25s;
}

.player-card:hover {
    transform: translateY(-2px);
}

.player-card .name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.player-card .team {
    color: #8c8f98;
    font-size: 13px;
    margin-bottom: 6px;
}

.player-card .prob {
    background: #ffd54a;
    color: #000;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* -----------------------------------------------------
   PRO WALL
----------------------------------------------------- */
.pro-wall {
    filter: blur(4px) brightness(0.6);
    height: 240px;
    pointer-events: none;
    border-radius: 10px;
}

.pro-overlay {
    text-align: center;
    margin-top: -150px;
}

.pro-overlay .btn {
    margin-top: 10px;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
footer {
    text-align: center;
    padding: 25px;
    font-size: 13px;
    color: #6c6f77;
    margin-top: 40px;
    border-top: 1px solid #222;
}

/* -----------------------------------------------------
   MOBILE
----------------------------------------------------- */
@media (max-width: 768px) {
    .features { flex-direction: column; gap: 14px; }
    nav a { margin-left: 12px; font-size: 14px; }
    .hero-title { font-size: 26px; }
}
