:root {
    --neon-green: #00ff41;
    --dark-green: #003b00;
    --bg-black: #050505;
    --glass: rgba(0, 20, 0, 0.7);
}

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

body {
    background-color: var(--bg-black);
    color: var(--neon-green);
    font-family: 'Share Tech Mono', monospace;
    overflow-x: hidden;
}

/* Background Canvas */
#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, #000 90%);
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.8);
    border-bottom: 1px solid var(--neon-green);
    position: fixed;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: bold;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
}

nav a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.highlight {
    color: #fff;
    text-shadow: 0 0 5px #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    position: relative;
    color: #fff;
    text-shadow: 0 0 20px var(--neon-green);
}

.subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Stats */
.stats-container {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-box {
    border: 1px solid var(--neon-green);
    padding: 20px 40px;
    background: var(--glass);
    box-shadow: 0 0 15px var(--dark-green);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.cta-btn-large {
    padding: 15px 40px;
    background: var(--neon-green);
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--neon-green);
    transition: 0.3s;
}

.cta-btn-large:hover {
    background: #fff;
    box-shadow: 0 0 40px var(--neon-green);
}

.cta-btn-small {
    border: 1px solid var(--neon-green);
    padding: 8px 20px;
    color: var(--neon-green) !important;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-small:hover {
    background: var(--neon-green);
    color: #000 !important;
}

/* AI Models Section */
.models-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.85);
    border-top: 1px solid #333;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.model-card {
    background: var(--glass);
    border: 1px solid #222;
    padding: 30px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.model-card:hover {
    border-color: var(--neon-green);
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);
    transform: translateY(-5px);
}

.model-card .icon {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.model-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.model-card p {
    color: #aaa;
    line-height: 1.5;
    font-size: 0.95rem;
}

.model-card p strong {
    color: #fff;
}

/* Performance & Track Record Section */
.performance-section {
    padding: 100px 20px;
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid #333;
}

.performance-summary {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.summary-item {
    background: #111;
    border: 1px solid #333;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
}

.summary-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
}

.summary-value.positive {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.table-container {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    overflow-x: auto;
    border: 1px solid var(--neon-green);
    background: var(--glass);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

.ledger-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.ledger-table th {
    background: rgba(0, 255, 65, 0.1);
    color: #fff;
    padding: 15px;
    font-weight: normal;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--neon-green);
}

.ledger-table td {
    padding: 15px;
    border-bottom: 1px solid #222;
    color: #ccc;
}

/* NEW: Blurring specific columns in the verified ledger */
.ledger-table tbody td:nth-child(1), /* Date */
.ledger-table tbody td:nth-child(2), /* Sport */
.ledger-table tbody td:nth-child(3), /* Matchup */
.ledger-table tbody td:nth-child(4)  /* AI Model Pick */ {
    filter: blur(4px);
    user-select: none; /* Prevents selecting blurred text */
    pointer-events: none;
}

.ledger-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.result-win {
    color: var(--neon-green) !important;
    font-weight: bold;
}

.result-loss {
    color: #ff0041 !important;
    font-weight: bold;
}

.btn-container {
    text-align: center;
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #000;
    border-top: 1px solid var(--neon-green);
    border-bottom: 1px solid var(--neon-green);
    padding: 10px 0;
}

.ticker {
    display: flex;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    margin-right: 50px;
    font-size: 1.1rem;
}

.win { color: var(--neon-green); }
.loss { color: #ff0041; }

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* NEW: FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.85);
    border-top: 1px solid #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    border: 1px solid #222;
    margin-bottom: 15px;
    padding: 25px;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-answer {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    text-align: center;
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid var(--neon-green);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.price-card {
    background: var(--glass);
    border: 1px solid #333;
    padding: 40px;
    width: 300px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 1px solid var(--neon-green);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: #000;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    margin: 20px 0;
    color: #fff;
}

.period { font-size: 1rem; color: #888; }

ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes the TOS checkbox down */
}

ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* TOS Checkbox Wrapper in Pricing Cards */
.tos-wrapper {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    font-size: 0.8rem;
    color: #aaa;
}

.tos-wrapper input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--neon-green);
}

.tos-wrapper a {
    color: var(--neon-green);
    text-decoration: none;
    transition: 0.3s;
}

.tos-wrapper a:hover {
    text-decoration: underline;
    color: #fff;
}

/* Button & Disabled States */
button {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    font-family: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover:not(:disabled) {
    background: var(--neon-green);
    color: #000;
}

button:disabled {
    border-color: #333;
    color: #555;
    cursor: not-allowed;
    background: transparent;
}

/* Footer Styles */
footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid #333;
    color: #666;
}

.footer-links {
    margin-top: 15px;
    font-size: 0.85rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
    margin: 0 5px;
}

.footer-links a:hover {
    color: var(--neon-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .stats-container { flex-direction: column; gap: 20px; }
    .hero { height: auto; padding-bottom: 50px; }
    .pricing-grid { flex-direction: column; align-items: center; }
    .models-grid { grid-template-columns: 1fr; }
    header { padding: 15px; flex-direction: column; gap: 10px; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    nav a { margin: 0; }
}
/* Comparison Section */
.comparison-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.9);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid #222;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #222;
}

.comparison-table th {
    background: #111;
    color: #888;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.comparison-table td {
    color: #ccc;
    font-size: 1rem;
}

/* Highlighting the AI Column */
.highlight-col {
    color: var(--neon-green) !important;
    border-left: 1px solid var(--neon-green) !important;
    border-right: 1px solid var(--neon-green) !important;
    background: rgba(0, 255, 65, 0.03);
}

th.highlight-col {
    background: rgba(0, 255, 65, 0.1) !important;
    color: #fff !important;
    text-shadow: 0 0 10px var(--neon-green);
}

.comparison-table tr:last-child td.highlight-col {
    border-bottom: 1px solid var(--neon-green) !important;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.8rem;
    }
    .comparison-table th, .comparison-table td {
        padding: 10px 5px;
    }
}
