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

:root {
    --primary: #000000;
    --secondary: #666666;
    --accent: #FF4500;
    --bg: #FFFFFF;
    --border: #E5E5E5;
    --hover: #F5F5F5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
}

.logo-text {
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.buy-button {
    background: var(--primary);
    color: var(--bg) !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
}

.buy-button:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.emoji-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.emoji-large {
    font-size: 80px;
    animation: bounce 2s infinite;
}

.emoji-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    animation: bounce 2s infinite;
}

.emoji-plus, .emoji-equals {
    font-size: 40px;
    font-weight: bold;
    color: var(--secondary);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 40px;
}

.contract-box {
    background: var(--hover);
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contract-box label {
    display: block;
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

#contract {
    flex: 1;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    word-break: break-all;
}

.copy-btn {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.copy-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: var(--hover);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

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

.prophecy-text p {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.prophecy-text .emphasis {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 30px;
}

/* Features */
.features {
    padding: 80px 0;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--hover);
    border-radius: 16px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-emoji {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--secondary);
}

/* How to Buy */
.how-to-buy {
    padding: 80px 0;
    background: var(--hover);
}

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

.step-item {
    background: var(--bg);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 18px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-item p {
    color: var(--secondary);
}

.buy-cta {
    text-align: center;
    margin-top: 40px;
}

.big-buy-btn {
    display: inline-block;
    padding: 20px 60px;
    background: var(--primary);
    color: var(--bg);
    font-size: 24px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.big-buy-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Community */
.community {
    padding: 80px 0;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.social-card {
    background: var(--hover);
    padding: 40px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--primary);
    text-align: center;
    transition: all 0.3s;
    min-width: 200px;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.social-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.social-card p {
    color: var(--secondary);
}

.disclaimer {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 30px;
    background: #FFF5F5;
    border: 1px solid #FFD0D0;
    border-radius: 12px;
    text-align: center;
}

.disclaimer p {
    color: var(--secondary);
    margin-bottom: 10px;
}

.disclaimer p:first-child {
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--primary);
    color: var(--bg);
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .emoji-large {
        font-size: 50px;
    }

    .hero-title {
        font-size: 48px;
    }

    .contract-wrapper {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}