@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;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: 400px;
    margin: 0 auto;
    background: white;
    position: relative;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .container {
        max-width: 400px;
        margin: 20px auto;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        min-height: calc(100vh - 40px);
    }
}

/* Header Section */
.hero {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid white;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff9a56, #ffad56);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-img.placeholder {
    background: linear-gradient(45deg, #ff9a56, #ffad56);
}

.hero h1 {
    color: white;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 30px 20px;
    background: white;
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 3;
}

.stat-item {
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    font-size: 24px;
    font-weight: 900;
    color: #ff6b6b;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

/* Content Sections */
.section {
    padding: 30px 20px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9ff, #e8ecff);
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #ff6b6b;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.feature-title {
    font-weight: 700;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Community Benefits */
.benefit-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    animation: slideInLeft 0.6s ease-out;
}

.benefit-item:last-child {
    border-bottom: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-weight: 700;
    color: #333;
    font-size: 14px;
    margin-bottom: 3px;
}

.benefit-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    margin: 0 -20px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '✨';
    position: absolute;
    font-size: 60px;
    opacity: 0.1;
    top: -10px;
    right: -10px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.1; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 0.2; }
}

.vip-title {
    font-size: 20px;
    font-weight: 900;
    color: #b8860b;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.vip-desc {
    text-align: center;
    color: #8b7355;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

/* CTA Button */
.cta-section {
    padding: 30px 20px 40px;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.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(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Floating Animation */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Professional Photo Section */
.professional-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.professional-photo:hover {
    transform: scale(1.02);
}
.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;
    }
    }