/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    overflow: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* General Image Styles */
img {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
}

/* Force logo images to be small */
.logo img,
header .logo img,
.footer-brand .logo img {
    height: 30px !important;
    width: auto !important;
    max-width: 30px !important;
    max-height: 30px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #065f46;
    text-decoration: none;
    max-width: 250px !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 1 !important;
    white-space: nowrap !important;
}

.logo img {
    height: 30px !important;
    width: auto !important;
    max-width: 30px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer-brand .logo img {
    height: 25px;
    width: auto;
}

.header-cta {
    background: #065f46;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
    width: 120px;
    text-align: center;
}

.header-cta:hover {
    background: #047857;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    border-top: 1px solid #334155;
    padding-top: 20px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 300px;
    justify-content: center;
    min-height: 60px;
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        max-width: 350px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 55px;
    }
}

.btn-primary {
    background: #065f46;
    color: white;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #065f46;
    border: 2px solid #065f46;
}

.btn-secondary:hover {
    background: #065f46;
    color: white;
}



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

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    margin-top: 2rem;
}

.cta-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
    text-align: center;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #065f46, #047857);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 20px 40px rgba(6, 95, 70, 0.3);
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Proof Section */
.proof {
    padding: 80px 0;
    background: white;
    margin-top: 0;
}

.proof h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.proof-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
}

.proof-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #065f46, #047857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.proof-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.proof-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    color: white;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.results-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.results-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.result-item i {
    color: #065f46;
    font-size: 1.2rem;
}

/* Chart */
.chart-placeholder {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 1rem;
    height: 200px;
}

.chart-bar {
    width: 60px;
    background: linear-gradient(to top, #065f46, #047857);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.email-form {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.form-group input[type="email"] {
    flex: 1;
    max-width: 400px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input[type="email"]:focus {
    border-color: #065f46;
}

.form-note {
    font-size: 0.9rem;
    color: #6b7280;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.trust-item i {
    color: #065f46;
}

/* NFL Records Section */
.nfl-records {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.nfl-records-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nfl-records {
        padding: 5rem 2rem;
    }
    
    .nfl-records-card {
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
}

.nfl-records-header {
    text-align: center;
    margin-bottom: 30px;
}

.nfl-records-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.nfl-records-header p {
    font-size: 1rem;
    color: #64748b;
}

@media (min-width: 768px) {
    .nfl-records-header h3 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .nfl-records-header p {
        font-size: 1.1rem;
    }
}

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

.nfl-stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.nfl-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.25rem;
}

.nfl-stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

@media (min-width: 768px) {
    .nfl-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .nfl-stat {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .nfl-stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
    }
    
    .nfl-stat-label {
        font-size: 0.9rem;
    }
}

.nfl-summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.nfl-summary span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

@media (min-width: 768px) {
    .nfl-summary {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 0;
        margin-bottom: 2rem;
    }
    
    .nfl-summary span {
        font-size: 1.1rem;
        text-align: left;
    }
}

.nfl-view-picks {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #065f46;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 180px;
    justify-content: center;
}

.nfl-view-picks:hover {
    background: #047857;
}

.nfl-view-picks i {
    transition: transform 0.3s ease;
}

.nfl-view-picks:hover i {
    transform: translateX(3px);
}

.picks-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.picks-section.show {
    display: block !important;
}

.picks-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

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

.year-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f3f4f6;
    color: #374151;
    width: 100px;
    text-align: center;
}

.year-btn:hover {
    background: #e5e7eb;
}

.year-btn.active {
    background: #065f46;
    color: white;
}

@media (min-width: 768px) {
    .year-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .year-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        width: 140px;
    }
}

.picks-table-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .picks-table-container {
        border-radius: 15px;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        max-height: 400px;
    }
}

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

.picks-table th {
    background: #e2e8f0;
    padding: 0.5rem 0.25rem;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 2px solid #cbd5e1;
    font-size: 0.75rem;
}

.picks-table td {
    padding: 0.5rem 0.25rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .picks-table th {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .picks-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

.picks-table tr:hover {
    background: #f1f5f9;
}

.result-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.result-badge.win {
    background: #dcfce7;
    color: #166534;
}

.result-badge.loss {
    background: #fee2e2;
    color: #dc2626;
}

.result-badge.push {
    background: #f3f4f6;
    color: #6b7280;
}

.units-positive {
    color: #166534;
    font-weight: 600;
}

.units-negative {
    color: #dc2626;
    font-weight: 600;
}

.picks-summary {
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.picks-summary p {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Betting Tickets Section */
.betting-tickets {
    padding: 80px 0;
    background: white;
    color: #1e293b;
}

.betting-tickets .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.betting-tickets .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.betting-tickets .section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

/* Betting Tickets Masonry Layout */
.tickets-masonry {
    columns: 1;
    column-gap: 24px;
    max-width: 72rem;
    margin: 0 auto;
}

.ticket-item {
    break-inside: avoid;
    margin-bottom: 24px;
    display: block;
}

.ticket-container {
    background: #1f2937;
    border-radius: 8px;
    border: 2px solid #374151;
    overflow: hidden;
    transition: all 0.2s ease;
    transform: translateX(0);
}

.ticket-container:hover {
    border-color: #10b981;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
    transform: scale(1.05) translateX(-8px);
}

.ticket-image-wrapper {
    position: relative;
}

.ticket-image {
    width: 100%;
    height: auto;
    display: block;
}

.sharpside-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Responsive columns */
@media (min-width: 768px) {
    .tickets-masonry {
        columns: 2;
    }
}

@media (min-width: 1024px) {
    .tickets-masonry {
        columns: 3;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .results-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .nfl-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .nfl-summary {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .year-buttons {
        gap: 8px;
    }
    
    .year-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ticket-image-card {
        padding: 15px;
    }
    
    .ticket-overlay {
        top: 10px;
        right: 10px;
    }
    
    .sharpside-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .betting-tickets .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .proof h2,
    .results-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }
} 

/* Ad Copy Styling */
.ad-copy {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ad-section {
    margin-bottom: 2.5rem;
}

.ad-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ad-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ad-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1rem;
}

.stats-highlight {
    background: linear-gradient(135deg, #065f46, #047857);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem auto;
    text-align: center;
    width: 50%;
    max-width: 600px;
    border: 9px solid #065f46;
}

.highlight-number {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.1rem;
}

.features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.25rem;
    color: #065f46;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    color: #065f46;
    font-weight: 600;
}

.cta-highlight {
    background: linear-gradient(135deg, #065f46, #047857);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem auto;
    text-align: center;
    font-size: 1.1rem;
    width: 50%;
    max-width: 600px;
}

.cta-highlight strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .ad-copy {
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .ad-section h3 {
        font-size: 1.5rem;
    }
    
    .ad-section h4 {
        font-size: 1.25rem;
    }
    
    .ad-section p {
        font-size: 1rem;
    }
    
    .highlight-number {
        font-size: 1.75rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stats-highlight,
    .cta-highlight {
        width: 80%;
        max-width: none;
    }
} 

/* Email Form Button */
.email-form .btn {
    width: 200px;
    margin-left: 1rem;
} 

/* Guide Section */
.guide-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 0;
}

.guide-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guide-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.guide-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.25rem;
    text-align: left;
}

.guide-features {
    text-align: left;
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.guide-features li {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 0.75rem;
}

.guide-stats {
    background: linear-gradient(135deg, #065f46, #047857);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem auto;
    text-align: center;
    width: 50%;
    max-width: 600px;
    border: 9px solid #065f46;
}

.guide-stats p {
    text-align: center;
    margin-bottom: 0.5rem;
    color: white;
}

.guide-stats strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.25rem;
    color: white;
} 