@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Orbitron:wght@400;700;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 420px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }
        
        @media (min-width: 768px) {
            .container {
                max-width: 450px;
                margin: 20px auto;
                border-radius: 20px;
            }
        }
        
        .header {
            background: linear-gradient(45deg, #4f46e5, #7c3aed, #06b6d4, #10b981);
            background-size: 400% 400%;
            animation: gradientShift 4s ease-in-out infinite;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            animation: rotate 8s linear infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .header h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8em;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }
        
        .header .subtitle {
            font-size: 1.1em;
            color: rgba(255,255,255,0.95);
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .profile-section {
            padding: 40px 25px;
            background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
            position: relative;
        }
        
        .profile-card {
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }
        
        .profile-card:hover {
            transform: translateY(-5px);
        }
        
        .profile-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(45deg, #4f46e5, #7c3aed);
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            color: white;
            font-weight: 900;
            animation: pulse 2s ease-in-out infinite;
            border: 4px solid #06b6d4;
            box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .name {
            font-size: 1.6em;
            font-weight: 900;
            color: #1e40af;
            margin-bottom: 5px;
        }
        
        .title {
            font-size: 1.1em;
            color: #7c3aed;
            font-weight: 700;
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            margin: 25px 0;
            padding: 20px;
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            border-radius: 15px;
            color: white;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4em;
            font-weight: 900;
            display: block;
        }
        
        .stat-label {
            font-size: 0.8em;
            opacity: 0.9;
            margin-top: 5px;
        }
        
        .image-gallery {
            padding: 40px 25px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .image-gallery h2 {
            text-align: center;
            font-size: 1.8em;
            font-weight: 900;
            color: #1e40af;
            margin-bottom: 30px;
            position: relative;
        }
        
        .image-gallery h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #06b6d4, #10b981);
            border-radius: 2px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .gallery-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            aspect-ratio: 4/3;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #06b6d4, #10b981);
            color: white;
            font-size: 1.2em;
            font-weight: 700;
            text-align: center;
            padding: 20px;
            min-height: 120px;
        }
        
        .features {
            padding: 40px 25px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .features h2 {
            text-align: center;
            font-size: 1.8em;
            font-weight: 900;
            color: #1e40af;
            margin-bottom: 30px;
            position: relative;
        }
        
        .features h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #06b6d4, #10b981);
            border-radius: 2px;
        }
        
        .feature-grid {
            display: grid;
            gap: 20px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border-left: 5px solid #06b6d4;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(6,182,212,0.1), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
        }
        
        .feature-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            display: block;
        }
        
        .feature-title {
            font-size: 1.3em;
            font-weight: 900;
            color: #1e40af;
            margin-bottom: 10px;
        }
        
        .feature-desc {
            color: #475569;
            line-height: 1.6;
            font-weight: 400;
        }
        
        .testimonials {
            padding: 40px 25px;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        }
        
        .testimonials h2 {
            text-align: center;
            font-size: 1.8em;
            font-weight: 900;
            color: #1e40af;
            margin-bottom: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4em;
            color: #06b6d4;
            font-weight: 900;
        }
        
        .testimonial-text {
            color: #475569;
            line-height: 1.6;
            margin-bottom: 15px;
            font-style: italic;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: #7c3aed;
            text-align: right;
        }
        
        .methodology {
            padding: 40px 25px;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
            color: white;
        }
        
        .methodology h2 {
            text-align: center;
            font-size: 1.8em;
            font-weight: 900;
            margin-bottom: 30px;
        }
        
        .method-steps {
            display: grid;
            gap: 20px;
        }
        
        .method-step {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .step-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 2em;
            font-weight: 900;
            color: #06b6d4;
            margin-bottom: 10px;
        }
        
        .step-title {
            font-size: 1.2em;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .step-desc {
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .benefits {
            padding: 40px 25px;
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
        }
        
        .benefits h3 {
            text-align: center;
            font-size: 1.6em;
            font-weight: 900;
            color: #065f46;
            margin-bottom: 25px;
        }
        
        .benefit-list {
            space-y: 15px;
        }
        
        .benefit-item {
            background: white;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
            border-left: 4px solid #10b981;
        }
        
        .benefit-item:hover {
            transform: translateX(5px);
        }
        
        .benefit-icon {
            font-size: 1.8em;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .benefit-text {
            font-weight: 700;
            color: #065f46;
        }
        
        .cta-section {
            padding: 50px 25px;
            background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
            text-align: center;
            color: white;
        }
        
        .cta-title {
            font-size: 2.2em;
            font-weight: 900;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .cta-subtitle {
            font-size: 1.2em;
            margin-bottom: 20px;
            opacity: 0.9;
            font-weight: 700;
        }
        
        .limited {
            background: rgba(255,215,0,0.2);
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .limited-text {
            font-size: 1.4em;
            font-weight: 900;
            animation: blink 1.5s infinite;
            color: #ffd700;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.7; }
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ffd700, #ff8c42);
            color: #8b4513;
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.3em;
            font-weight: 900;
            margin: 20px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 3px solid #ffd700;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }
        
        .footer {
            background: #8b4513;
            color: white;
            padding: 30px 25px;
            text-align: center;
        }
        
        .footer-text {
            opacity: 0.8;
            line-height: 1.6;
        }
        
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,215,0,0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        .circle1 {
            width: 60px;
            height: 60px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .circle2 {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }
        
        .circle3 {
            width: 40px;
            height: 40px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        .floating-button-container {
            position: fixed;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 1000;
            pointer-events: none;
            }
            @keyframes bounce {
            0%, 100% {
            transform: translateY(0);
            }
            50% {
            transform: translateY(-10px);
            }
            }
            .floating-button {
            position: relative;
            background: #05C705;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: bounce 2s infinite;
            transition: all 0.3s ease;
            white-space: nowrap;
            pointer-events: auto;
            }
            
            .floating-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            }
            
            .floating-button .icon {
            font-size: 24px;
            }
            
            @media (max-width: 768px) {
            .floating-button-container {
            bottom: 20px;
            }
            
            .floating-button {
            font-size: 16px;
            padding: 12px 24px;
            }
            }
            
            @media (max-width: 480px) {
            .floating-button {
            font-size: 14px;
            padding: 10px 20px;
            }
            
            .floating-button .icon {
            font-size: 18px;
            }
            }