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

body {
    font-family: 'Arial', sans-serif;
    background-color: #020817;
    color: #f8fafc;
    line-height: 1.6;
}

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

/* Header Image Section */
.header-image {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
}

.header-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Pump.fun Button */
.pump-fun-container {
    background-color: #0f172a;
    text-align: center;
    padding: 25px 0;
    border-bottom: 3px solid #10b981;
}

.pump-fun-button {
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    color: #10b981;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    border: 3px solid #10b981;
    background-color: #1e293b;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.pump-fun-button:hover {
    background-color: #10b981;
    color: #0f172a;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}

/* Terms Acceptance Modal */
.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.terms-modal-content {
    background-color: #0f172a;
    border: 3px solid #0ea5e9;
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    color: #f8fafc;
}

.terms-modal-content h2 {
    color: #0ea5e9;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.terms-modal-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f8fafc;
}

.terms-checkbox-container {
    margin: 30px 0;
    text-align: left;
}

.terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
    color: #f8fafc;
}

.terms-checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #0ea5e9;
    background-color: #1e293b;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    border-radius: 3px;
}

.terms-checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #0ea5e9;
}

.terms-checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0f172a;
    font-weight: bold;
    font-size: 14px;
}

.terms-text {
    flex: 1;
}

.terms-text a {
    color: #0ea5e9;
    text-decoration: underline;
}

.terms-text a:hover {
    color: #38bdf8;
}

.terms-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.accept-button, .decline-button {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: 3px solid;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accept-button {
    background-color: #0ea5e9;
    color: #0f172a;
    border-color: #0ea5e9;
}

.accept-button:hover:not(:disabled) {
    background-color: #38bdf8;
    border-color: #38bdf8;
    transform: scale(1.05);
}

.accept-button:disabled {
    background-color: #64748b;
    border-color: #64748b;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.decline-button {
    background-color: transparent;
    color: #ef4444;
    border-color: #ef4444;
}

.decline-button:hover {
    background-color: #ef4444;
    color: #0f172a;
    transform: scale(1.05);
}

/* Site Content Hidden State */
.site-content-hidden {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

/* Terms of Service Link */
.terms-link-container {
    background-color: #0f172a;
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #334155;
}

.terms-link {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #0ea5e9;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 30px;
    border: 3px solid #0ea5e9;
    background-color: #1e293b;
    transition: all 0.3s ease;
}

.terms-link:hover {
    background-color: #0ea5e9;
    color: #0f172a;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background-color: #0f172a;
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid #334155;
    border-top: 2px solid #334155;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    color: #0ea5e9;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 28px;
    color: #f8fafc;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-subtext {
    background-color: #1e293b;
    padding: 20px;
    border: 2px solid #334155;
}

.hero-subtext p {
    font-size: 18px;
    margin-bottom: 15px;
}

.scroll-hint {
    color: #3b82f6;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Problem Section */
.problem {
    background-color: #0f172a;
    background-image: url('https://i.postimg.cc/c1kj3KGZ/grift-1.png');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid #334155;
    border-bottom: 2px solid #334155;
}

.problem h2 {
    font-size: 36px;
    color: #0ea5e9;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.problem-list {
    max-width: 600px;
    margin: 0 auto 30px;
}

.problem-item {
    background-color: #1e293b;
    border: 2px solid #334155;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    text-align: left;
}

.problem-result {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #334155;
    margin-top: 30px;
}

/* Story Section */
.story {
    background-color: #020817;
    padding: 50px 0;
    border-top: 2px solid #334155;
    border-bottom: 2px solid #334155;
}

.story h2 {
    text-align: center;
    font-size: 32px;
    color: #0ea5e9;
    margin-bottom: 40px;
}

.story-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.story-image {
    background-color: #1e293b;
    color: #94a3b8;
    text-align: center;
    padding: 60px 20px;
    border: 2px solid #334155;
    font-size: 12px;
    min-width: 300px;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Discovery Section */
.discovery {
    background-color: #0f172a;
    background-image: url('https://i.postimg.cc/zGpb01zC/grift2.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid #334155;
    border-bottom: 2px solid #334155;
}

.discovery h2 {
    font-size: 34px;
    color: #0ea5e9;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.discovery-content p {
    font-size: 20px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.revelation-box {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 30px;
    border: 2px solid #334155;
    margin-top: 40px;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px #3b82f6; }
    to { box-shadow: 0 0 15px #3b82f6; }
}

.revelation-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Testimonials Section */
.testimonials {
    background-color: #020817;
    padding: 50px 0;
    border-top: 2px solid #334155;
    border-bottom: 2px solid #334155;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    color: #0ea5e9;
    margin-bottom: 40px;
}

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

.testimonial {
    background-color: #1e293b;
    padding: 25px;
    border: 2px solid #334155;
    text-align: center;
}

.testimonial-image {
    background-color: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 30px 10px;
    border: 2px solid #334155;
    font-size: 10px;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.testimonial cite {
    color: #3b82f6;
    font-weight: bold;
    font-style: normal;
}

/* Method Section */
.method {
    background-color: #0f172a;
    background-image: url('https://i.postimg.cc/mg4p77kc/grift3.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 50px 0;
    border-top: 2px solid #334155;
    border-bottom: 2px solid #334155;
}

.method h2 {
    text-align: center;
    font-size: 36px;
    color: #0ea5e9;
    margin-bottom: 50px;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #1e293b;
    padding: 30px;
    border: 2px solid #334155;
}

.step-number {
    background-color: #3b82f6;
    color: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    border: 2px solid #334155;
}

.step-content h3 {
    font-size: 22px;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    color: #94a3b8;
}

/* Urgency Section */
.urgency {
    background-color: #020817;
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid #334155;
    border-bottom: 2px solid #334155;
}

.urgency h2 {
    font-size: 32px;
    color: #0ea5e9;
    margin-bottom: 30px;
    animation: shake 0.5s infinite alternate;
}

@keyframes shake {
    0% { transform: translateX(-2px); }
    100% { transform: translateX(2px); }
}

.urgency-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.countdown-box {
    background-color: #1e293b;
    padding: 30px;
    border: 2px solid #334155;
    margin-top: 30px;
    animation: pulse 1.5s infinite;
}

.countdown-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Value Stack Section */
.value-stack {
    background-color: #0f172a;
    background-image: url('[VALUE STACK BACKGROUND - 1400x600px]');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 50px 0;
    border-top: 2px solid #334155;
    border-bottom: 2px solid #334155;
}

.value-stack h2 {
    text-align: center;
    font-size: 32px;
    color: #0ea5e9;
    margin-bottom: 40px;
}

.value-items {
    margin-bottom: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #1e293b;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid #334155;
}

.value-price {
    background-color: #334155;
    color: #ffffff;
    padding: 15px 20px;
    border: 2px solid #475569;
    font-size: 20px;
    font-weight: bold;
    text-decoration: line-through;
    flex-shrink: 0;
}

.value-description h3 {
    color: #0ea5e9;
    font-size: 20px;
    margin-bottom: 5px;
}

.value-description p {
    color: #94a3b8;
    font-size: 16px;
}

.total-value {
    text-align: center;
    background-color: #1e293b;
    color: #f8fafc;
    padding: 30px;
    border: 2px solid #334155;
    margin-top: 30px;
}

.original-price {
    font-size: 24px;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.today-price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.free {
    color: #3b82f6;
    font-size: 48px;
}

.why-free {
    font-size: 18px;
    font-weight: bold;
}

/* Final CTA Section */
.final-cta {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 60px 0;
    text-align: center;
    border-top: 2px solid #334155;
    border-bottom: 2px solid #334155;
}

.final-cta h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #0ea5e9;
}

.cta-urgency {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}

.cta-box {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 40px;
    border: 2px solid #334155;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0ea5e9;
}

.cta-button {
    display: block;
    background-color: #3b82f6;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 25px 40px;
    margin: 30px 0;
    border: 2px solid #334155;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #2563eb;
    box-shadow: 0 0 15px #3b82f6;
}

.cta-button small {
    font-size: 14px;
    text-transform: none;
    opacity: 0.9;
}

.disclaimer {
    margin-top: 30px;
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
}

.disclaimer a {
    color: #3b82f6;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Terms Modal */
.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.terms-modal-content {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 40px;
    border: 2px solid #334155;
    max-width: 500px;
    text-align: center;
}

.terms-modal-content h2 {
    color: #0ea5e9;
    margin-bottom: 20px;
}

.terms-checkbox-container {
    margin: 20px 0;
    text-align: left;
}

.terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.terms-text {
    font-size: 14px;
    line-height: 1.4;
}

.terms-text a {
    color: #3b82f6;
    text-decoration: underline;
}

.terms-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.accept-button, .decline-button {
    padding: 12px 24px;
    border: 2px solid #334155;
    background-color: #3b82f6;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.accept-button:disabled {
    background-color: #334155;
    cursor: not-allowed;
}

.decline-button {
    background-color: #64748b;
}

.site-content-hidden {
    display: none;
}

/* Header Image */
.header-image {
    text-align: center;
    background-color: #020817;
}

.header-img {
    max-width: 100%;
    height: auto;
    border-bottom: 2px solid #334155;
}

/* Terms Link */
.terms-link-container {
    text-align: center;
    background-color: #0f172a;
    padding: 10px 0;
    border-bottom: 2px solid #334155;
}

.terms-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.terms-link:hover {
    color: #3b82f6;
}

/* Footer */
footer {
    background-color: #020817;
    color: #64748b;
    text-align: center;
    padding: 30px 0;
    font-size: 12px;
    border-top: 2px solid #334155;
}

footer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero h2 { font-size: 20px; }
    
    .story-content {
        flex-direction: column;
        text-align: center;
    }
    
    .story-image {
        min-width: auto;
        width: 100%;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 20px 30px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 { font-size: 24px; }
    .hero h2 { font-size: 16px; }
    .hero-subtext { padding: 15px; }
    
    section { padding: 30px 0; }
    
    .problem h2, .story h2, .discovery h2, .method h2, .urgency h2, .value-stack h2 {
        font-size: 24px;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
}