
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 255, 214, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 184, 77, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.08) 50%, transparent 70%);
    animation: pulse 6s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(0, 255, 136, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 184, 77, 0.03) 50%, transparent 60%);
    animation: wave 8s linear infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.02); }
}

@keyframes wave {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    color: #0f0f0f;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #00ff88, #ffb84d, #ff6b6b, #78ffd6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #78ffd6;
    text-shadow: 0 0 25px rgba(120, 255, 214, 0.4);
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #00ff88, #78ffd6);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #e0e6ed;
    line-height: 1.9;
    position: relative;
    padding-left: 20px;
}

.hero-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #00ff88, #78ffd6);
    border-radius: 2px;
}

.hero-image {
    position: relative;
    text-align: center;
}

.profile-image {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #00ff88;
    box-shadow: 
        0 0 60px rgba(0, 255, 136, 0.8),
        0 0 120px rgba(0, 255, 136, 0.4),
        inset 0 0 60px rgba(0, 255, 136, 0.15);
    animation: profileGlow 3s ease-in-out infinite alternate;
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ff88, #ffb84d, #ff6b6b, #78ffd6);
    z-index: -1;
    animation: rotate 10s linear infinite;
}

@keyframes profileGlow {
    0% { 
        box-shadow: 0 0 60px rgba(0, 255, 136, 0.8), 0 0 120px rgba(0, 255, 136, 0.4);
        transform: scale(1);
    }
    100% { 
        box-shadow: 0 0 80px rgba(0, 255, 136, 1), 0 0 160px rgba(0, 255, 136, 0.6);
        transform: scale(1.05);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.floating-element:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.floating-element:nth-child(4) { top: 30%; left: 90%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.cta-button {
    display: inline-block;
    padding: 25px 50px;
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    color: #0f0f0f;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.4rem;
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    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.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.8);
    background: linear-gradient(45deg, #00d4aa, #00ff88);
}

.cta-button:hover::before {
    left: 100%;
}

/* Enhanced Success Stories Section */
.success-stories {
    padding: 120px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    position: relative;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 184, 77, 0.05) 0%, transparent 50%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.story-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.story-image {
    position: relative;
    text-align: center;
}

.story-img {
    width: 350px;
    height: 280px;
    border-radius: 25px;
    object-fit: cover;
    border: 4px solid #00ff88;
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.4);
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s ease;
}

.story-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 255, 136, 0.6);
}

.story-content {
    color: white;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.story-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #78ffd6;
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-icon {
    font-size: 3rem;
    color: #00ff88;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #e0e6ed;
}

.story-highlight {
    background: linear-gradient(45deg, #00ff88, #78ffd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.story-stat {
    text-align: center;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.story-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 5px;
}

.story-stat-label {
    font-size: 0.9rem;
    color: #e0e6ed;
}

/* Investment Philosophy Section */
.philosophy {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-content {
    color: white;
}

.philosophy-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #00ff88, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-points {
    list-style: none;
    padding: 0;
}

.philosophy-points li {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e6ed;
    padding-left: 40px;
    position: relative;
}

.philosophy-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #00ff88;
    font-weight: 900;
    font-size: 1.5rem;
}

.philosophy-image {
    text-align: center;
}

.philosophy-img {
    width: 300px;
    height: 400px;
    border-radius: 25px;
    object-fit: cover;
    border: 4px solid #00ff88;
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.4);
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e0e6ed;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #00ff88, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-grid.reverse {
    grid-template-columns: 2fr 1fr;
}

.about-image {
    text-align: center;
    margin: 0 auto;
}

.about-img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.about-content {
    color: white;
}

.about-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #78ffd6;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e6ed;
}

.highlight {
    color: #00ff88;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00ff88;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #78ffd6;
}

.feature-description {
    color: #e0e6ed;
    line-height: 1.6;
}

/* Event Details */
.event-details {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f0f 100%);
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.event-info {
    position: relative;
    z-index: 2;
    color: white;
}

.event-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #78ffd6;
    text-align: center;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.detail-item {
    text-align: center;
    padding: 20px;
}

.detail-icon {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.detail-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #78ffd6;
}

.detail-text {
    color: #e0e6ed;
    font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(45deg, #00ff88, #00d4aa, #78ffd6);
    text-align: center;
}

.final-cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #0f0f0f;
    margin-bottom: 30px;
}

.final-cta p {
    font-size: 1.3rem;
    color: #0f0f0f;
    margin-bottom: 40px;
    font-weight: 700;
}

.final-cta-button {
    display: inline-block;
    padding: 25px 50px;
    background: #0f0f0f;
    color: #00ff88;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.4rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #0f0f0f;
}

.final-cta-button:hover {
    background: transparent;
    color: #0f0f0f;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .story-grid,
    .story-grid.reverse,
    .philosophy-grid,
    .about-grid,
    .about-grid.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .story-img,
    .philosophy-img,
    .about-img {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .story-content {
        padding: 30px 20px;
    }
}
.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: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    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;
    text-align: center;
    justify-content: center;
    }
    
    .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: 14px;
    padding: 10px 20px;

    }
    }
    
    @media (max-width: 480px) {
    .floating-button {
    font-size: 12px;
    padding: 8px 16px;
    }
    
    .floating-button .icon {
    font-size: 16px;
    }
    }