:root {
    --bg-dark-primary: #0a0c14;
    --bg-dark-secondary: #131722;
    --bg-dark-tertiary: #1b2030;
    
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    
    --color-gold-light: #ffe082;
    --color-gold-dark: #b8860b;
    --color-gold-gradient: linear-gradient(135deg, #ffe082 0%, #ffb300 50%, #b8860b 100%);
    
    --color-line-green: #06c755;
    --color-line-glow: rgba(6, 199, 85, 0.4);
    --color-line-gradient: linear-gradient(135deg, #09e864 0%, #06c755 100%);
    
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #000000;
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.lp-container {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-dark-primary) 0%, var(--bg-dark-secondary) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 480px) {
    .lp-container {
        max-width: 450px;
        margin: 0 auto;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}


.header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 12, 20, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 900;
    color: var(--color-gold-light);
    letter-spacing: 0.15em;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-main {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.badge-official {
    background: rgba(6, 199, 85, 0.1);
    border: 1px solid var(--color-line-green);
    color: var(--color-line-green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.hero-section {
    padding: 30px 20px;
    text-align: center;
    flex-grow: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--color-gold-gradient);
    color: #000;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 900;
    padding: 3px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 21px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.highlight-gold {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 179, 0, 0.2);
}

.highlight-line {
    color: #00ff66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
    font-weight: 900;
}

.image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-fluid-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-wrapper {
    margin-bottom: 35px;
}

.achievement-image-wrapper {
    margin-top: 20px;
    margin-bottom: 35px;
}

.step-image-wrapper {
    margin-bottom: 35px;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.step-image-wrapper img {
    border: 2px solid var(--color-gold-light);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(255, 224, 130, 0.2);
}

.step-image-wrapper img:last-child {
    margin-bottom: 0;
}

.action-area {
    padding: 0 5px;
    margin-bottom: 35px;
}

.action-lead {
    font-size: 12px;
    color: var(--color-gold-light);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.last-action {
    margin-top: 10px;
    margin-bottom: 15px;
}

.cta-button-line {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-line-gradient);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 8px 25px var(--color-line-glow), 0 0 0 1px rgba(255,255,255,0.1) inset;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s infinite;
}

.cta-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text {
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-button-line:hover, .cta-button-line:active {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(6, 199, 85, 0.6);
}

.security-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 10px;
}

.footer {
    background: #06070a;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 10px;
    color: #667085;
}

.disclaimer-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: left;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav a {
    color: #98a2b3;
    text-decoration: none;
    transition: color 0.2s;
}

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

.copyright {
    text-align: center;
    font-size: 9px;
    color: #475467;
}

.blur-container {
    position: relative;
    overflow: hidden;
}

.blur-target {
    filter: blur(1.5px);
    transform: scale(1.005);
    user-select: none;
    pointer-events: none;
}

.blur-overlay-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 20, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.blur-overlay-label span {
    background: var(--color-gold-gradient);
    color: #000000;
    font-size: 14px;
    font-weight: 900;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 179, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.15);
    letter-spacing: 0.05em;
    animation: pulseLabel 2s infinite;
}

@keyframes pulseLabel {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 12px 25px rgba(255, 179, 0, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(6, 199, 85, 0.7), 0 0 15px rgba(6, 199, 85, 0.4);
    }
    100% {
        box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
    }
}

@media (max-width: 414px) {
    .hero-title {
        font-size: 19px;
        line-height: 1.45;
        margin-bottom: 25px;
    }
    .cta-button-line {
        font-size: 14px;
        padding: 14px 20px;
    }
    .cta-icon {
        width: 22px;
        height: 22px;
        margin-right: 8px;
    }
    .blur-overlay-label span {
        font-size: 12px;
        padding: 8px 18px;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 17px;
        line-height: 1.4;
    }
    .cta-button-line {
        font-size: 12px;
        padding: 12px 14px;
    }
    .cta-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
    .blur-overlay-label span {
        font-size: 11px;
        padding: 6px 14px;
    }
}

/* Contact Form Styles */
.contact-form-area {
    background: rgba(19, 23, 34, 0.8);
    border: 3px solid var(--color-gold-light);
    border-radius: 12px;
    padding: 25px 20px;
    margin-top: 10px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 224, 130, 0.3);
}

.form-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-gold-light);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.form-desc {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-form-area form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.contact-form-area label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    padding-left: 4px;
    text-align: left;
    display: block;
}

.contact-form-area input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 15px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form-area input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form-area input:focus {
    outline: none;
    border-color: var(--color-gold-light);
    box-shadow: 0 0 0 2px rgba(255, 224, 130, 0.2);
}

.contact-form-area button[type="submit"] {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    margin-bottom: 20px;
}

.contact-form-area button[type="submit"] img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-form-area button[type="submit"]:hover, 
.contact-form-area button[type="submit"]:active {
    transform: scale(1.03);
    opacity: 0.9;
}

.cta-notes {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
}

.cta-notes p {
    margin-bottom: 5px;
}

.cta-notes p:last-child {
    margin-bottom: 0;
}

