:root {
    --primary-red: #ff0000;
    --primary-yellow: #ffff00;
    --primary-orange: #ff6600;
    --dark-red: #cc0000;
    --black: #000000;
    --white: #ffffff;
    --gray: #666666;
}

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

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.8;
    color: var(--black);
    background-color: #fffef0;
}

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

/* Emergency Header */
.emergency-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.big-product-name {
    font-size: 42px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: inline-block;
    margin: 5px 0;
    animation: none !important;
}

.super-emergency-header {
    background: #000;
    color: #ffff00;
    padding: 15px 0;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border-top: 3px solid #ff0000;
    border-bottom: 3px solid #ff0000;
}

.super-blink {
    animation: none;
}

@keyframes super-blink {
    0%, 49% { opacity: 1; color: #ffff00; }
    50%, 100% { opacity: 0.1; color: #ff0000; }
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.red {
    color: var(--primary-red);
    font-weight: bold;
    background: var(--primary-yellow);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, #fff5e5 0%, #ffe0b2 100%);
    padding: 30px 0;
    text-align: center;
    border-bottom: 5px solid var(--primary-orange);
}

.site-title {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--dark-red);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.secret-text {
    font-size: 16px;
    color: #666;
    background: #ffff99;
    padding: 2px 10px;
    display: inline-block;
    margin-top: 10px;
    border: 1px dashed #ff0000;
}

.yellow-marker {
    background: linear-gradient(transparent 60%, var(--primary-yellow) 60%);
    padding: 0 5px;
}

.countdown-timer {
    background: var(--black);
    color: var(--primary-yellow);
    padding: 15px;
    display: inline-block;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
}

.timer {
    font-size: 36px;
    font-family: 'Arial Black', sans-serif;
}

/* Video Commercial Section */
.video-commercial {
    padding: 40px 0;
    background: #f0f0f0;
    border-bottom: 3px solid var(--primary-orange);
}

.video-placeholder {
    text-align: center;
    background: white;
    border: 2px dashed var(--primary-orange);
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder p {
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: 20px;
}



/* Shocking Facts Section */
.shocking-facts {
    padding: 60px 0;
    background: #fff;
}

.impact-title {
    font-size: 36px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 40px;
}

.red-bg {
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    display: inline-block;
}

.huge {
    font-size: 48px;
    color: var(--primary-red);
    font-weight: bold;
}

.shock-text {
    display: inline-block;
    font-size: 36px;
    color: #ff0000;
    background: #ffff00;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 0 10px;
    transform: rotate(-5deg);
    animation: shake-shock 1s infinite;
    font-weight: bold;
}

.shock-text2 {
    display: inline-block;
    font-size: 32px;
    color: #0066ff;
    background: #ff99cc;
    padding: 5px 15px;
    border-radius: 15px;
    margin: 0 10px;
    transform: rotate(8deg);
    animation: bounce-shock 1.5s infinite;
    font-weight: bold;
}

.shock-text3 {
    display: inline-block;
    font-size: 28px;
    color: #00cc00;
    background: #ffcc99;
    padding: 5px 15px;
    border-radius: 25px;
    margin: 0 10px;
    transform: rotate(-3deg);
    animation: wiggle-shock 2s infinite;
    font-weight: bold;
}

@keyframes shake-shock {
    0%, 100% { transform: rotate(-5deg) translateX(0); }
    25% { transform: rotate(-5deg) translateX(-3px); }
    75% { transform: rotate(-5deg) translateX(3px); }
}

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

@keyframes wiggle-shock {
    0%, 100% { transform: rotate(-3deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(2deg); }
}

.checklist {
    background: #fffbf0;
    border: 3px solid var(--primary-orange);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.checklist h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark-red);
}

.danger-title {
    animation: flash 1s infinite;
    font-size: 28px !important;
}

@keyframes flash {
    0%, 100% { color: #ff0000; }
    50% { color: #ff6600; }
}

.danger-tag {
    background: #ff0000;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    animation: pulse-red 1s infinite;
}

@keyframes pulse-red {
    0% { background: #ff0000; }
    50% { background: #cc0000; }
    100% { background: #ff0000; }
}

.checklist ul {
    list-style: none;
    font-size: 20px;
}

.checklist li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.checklist li:before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.warning-text {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
    font-weight: bold;
    white-space: nowrap;
}

/* Solution Intro */
.solution-intro {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff 0%, #f0f9ff 100%);
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid var(--primary-orange);
    margin: 0 auto 30px;
}

.solution-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

.yellow-bg {
    background: var(--primary-yellow);
    padding: 5px 15px;
    display: inline-block;
}

.product-intro {
    text-align: center;
    padding: 40px;
    background: linear-gradient(45deg, #fff 25%, #fffaf0 25%, #fffaf0 50%, #fff 50%, #fff 75%, #fffaf0 75%);
    background-size: 20px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 50px rgba(255,102,0,0.3);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border: 5px solid #ff6600;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 50px rgba(255,102,0,0.3); }
    50% { box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 80px rgba(255,102,0,0.6); }
}

.miracle-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 50%;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.product-logo {
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.product-name {
    font-size: 48px;
    background: linear-gradient(45deg, #ff0000, #ff6600, #ffff00, #ff6600, #ff0000);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: bold;
    animation: gradient-move 3s ease infinite;
    text-shadow: 0 0 30px rgba(255,0,0,0.5);
    transform: perspective(500px) rotateY(-5deg);
    white-space: nowrap;
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.awards {
    margin-top: 20px;
    padding: 15px;
    background: #ffff99;
    border: 2px dashed #ff6600;
    border-radius: 10px;
}

.awards p {
    margin: 5px 0;
    font-weight: bold;
    color: #cc0000;
}

.product-tagline {
    font-size: 20px;
    color: var(--gray);
    white-space: nowrap;
}

/* Testimonials */
.testimonials-urgent {
    padding: 60px 0;
    background: #fffef5;
}

.section-title-urgent {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.handwriting {
    font-family: 'Klee', 'ヒラギノ丸ゴ ProN', sans-serif;
    color: var(--dark-red);
}

.testimonial-box {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-item {
    background: white;
    border: 3px solid var(--primary-orange);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.user-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray);
    flex-shrink: 0;
}

.user-name {
    font-weight: bold;
    color: var(--dark-red);
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
}

.shocking-reveal {
    display: block;
    background: #ffff00;
    color: #ff0000;
    padding: 5px;
    margin-top: 10px;
    font-weight: bold;
    border: 2px solid #ff0000;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.marker {
    background: linear-gradient(transparent 60%, var(--primary-yellow) 60%);
    padding: 0 3px;
}

.stars {
    color: var(--primary-orange);
    font-size: 20px;
    margin-top: 10px;
}

.testimonial-note {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-top: 20px;
}

/* Scientific Backing */
.scientific-backing {
    padding: 60px 0;
    background: #f0f8ff;
}

.scientific-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.badge {
    background: var(--dark-red);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 18px;
}

.doctor-comment {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gray);
}

.doctor-name {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--dark-red);
}

.highlight {
    color: var(--primary-red);
    font-weight: bold;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reason-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.reason-number {
    background: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Comparison Table */
.comparison {
    padding: 60px 0;
    background: #fff;
}

.comparison-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 2px solid #eee;
}

.comparison-table th {
    background: var(--dark-red);
    color: white;
    font-size: 18px;
}

.comparison-table td {
    font-size: 16px;
}

.highlight-row {
    background: #fffbf0;
    font-weight: bold;
}

.highlight-row td {
    border: 3px solid var(--primary-orange);
}

/* Limited Offer */
.limited-offer {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5e5 0%, #ffe0b2 100%);
}

.offer-box {
    background: white;
    border: 5px solid var(--primary-red);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.offer-title {
    font-size: 36px;
    color: var(--dark-red);
    margin-bottom: 30px;
}

.price-box {
    background: #fffef0;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.original-price {
    font-size: 24px;
    color: var(--gray);
    margin-bottom: 10px;
}

.strike {
    text-decoration: line-through;
}

.special-price {
    font-size: 28px;
    color: var(--dark-red);
}

.huge-price {
    font-size: 72px;
    color: var(--primary-red);
    font-weight: bold;
    line-height: 1;
}

.free-text {
    font-size: 32px;
    color: var(--primary-red);
    font-weight: bold;
}

.bonus-section {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.bonus-section h3 {
    font-size: 24px;
    color: var(--dark-red);
    margin-bottom: 20px;
}

.bonus-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.bonus-list li {
    margin-bottom: 15px;
    font-size: 18px;
}

.super-bonus-title {
    font-size: 32px !important;
    color: #ff0000;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: zoom 1s ease-in-out infinite;
}

@keyframes zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bonus-new {
    background: #00ff00 !important;
    color: #000 !important;
    animation: blink 0.5s infinite;
}

.bonus-secret {
    background: #000 !important;
    color: #ffff00 !important;
    border: 2px solid #ff0000;
    animation: secret-pulse 1s infinite;
}

@keyframes secret-pulse {
    0%, 100% { box-shadow: 0 0 5px #ff0000; }
    50% { box-shadow: 0 0 20px #ff0000; }
}

.bonus-total {
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

.huge-red {
    font-size: 48px;
    color: #ff0000;
    animation: throb 0.5s infinite;
}

@keyframes throb {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.media-coverage {
    background: #f0f0f0;
    border: 3px solid #ff6600;
    padding: 30px;
    margin-top: 30px;
    border-radius: 15px;
}

.coverage-title {
    font-size: 28px;
    color: #cc0000;
    margin-bottom: 20px;
    text-align: center;
}

.media-list p {
    font-size: 18px;
    margin: 10px 0;
    padding-left: 20px;
    font-weight: bold;
}

.celebrity-endorsement {
    background: linear-gradient(135deg, #ffff99 0%, #fffaf0 100%);
    padding: 30px;
    margin-top: 40px;
    border-radius: 15px;
    border: 3px solid #ff0000;
}

.celeb-title {
    font-size: 28px;
    text-align: center;
    color: #cc0000;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.celebrity-endorsement p {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.celebrity-endorsement small {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.bonus-badge {
    background: var(--primary-orange);
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-right: 10px;
}

.cta-button-huge {
    background: linear-gradient(135deg, #ff6600 0%, #ff0000 100%);
    color: white;
    padding: 30px 60px;
    font-size: 24px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
    transition: all 0.3s;
    margin-bottom: 20px;
}

.cta-button-huge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,0,0,0.4);
}

.button-sub {
    font-size: 16px;
    opacity: 0.9;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.remaining {
    font-size: 20px;
    color: var(--dark-red);
    font-weight: bold;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: #f9f9f9;
}

.faq-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    font-size: 20px;
    color: var(--dark-red);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 18px;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #fffef0 100%);
    text-align: center;
}

.final-title {
    font-size: 36px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.guarantee-box {
    background: var(--primary-yellow);
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto 40px;
    border: 3px solid var(--primary-orange);
}

.guarantee-box h3 {
    font-size: 28px;
    color: var(--dark-red);
    margin-bottom: 10px;
}

.guarantee-box small {
    font-size: 12px;
    color: var(--gray);
}

.final-cta-button {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: white;
    padding: 30px 60px;
    font-size: 22px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,255,0,0.3);
    transition: all 0.3s;
    margin-bottom: 40px;
}

.final-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,255,0,0.4);
}

.button-main {
    font-size: 24px;
    font-weight: bold;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.badge-img {
    height: 50px;
    background: #ddd;
    padding: 10px;
    border-radius: 5px;
}

/* Footer */
footer {
    background: var(--black);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-button {
    background: var(--primary-red);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(255,0,0,0.3);
}

.floating-button span {
    font-size: 14px;
    display: block;
}

/* Extra suspicious elements */
.product-logo {
    width: 400px;
    height: 200px;
    background: linear-gradient(135deg, #ff6600 0%, #ff0000 100%);
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
    box-shadow: 0 0 30px rgba(255,0,0,0.3);
    position: relative;
    border: 5px solid #fff;
    text-align: center;
    line-height: 1.2;
}

.product-logo::after {
    content: "最新技術";
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ff0000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    transform: rotate(15deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 24px;
    }
    
    .impact-title {
        font-size: 28px;
    }
    
    .huge {
        font-size: 36px;
    }
    
    .testimonial-item {
        flex-direction: column;
    }
    
    .doctor-comment {
        flex-direction: column;
        text-align: center;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .huge-price {
        font-size: 48px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}