/*
Theme Name: HandyBets Theme
Theme URI: https://handybets.com
Author: HandyBets
Author URI: https://handybets.com
Description: Premium sports picks and analytics theme with customizable branding, accent colors, and integrated plays page.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: handybets-theme
Tags: one-page, custom-colors, custom-logo, featured-images
*/

:root {
    --accent-color: #D95A11;
    --accent-hover: #c44e0e;
    --accent-rgb: 217, 90, 17;
    --dark-bg: #222222;
    --darker-bg: #1a1a1a;
    --darkest-bg: #151515;
    --text-light: #F2F2F2;
    --green-primary: #455918;
    --green-hover: #3a4c14;
    --sage: #B4C578;
    --sage-rgb: 180, 197, 120;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    background: rgba(var(--sage-rgb), 0.12);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}
.section-subtitle {
    font-size: 1.05rem;
    color: #aaa;
    max-width: 600px;
    margin-bottom: 48px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--accent-color);
    color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.35); }
.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { border-color: var(--accent-color); color: var(--accent-color); }
.btn-green {
    background: var(--green-primary);
    color: #fff;
}
.btn-green:hover { background: var(--green-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(69,89,24,0.35); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(34, 34, 34, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(20, 20, 20, 0.97); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover { color: var(--accent-color); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-actions .btn { padding: 8px 20px; font-size: 0.85rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-light); margin: 6px 0; transition: all 0.3s; }
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(20,20,20,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu .nav-actions { margin-top: 16px; flex-direction: column; }
.mobile-menu .nav-actions .btn { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34,34,34,0.95) 0%, rgba(34,34,34,0.7) 50%, rgba(69,89,24,0.3) 100%);
}
.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--accent-rgb), 0.15);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.hero-badge i { font-size: 0.7rem; }
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.hero h1 span { color: var(--accent-color); }
.hero h1 .green { color: var(--sage); }
.hero p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}
.hero-stat p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0;
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.hero-image-wrapper img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
}
.hero-floating-card {
    position: absolute;
    background: rgba(34, 34, 34, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-floating-card.card-1 {
    bottom: -20px;
    left: -30px;
}
.hero-floating-card.card-2 {
    top: 20px;
    right: -20px;
}
.hero-floating-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.icon-circle.orange { background: rgba(var(--accent-rgb),0.2); color: var(--accent-color); }
.icon-circle.green { background: rgba(69,89,24,0.2); color: var(--sage); }
.hero-floating-card .card-text h4 { font-size: 0.85rem; font-weight: 700; color: #fff; }
.hero-floating-card .card-text p { font-size: 0.75rem; color: #999; margin-bottom: 0; }

/* ===== SPORTS TICKER ===== */
.ticker-bar {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 14px 0;
    overflow: hidden;
}
.ticker-content {
    display: flex;
    gap: 48px;
    animation: ticker 30s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 0.85rem;
    color: #999;
}
.ticker-item i { color: var(--accent-color); font-size: 1rem; }
.ticker-item strong { color: var(--sage); }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
}
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-subtitle { margin-left: auto; margin-right: auto; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--sage));
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb),0.2); background: rgba(255,255,255,0.05); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.feature-icon.orange { background: rgba(var(--accent-rgb),0.15); color: var(--accent-color); }
.feature-icon.green { background: rgba(69,89,24,0.15); color: var(--sage); }
.feature-icon.sage { background: rgba(var(--sage-rgb),0.15); color: var(--sage); }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.feature-card p { font-size: 0.9rem; color: #999; line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    position: relative;
    background: var(--darker-bg);
}
.how-it-works-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.15;
}
.how-it-works-bg img { width: 100%; height: 100%; object-fit: cover; }
.how-it-works .container { position: relative; z-index: 1; }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-subtitle { margin-left: auto; margin-right: auto; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.step-card {
    text-align: center;
    padding: 40px 28px;
    background: rgba(34,34,34,0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(8px);
}
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--green-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
}
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step-card p { font-size: 0.9rem; color: #999; }

/* ===== SPORTS COVERED ===== */
.sports-covered {
    padding: 80px 0;
    background: var(--dark-bg);
}
.sports-header { text-align: center; margin-bottom: 48px; }
.sports-header .section-subtitle { margin-left: auto; margin-right: auto; }
.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sport-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.sport-card:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb),0.3); }
.sport-card i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}
.sport-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sport-card p { font-size: 0.8rem; color: #999; }

/* ===== PRICING ===== */
.pricing {
    padding: 100px 0;
    position: relative;
    background: var(--darker-bg);
}
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-subtitle { margin-left: auto; margin-right: auto; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}
.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 44px 36px;
    position: relative;
    transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(var(--accent-rgb),0.08), rgba(69,89,24,0.08));
}
.pricing-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 20px;
    border-radius: 20px;
}
.pricing-plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sage);
    margin-bottom: 16px;
}
.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 8px;
}
.pricing-price .currency { font-size: 1.4rem; font-weight: 700; color: #999; align-self: flex-start; margin-top: 8px; }
.pricing-price .amount { font-size: 3.2rem; font-weight: 900; color: #fff; line-height: 1; }
.pricing-price .period { font-size: 0.9rem; color: #999; margin-bottom: 6px; }
.pricing-desc { font-size: 0.85rem; color: #777; margin-bottom: 28px; }
.pricing-features { margin-bottom: 32px; }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #ccc;
}
.pricing-features li i { color: var(--sage); font-size: 0.85rem; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-guarantee {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: #999;
}
.pricing-guarantee i { color: var(--sage); margin-right: 6px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--dark-bg);
}
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-subtitle { margin-left: auto; margin-right: auto; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-2px); border-color: rgba(var(--accent-rgb),0.2); }
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.testimonial-stars i { color: var(--accent-color); font-size: 0.85rem; }
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--green-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.testimonial-author-info h4 { font-size: 0.9rem; font-weight: 700; color: #fff; }
.testimonial-author-info p { font-size: 0.8rem; color: #777; margin-bottom: 0; }

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--darker-bg);
}
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-header .section-subtitle { margin-left: auto; margin-right: auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #eee;
    transition: color 0.2s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--accent-color); }
.faq-question i { font-size: 0.8rem; color: var(--accent-color); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: #999;
    line-height: 1.7;
}

/* ===== SUBSCRIBE (SUBSTACK) ===== */
.subscribe {
    padding: 80px 0;
    background: var(--dark-bg);
}
.subscribe-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(var(--accent-rgb),0.1), rgba(69,89,24,0.1));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 56px 48px;
}
.subscribe-box .section-label { margin-bottom: 16px; }
.subscribe-box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.subscribe-box p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 32px;
}
.subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
}
.subscribe-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.subscribe-form input::placeholder { color: #777; }
.subscribe-form input:focus { border-color: var(--accent-color); }
.subscribe-form .btn { white-space: nowrap; }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69,89,24,0.9), rgba(34,34,34,0.95));
}
.cta-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.cta-section h2 span { color: var(--accent-color); }
.cta-section p {
    font-size: 1.05rem;
    color: #ccc;
    max-width: 560px;
    margin: 0 auto 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: #888; line-height: 1.7; max-width: 280px; }
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.footer-socials a:hover { background: var(--accent-color); color: #fff; }
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: #888;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-color); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #666; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: #666; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent-color); }

/* ===== CONTACT WIDGET ===== */
.contact-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}
.contact-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.4);
    transition: all 0.3s ease;
}
.contact-toggle:hover { transform: scale(1.1); }
.contact-toggle .fa-times { display: none; }
.contact-widget.active .contact-toggle .fa-comment-dots { display: none; }
.contact-widget.active .contact-toggle .fa-times { display: block; }
.contact-panel {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 340px;
    background: var(--darker-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.95);
    transition: all 0.3s ease;
}
.contact-widget.active .contact-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.contact-panel-header {
    background: linear-gradient(135deg, var(--accent-color), var(--green-primary));
    padding: 24px;
}
.contact-panel-header h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-panel-header p { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.contact-panel-body { padding: 24px; }
.contact-field { margin-bottom: 16px; }
.contact-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 6px;
}
.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--accent-color); }
.contact-field textarea { height: 80px; resize: none; }
.contact-panel-body .btn { width: 100%; justify-content: center; }

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: var(--darkest-bg);
    padding: 20px 0;
    text-align: center;
}
.disclaimer p {
    font-size: 0.7rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .sports-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .hamburger { display: block; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .sports-grid { grid-template-columns: repeat(2, 1fr); }
    .subscribe-form { flex-direction: column; }
    .subscribe-box { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-panel { width: calc(100vw - 48px); right: -12px; }
}

/* ===== PLAY BUTTON ===== */
.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0;
    transition: all 0.3s ease;
}
.play-btn:hover { color: var(--accent-color); }
.play-btn:hover .play-circle { background: var(--accent-color); border-color: var(--accent-color); transform: scale(1.1); }
.play-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}
.play-circle i { font-size: 1rem; margin-left: 3px; }
.play-circle-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-rgb),0.3);
    animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}
.video-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.6);
    background: #000;
    animation: modal-in 0.3s ease;
}
@keyframes modal-in {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
}
.video-modal-close:hover { background: var(--accent-color); border-color: var(--accent-color); }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PLAYS PAGE ===== */
.plays-page { padding: 100px 0 60px; }
.plays-header { text-align: center; margin-bottom: 48px; }
.plays-header .section-subtitle { margin-left: auto; margin-right: auto; }
.plays-section { margin-bottom: 64px; }
.plays-section h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.plays-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.play-card {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 20px 24px; transition: all 0.2s ease;
}
.play-card:hover { border-color: rgba(var(--accent-rgb), 0.2); transform: translateY(-2px); }
.play-sport-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(var(--accent-rgb), 0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--accent-color); flex-shrink: 0;
}
.play-info { flex: 1; }
.play-info h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.play-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: #999; }
.play-meta span { display: inline-flex; align-items: center; gap: 4px; }
.play-status { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.play-status--win { background: rgba(69, 89, 24, 0.2); color: var(--sage); }
.play-status--loss { background: rgba(220, 38, 38, 0.15); color: #ef4444; }
.play-status--pending { background: rgba(var(--accent-rgb), 0.15); color: var(--accent-color); }
.play-status--push, .play-status--draw, .play-status--void { background: rgba(255,255,255,0.1); color: #999; }
.play-status--in-progress { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

/* Locked overlay for non-logged-in */
.plays-grid { position: relative; }
.plays-blurred { filter: blur(8px); pointer-events: none; user-select: none; }
.plays-locked-overlay {
    position: absolute; inset: 0; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    background: rgba(34, 34, 34, 0.5); border-radius: 16px;
}
.plays-locked-content {
    text-align: center; padding: 40px;
    background: rgba(34, 34, 34, 0.9); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
}
.plays-locked-content h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.plays-locked-content p { font-size: 0.9rem; color: #999; margin-bottom: 24px; }
.plays-date-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #999; margin-bottom: 4px; }
.play-description { font-size: 0.8rem; color: #777; margin-top: 4px; }
@media (max-width: 768px) {
    .play-card { flex-direction: column; align-items: flex-start; }
    .play-status { align-self: flex-start; }
}
