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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --success: #059669;
    --success-light: #d1fae5;
    --danger: #dc2626;
    --danger-light: #fee2e2;
    --warning: #d97706;
    --warning-light: #fef3c7;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
    background: var(--gray-50);
    font-size: 15px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main-content {
    padding-bottom: 80px;
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.navbar-brand {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.navbar-nav {
    display: flex;
    gap: 0.125rem;
    list-style: none;
    align-items: center;
}

.navbar-nav a {
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.375rem 0.625rem;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.15s;
}

.navbar-nav a:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.navbar-nav .btn-primary {
    color: white;
    background: var(--primary);
    padding: 0.375rem 0.875rem;
}

.navbar-nav .btn-primary:hover {
    background: var(--primary-dark);
}

.nav-toggle-btn {
    background: var(--gray-100) !important;
    border: 1px solid var(--gray-300) !important;
    border-radius: 0.375rem !important;
    font-size: 0.75rem !important;
    padding: 0.25rem 0.625rem !important;
    color: var(--gray-600) !important;
    font-weight: 600 !important;
}

.nav-toggle-btn:hover {
    background: var(--gray-200) !important;
    color: var(--gray-900) !important;
}

/* Auth Dropdown */
.auth-dropdown {
    position: relative;
}

.auth-dropdown-btn {
    background: transparent;
    border: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.375rem 0.625rem;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.15s;
}

.auth-dropdown-btn:hover {
    color: var(--gray-900);
}

.auth-dropdown-btn.btn.btn-primary {
    color: white;
}

.auth-dropdown-btn.btn.btn-primary:hover {
    color: white;
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
}

.profile-btn {
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.15s;
}

.profile-btn:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 140px;
    display: none;
    z-index: 200;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
}

.dropdown-menu a:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

.dropdown-menu a:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 0.5rem 0;
    z-index: 100;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gray-500);
    font-size: 0.625rem;
    font-weight: 500;
    padding: 0.25rem;
}

.mobile-nav-item svg {
    width: 20px;
    height: 20px;
    margin-bottom: 0.125rem;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-sm {
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 2.5rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 1.25rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-dark);
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-hero-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-hero-secondary:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
}

/* Trust Strip */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    opacity: 0.7;
}

.trust-strip span::before {
    content: "✓ ";
    color: #10b981;
}

/* How It Works */
.how-it-works {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    margin-top: -1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.step h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--gray-900);
}

.step p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Verification Ladder */
.verification-section {
    padding: 2rem 0;
    background: var(--gray-50);
}

.ladder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.ladder-step {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.25rem;
    text-align: center;
}

.ladder-step-final {
    border-color: var(--success);
    background: linear-gradient(to bottom, white, #f0fdf4);
}

.ladder-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.ladder-step-final .ladder-day {
    color: var(--success);
}

.ladder-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.ladder-step p {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Features Section */
.features-section {
    padding: 2rem 0;
}

.feature-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.25rem;
    border: 1px solid var(--gray-200);
}

.feature-header {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-list {
    list-style: none;
    margin-bottom: 1rem;
}

.feature-list li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--gray-600);
    font-size: 0.8125rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
}

.cta-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Filter Bar */
.filter-bar {
    margin-bottom: 1rem;
}

.filter-chips {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.filter-chip {
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.15s;
}

.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.sort-dropdown select {
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    border-radius: 0.25rem;
}

/* Guest Banner */
.guest-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-100);
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.guest-cta-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
    margin-top: 1rem;
}

.guest-cta-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guest-cta-card p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.guest-cta-card .btn-primary {
    background: white;
    color: var(--primary-dark);
}

/* Picks Feed */
.picks-feed {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.pick-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
}

.pick-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.pick-capper-info {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.pick-capper-name {
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
    font-size: 0.8125rem;
}

.pick-capper-name:hover {
    color: var(--primary);
}

.pick-selection {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    line-height: 1.2;
}

.pick-meta {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.pick-odds, .pick-units {
    font-weight: 600;
    color: var(--gray-700);
}

.pick-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: var(--gray-400);
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-100);
}

.pick-locked, .pick-grade {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pick-notes {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    padding-top: 0.625rem;
    border-top: 1px solid var(--gray-100);
}

/* Capper/Marketplace Grid */
.capper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
}

.capper-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.capper-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.625rem;
}

.capper-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.capper-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
    margin-bottom: 0.625rem;
    padding: 0.625rem;
    background: var(--gray-50);
    border-radius: 0.25rem;
}

.capper-stat {
    text-align: center;
}

.capper-stat-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
}

.capper-stat-label {
    font-size: 0.5625rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.capper-focus {
    font-size: 0.6875rem;
    color: var(--gray-500);
    margin-bottom: 0.375rem;
}

.capper-bio {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    flex-grow: 1;
    line-height: 1.4;
}

.capper-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.capper-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
}

.tag-style {
    background: #eff6ff;
    color: var(--primary);
}

.tag-sports {
    background: var(--gray-100);
    color: var(--gray-700);
}

.apply-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.apply-cta p {
    color: var(--gray-500);
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

/* Sportsbooks */
.state-indicator {
    background: var(--gray-100);
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
}

.state-selector-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.state-selector-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.state-selector-card > p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.state-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.state-btn {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.state-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.sportsbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.sportsbook-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.sportsbook-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sportsbook-offer {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Cards */
.card {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    padding: 1rem;
    margin-bottom: 0.625rem;
}

.card-header {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-900);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--gray-500);
}

/* Forms */
.form-group {
    margin-bottom: 0.875rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-700);
    font-size: 0.8125rem;
}

.form-control {
    width: 100%;
    padding: 0.5rem 0.625rem;
    font-size: 0.875rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    transition: all 0.15s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.625rem center;
    background-size: 0.875rem;
    padding-right: 2rem;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    background: var(--gray-100);
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.8125rem;
}

.checkbox-item input {
    margin: 0;
}

/* Tables */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 0.5rem 0.625rem;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.8125rem;
}

th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

tr:hover {
    background: var(--gray-50);
}

/* Alerts */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}

.alert-success {
    background: var(--success-light);
    color: #065f46;
}

.alert-error {
    background: var(--danger-light);
    color: #991b1b;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.375rem;
    font-size: 0.625rem;
    font-weight: 600;
    border-radius: 0.1875rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.badge-lg {
    padding: 0.1875rem 0.5rem;
    font-size: 0.6875rem;
}

.badge-pending {
    background: var(--gray-200);
    color: var(--gray-600);
}

.badge-win {
    background: var(--success-light);
    color: var(--success);
}

.badge-loss {
    background: var(--danger-light);
    color: var(--danger);
}

.badge-push {
    background: var(--warning-light);
    color: var(--warning);
}

.badge-verified {
    background: #dbeafe;
    color: #1e40af;
}

.badge-30day {
    background: var(--warning-light);
    color: var(--warning);
}

.badge-provisional {
    background: var(--gray-200);
    color: var(--gray-600);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.stat-card {
    background: white;
    padding: 0.875rem;
    border-radius: 0.375rem;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    color: var(--gray-500);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 0.125rem;
}

/* Page Header */
.page-header {
    padding: 1.25rem 0;
    margin-bottom: 0.75rem;
}

.page-header h1 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.page-header p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 0.75rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Promo Grid (legacy) */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
}

.promo-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.promo-card h3 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.promo-card p {
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    flex-grow: 1;
    font-size: 0.8125rem;
}

/* Feed (legacy) */
.feed-item {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 0.625rem;
    border: 1px solid var(--gray-200);
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.feed-capper {
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
}

.feed-time {
    font-size: 0.6875rem;
    color: var(--gray-400);
}

.feed-pick {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.feed-details {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Footer */
.site-footer {
    padding: 1.25rem 0;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.6875rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--gray-500); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.mt-1 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 1.25rem; }
.mb-1 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.75rem; }
.mb-3 { margin-bottom: 1.25rem; }
.mb-4 { margin-bottom: 1.5rem; }
.py-2 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .navbar-nav.desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: flex !important;
        justify-content: space-around;
    }
    
    .main-content {
        padding-bottom: 70px;
    }
    
    .hero {
        padding: 2rem 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.875rem;
    }
    
    .trust-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        text-align: left;
        font-size: 0.6875rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ladder-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.25rem;
    }
    
    .guest-banner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .filter-chips {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
    }
    
    .filter-chip {
        flex-shrink: 0;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

/* ========== NEW LANDING PAGE STYLES ========== */

/* Landing Hero */
.landing-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 5rem 0;
    text-align: center;
}

.landing-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--primary);
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Trust Section */
.trust-section {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.25rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card, .solution-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.problem-card {
    border-left: 4px solid var(--danger);
}

.solution-card {
    border-left: 4px solid var(--success);
}

.problem-icon, .solution-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.problem-card h3, .solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-card ul, .solution-card ul {
    list-style: none;
    padding: 0;
}

.problem-card li, .solution-card li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.problem-card li:last-child, .solution-card li:last-child {
    border-bottom: none;
}

/* Features Section Landing */
.features-section-landing {
    padding: 4rem 0;
    background: white;
}

.feature-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 2rem;
}

.feature-box-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    border-color: var(--primary);
}

.feature-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-box-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
}

.feature-tag {
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-tag-alt {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-box p {
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-checklist li {
    padding: 0.4rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.feature-checklist li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Verification Section Landing */
.verification-section-landing {
    padding: 4rem 0;
    background: var(--gray-50);
}

.verification-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-left: 3px solid var(--gray-300);
    padding-left: 2rem;
    position: relative;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 1.5rem;
    width: 13px;
    height: 13px;
    background: white;
    border: 3px solid var(--gray-400);
    border-radius: 50%;
}

.timeline-step-final::before {
    border-color: var(--success);
    background: var(--success);
}

.timeline-step-final {
    border-left-color: var(--success);
}

.timeline-marker {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 60px;
}

.timeline-content h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Sportsbook CTA Section */
.sportsbook-cta-section {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.sportsbook-cta-content {
    text-align: center;
}

.sportsbook-cta-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sportsbook-cta-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.sportsbook-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.sportsbook-logo-item {
    background: var(--gray-100);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.final-cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.final-cta-buttons {
    margin-bottom: 1.5rem;
}

.capper-apply-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.capper-apply-link a {
    color: white;
    text-decoration: underline;
}

/* ========== BET TRACKING INFO PAGE ========== */

.tracker-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    padding: 4rem 0;
    text-align: center;
}

.tracker-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.tracker-hero .hero-subtitle {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.tracker-preview {
    padding: 4rem 0;
    background: white;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.preview-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.preview-content p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.preview-features {
    list-style: none;
    padding: 0;
}

.preview-features li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

/* Mockup Card */
.mockup-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mockup-header {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mockup-stat {
    text-align: center;
}

.mockup-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.mockup-value.positive {
    color: var(--success);
}

.mockup-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 80px;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--success) 0%, #10b981 100%);
    border-radius: 0.25rem 0.25rem 0 0;
}

/* Tracker Features */
.tracker-features {
    padding: 4rem 0;
    background: var(--gray-50);
}

.tracker-features h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.feature-item .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Sportsbook Section */
.sportsbook-section {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid var(--gray-200);
}

.sportsbook-section h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sportsbook-section .section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.sportsbook-offers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sportsbook-offer {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.25rem;
    text-align: center;
}

.sportsbook-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.sportsbook-bonus {
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Tracker CTA */
.tracker-cta {
    padding: 4rem 0;
    background: var(--gray-50);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
}

.cta-box h2 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

/* Responsive for Landing */
@media (max-width: 768px) {
    .landing-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        font-size: 0.75rem;
    }
    
    .problem-grid,
    .feature-boxes,
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .sportsbook-offers {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}
