/* Prevent Content Flickering - Force Visibility */
html, body, *, *:before, *:after {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Contract Address Section */
.contract-section {
    background: #f7931a;
    padding: 8px 0;
    position: relative;
    z-index: 110;
}

.contract-field {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.contract-field label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.contract-field input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
    min-width: 300px;
    text-align: center;
}

.contract-field input::placeholder {
    color: #666;
    font-style: italic;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    color: #f7931a;
    margin-left: 24px;
}

.nav-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 32px;
    margin-right: 24px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #f7931a;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f7931a 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #f7931a;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background: #e8850e;
}

.btn-secondary {
    background: transparent;
    color: #f7931a;
    border: 2px solid #f7931a;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-x {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: white;
    text-decoration: none;
    border: 2px solid #000000;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-x:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-x svg {
    transition: transform 0.2s ease;
}

.btn-x:hover svg {
    transform: scale(1.1);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(247, 147, 26, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.overlay-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 48px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 32px;
    border-radius: 12px;
    background: #fafafa;
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f7931a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #fafafa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Market Section */
.market-section {
    padding: 80px 0;
    background: white;
}

.roast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.roast-item {
    background: #fafafa;
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.roast-item:hover {
    transform: translateY(-2px);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.crypto-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.crypto-claim {
    font-style: italic;
    color: #666;
    margin-bottom: 12px;
}

.reality-check {
    color: #f7931a;
    font-weight: 500;
}

.roast-meter {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    margin-top: 16px;
    overflow: hidden;
}

.roast-fill {
    height: 100%;
    background: linear-gradient(90deg, #f7931a 0%, #ff6b35 100%);
    transition: width 1s ease;
}

/* Meme Section */
.meme-section {
    padding: 80px 0;
    background: #fafafa;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.meme-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.meme-card:hover {
    transform: translateY(-2px);
}

.meme-scenario {
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.meme-responses {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.response {
    padding: 16px;
    border-radius: 8px;
    position: relative;
}

.response.altcoin {
    background: #f5f5f5;
    color: #666;
}

.response.bitcoin {
    background: linear-gradient(135deg, #f7931a 0%, #ff8844 100%);
    color: white;
    font-weight: 600;
}

/* Chad Facts */
.chad-facts {
    padding: 80px 0;
    background: white;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.fact-card {
    background: #fafafa;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease;
}

.fact-card:hover {
    transform: translateY(-2px);
}

.fact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.fact-text {
    color: #666;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7931a 0%, #ff8844 100%);
    color: white;
    text-align: center;
}

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

.quote p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.quote cite {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    font-size: 1.5rem;
}

.footer-disclaimer {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #f7931a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    background: #e8850e;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contract-field {
        flex-direction: column;
        gap: 8px;
    }
    
    .contract-field input {
        min-width: 250px;
        font-size: 0.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

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

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

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

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

    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .quote p {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contract-field input {
        min-width: 200px;
        width: 90%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 16px;
    }

    .btn-primary, .btn-secondary, .btn-x {
        width: 100%;
        margin-bottom: 8px;
        justify-content: center;
    }
} 