
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    
    overflow-x: hidden;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 60px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(15,23,42,0.6) 0%, rgba(30,41,59,0.6) 30%, rgba(51,65,85,0.6) 70%, rgba(71,85,105,0.6) 100%),
        url('../image/bgc.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    padding: 50px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(59,130,246,0.2);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(59,130,246,0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59,130,246,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(59,130,246,0); }
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.4;
}

.cta-button {
    background: linear-gradient(45deg, #dc2626, #ef4444, #f97316);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(220,38,38,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(220,38,38,0.4);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 26px;
    font-weight: 900;
    color: #1e40af;
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

/* Profile Section */
.profile {
    padding: 50px 20px;
    background: white;
}

.section-title {
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 35px;
    color: #1e40af;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 5px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.profile-card {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30,64,175,0.2);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: profileFloat 6s ease-in-out infinite;
}

@keyframes profileFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, -25px) rotate(180deg); }
}

.profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255,255,255,0.2);
}

.profile-name {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.profile-title {
    font-size: 15px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.achievements {
    display: grid;
    gap: 18px;
    margin-top: 25px;
}

.achievement-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 25px;
    border-radius: 18px;
    border-left: 6px solid #3b82f6;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.achievement-title {
    font-size: 17px;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 10px;
}

.achievement-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Image Text Modules Section */
.image-text-modules {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.module-container {
    max-width: 100%;
    margin: 0 auto;
}

.image-text-module {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.image-text-module:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.image-text-module:nth-child(even) {
    flex-direction: column-reverse;
}

.module-image {
    height: 200px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.module-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="moduleGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23moduleGrid)" /></svg>');
    opacity: 0.3;
}

.image-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
}

.image-icon {
    font-size: 48px;
    color: white;
}

.module-content {
    padding: 35px 30px;
}

.module-title {
    font-size: 22px;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 15px;
    line-height: 1.3;
}

.module-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.module-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

.module-achievements {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.achievement-badge {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 5px 15px rgba(30,64,175,0.2);
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30,64,175,0.3);
}

/* Community Features */
.features {
    padding: 50px 20px;
    background: white;
}

.feature-grid {
    display: grid;
    gap: 25px;
    margin-top: 35px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 19px;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Exclusive Benefits */
.benefits {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 18px;
    border-left: 6px solid #3b82f6;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-item:hover {
    transform: translateX(12px);
    box-shadow: 0 10px 30px rgba(59,130,246,0.15);
}

.benefit-title {
    font-size: 17px;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefit-title::before {
    content: '💎';
    margin-right: 12px;
    font-size: 20px;
}

.benefit-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Join Section */
.join-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="joinGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23joinGrid)" /></svg>');
}

.join-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 18px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.join-subtitle {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.join-button {
    background: linear-gradient(45deg, #dc2626, #ef4444, #f97316);
    color: white;
    padding: 22px 45px;
    border: none;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(220,38,38,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.join-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.join-button:hover::before {
    left: 100%;
}

.join-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(220,38,38,0.4);
}

.limited-time {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 18px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.2);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stock-ticker {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #10b981;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.stock-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0f172a, transparent 10%, transparent 90%, #0f172a);
    z-index: 1;
}

.ticker-content {
    display: inline-block;
    animation: ticker 10s linear infinite;
    font-weight: 500;
    position: relative;
    z-index: 0;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Enhanced animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 22px;
    }
}
.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;
    }
    }