/* The Football Effect - Modern Website Styles */

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5f3f;
    --accent-color: #4a9d5f;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-tagline {
    margin-top: 40px;
    font-size: 1.2rem;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-light);
}

.back-link {
    margin-top: 60px;
    text-align: center;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: var(--accent-color);
}

/* Error Pages */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.error-actions {
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.copyright {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.separator {
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

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

/* Hero Minimal */
.hero-minimal {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.hero-content-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-image {
    margin-bottom: 40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Placeholder styles for images */
.placeholder-image,
.placeholder-panel {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e0e0 100%);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
}

.placeholder-image p,
.placeholder-panel p {
    font-weight: 600;
    margin-bottom: 10px;
}

.placeholder-image small,
.placeholder-panel small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.placeholder-panel {
    padding: 100px 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.subheading {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Preview Section */
.preview-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.preview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.panel {
    text-align: center;
}

.panel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.panel img:hover {
    transform: scale(1.02);
}

.panel-caption {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About Story */
.about-story {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.about-story h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
}

/* Product Details */
.product-details {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.product-details h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.product-details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: 1.05rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Creator Section */
.creator-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.creator-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.creator-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Buy Section */
.buy-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.buy-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.buy-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
}

.price-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-buy {
    display: inline-block;
    padding: 15px 50px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.email-signup {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.email-input {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    flex: 1;
    max-width: 300px;
}

.btn-notify {
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-notify:hover {
    background-color: var(--secondary-color);
}

.btn-notify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.signup-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
}

.signup-message.success {
    background-color: rgba(74, 157, 95, 0.2);
    color: #2d5f3f;
    border: 1px solid rgba(74, 157, 95, 0.4);
}

.signup-message.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #c82333;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .logline {
        font-size: 1.8rem;
    }
    
    .subheading {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
    }
    
    .email-signup {
        flex-direction: column;
    }
    
    .email-input {
        max-width: 100%;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logline {
        font-size: 1.5rem;
    }
    
    .subheading {
        font-size: 1rem;
    }
    
    .buy-box {
        padding: 40px 20px;
    }
    
    .price {
        font-size: 2rem;
    }
}

/* ============================================
   COMING SOON PAGE STYLES
   ============================================ */

.coming-soon-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px 20px;
}

.coming-soon-content {
    text-align: center;
    color: white;
    max-width: 600px;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.coming-soon-tagline {
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.notify-section {
    margin-top: 60px;
}

.notify-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.email-signup-inline {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.email-input-inline {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.btn-notify-inline {
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-notify-inline:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-notify-inline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.signup-message-cs {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    text-align: center;
}

.signup-message-cs.success {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.signup-message-cs.error {
    background-color: rgba(220, 53, 69, 0.3);
    color: #ffdddd;
    border: 1px solid rgba(220, 53, 69, 0.5);
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.2rem;
    }
    
    .coming-soon-tagline {
        font-size: 1.5rem;
        padding: 15px 30px;
    }
    
    .email-signup-inline {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .coming-soon-tagline {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}
