/* The Payout Strategy - Dark Theme CSS Styling */

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

:root {
    --background-color: #0a0a0a;
    --text-color: #f0f0f0;
    --primary-color: #00ff88;
    --secondary-color: #88ffaa;
    --accent-color: #ff6b35;
    --container-bg: #1a1a1a;
    --input-bg: #2a2a2a;
    --button-bg: #00ff88;
    --button-hover-bg: #00cc6a;
    --footer-text: #888;
    --success-color: #28a745;
    --error-color: #dc3545;
    --section-bg: #151515;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, var(--background-color) 0%, #1a1a1a 100%);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header and Navigation */
.company-header {
    background-color: var(--container-bg);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.company-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.company-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.company-logo:hover {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

header {
    background-color: var(--container-bg);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container .logo {
    margin-right: 2rem;
}

.nav-container .logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-container .logo h1:hover {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    margin: 20px 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 255, 136, 0.1);
}

.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(0, 255, 136, 0.2);
}

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

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    user-select: none;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ccc;
    font-weight: 400;
    line-height: 1.5;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #ccc;
    font-weight: 400;
    line-height: 1.5;
}

.company-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Forms */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px; /* Increased from 30px */
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form input[type="email"] {
    padding: 18px 24px;
    border: 2px solid var(--input-bg);
    background-color: var(--input-bg);
    color: var(--text-color);
    border-radius: 12px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.waitlist-form input[type="email"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
    background-color: rgba(42, 42, 42, 0.8);
}

.waitlist-form button {
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--button-bg), var(--secondary-color));
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 8px;
}

.waitlist-form button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.waitlist-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Content Sections */
.content-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-container {
    background-color: var(--section-bg);
    border-radius: 16px;
    padding: 30px 40px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content {
    background-color: var(--container-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: 900px;
    margin: 40px auto;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.legal-page {
    background: transparent;
    padding: 2rem 0;
    min-height: 60vh;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #ddd;
}

ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #ccc;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Warning and Alert Boxes */
.warning-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
    color: #ff6b35;
    font-weight: 600;
}

.warning-box aside {
    font-size: 1.1rem;
    line-height: 1.6;
}

.warning-box strong {
    color: #ffeb3b;
    font-weight: 700;
}

aside {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    color: #ff6b35;
    font-weight: 600;
}

aside strong {
    color: #ff6b35;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background-color: var(--container-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--footer-text);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: var(--footer-text);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--footer-text);
}

/* Contact Email */
.contact-email-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-email-card {
    background: var(--container-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    text-align: center;
}

.contact-email-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-email-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.email-contact-btn {
    background: linear-gradient(135deg, var(--button-bg), var(--secondary-color));
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.email-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
    text-decoration: none;
    color: #000;
}

.email-alternative {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

.email-alternative strong {
    color: var(--primary-color);
}

.contact-info {
    margin-top: 3rem;
}

.info-section {
    background: var(--section-bg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.info-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.company-info {
    margin-top: 3rem;
    background: var(--section-bg);
    padding: 2rem;
    border-radius: 12px;
}

.company-details p {
    margin-bottom: 0.5rem;
    color: #ddd;
}

/* Tools Page */
.tools-section {
    padding: 4rem 0;
    background: transparent;
}

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

.tool-card {
    background: var(--container-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
}

.tool-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tool-status {
    margin-top: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.coming-soon {
    background: var(--accent-color);
    color: white;
}

.waitlist-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--section-bg);
    border-radius: 12px;
}

.important-notice {
    padding: 4rem 0;
    background: rgba(255, 107, 53, 0.1);
}

.notice-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--container-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.notice-content h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.notice-content ul {
    margin: 1.5rem 0;
}

.notice-content li {
    margin-bottom: 0.8rem;
    color: #ccc;
}

/* Easter Egg */
.easter-egg {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--container-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    z-index: 1000;
    text-align: center;
    max-width: 450px;
    border: 2px solid var(--primary-color);
}

.easter-egg input {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    background-color: var(--input-bg);
    color: var(--text-color);
    width: 100%;
    box-sizing: border-box;
}

.easter-egg button {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    background-color: var(--button-bg);
    color: #000;
    cursor: pointer;
    margin-right: 10px;
    font-weight: 600;
}

.easter-egg button:hover {
    background-color: var(--button-hover-bg);
}

/* Subscription Promo */
.subscription-promo {
    margin: 40px auto; /* Top/Bottom: 40px, Left/Right: auto for centering */
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(136, 255, 170, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    text-align: center; /* Center content */
    max-width: 800px; /* Prevent excessive stretching */
    display: block; /* Ensure block-level for proper centering */
}

.promo-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.exclusive-offer {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.offer-text {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    text-align: center;
}

.promo-text {
    font-size: 1.1rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.promo-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: start;
}

.email-promo {
    background-color: rgba(26, 26, 26, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    max-width: 400px; /* Reduced from 500px to match waitlist-form */
    margin: 0 auto;
    text-align: center;
}

.youtube-promo {
    background-color: rgba(26, 26, 26, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.youtube-promo h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.youtube-promo p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.youtube-channels {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.channel-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: rgba(42, 42, 42, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Messages */
#message {
    margin-top: 20px;
    font-weight: bold;
    min-height: 1.5em;
}

.success {
    color: var(--success-color);
}

.error {
    color: var(--error-color);
}

/* Cloudflare Turnstile */
.cf-turnstile {
    margin: 15px auto;
    display: flex;
    justify-content: center;
}

.incentive-text {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 20px;
        margin: 20px auto;
    }
    
    .promo-buttons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
}