* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #0e863f;
    --poster-green: #0e863f;
    --dark-green: #0a6e33;
    --dark-bg: #0A0E27;
    --light-bg: #F0F4EC;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Bohemian Green Palette */
    --bohemian-sage: #87A96B;
    --bohemian-moss: #8FBC8F;
    --bohemian-olive: #6B8E23;
    --bohemian-forest: #4A7C59;
    --bohemian-mint: #98D8C8;
    --bohemian-cream: #FFF8DC;
    --bohemian-terracotta: #CC7351;
    --bohemian-sand: #F5DEB3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes leafFloat {
    0% { transform: rotate(0deg) translateX(0) translateY(0); }
    25% { transform: rotate(5deg) translateX(10px) translateY(-10px); }
    50% { transform: rotate(-5deg) translateX(-10px) translateY(-20px); }
    75% { transform: rotate(3deg) translateX(5px) translateY(-10px); }
    100% { transform: rotate(0deg) translateX(0) translateY(0); }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--light-bg) 0%, #E8F0E3 50%, var(--bohemian-cream) 100%);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(135, 169, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 124, 89, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(143, 188, 143, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navbar with Bohemian Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(240, 244, 236, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(107, 142, 35, 0.1);
    z-index: 1000;
    animation: slideInFromTop 0.8s ease-out;
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    position: relative;
    animation: fadeIn 1s ease-out;
}

.logo::after {
    content: '🌿';
    position: absolute;
    right: -30px;
    animation: leafFloat 4s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    animation: fadeIn 1s ease-out backwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bohemian-sage);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Bohemian Design */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--bohemian-forest) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 169, 107, 0.2) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.hero-poster {
    flex: 0 0 auto;
    animation: slideInFromLeft 1s ease-out, float 6s ease-in-out infinite;
}

.hero-poster img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.hero-text {
    color: var(--text-light);
    flex: 1;
    animation: slideInFromRight 1s ease-out;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeIn 1.2s ease-out;
}

.hero-subtitle {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 
        3px 3px 0 rgba(0, 0, 0, 0.3),
        4px 4px 0 rgba(0, 0, 0, 0.2),
        5px 5px 0 rgba(0, 0, 0, 0.1),
        6px 6px 8px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.3);
    text-stroke: 2px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-out;
}

.hero-year {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeIn 1.8s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeIn 2s ease-out;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--text-light);
    color: var(--primary-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-green);
}

/* Sections with Bohemian Texture */
.section {
    padding: 5rem 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: -1;
}

.section-dark {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0F1729 100%);
    color: var(--text-light);
}

.section-light {
    background: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--bohemian-sage);
}

/* About Section with Bohemian Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 220, 0.9) 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.1);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 169, 107, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite reverse;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 142, 35, 0.2);
    border-color: var(--bohemian-sage);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
}

.about-card p {
    position: relative;
    z-index: 1;
}

/* Theme Section with Bohemian Style */
.theme-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.theme-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.theme-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.theme-keywords {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.keyword {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--bohemian-forest) 100%);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    animation: fadeIn 1s ease-out backwards;
}

.keyword:nth-child(1) { animation-delay: 0.1s; }
.keyword:nth-child(2) { animation-delay: 0.2s; }
.keyword:nth-child(3) { animation-delay: 0.3s; }

.keyword:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Timeline with Bohemian Elements */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--bohemian-sage) 0%, var(--bohemian-moss) 100%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeIn 1s ease-out backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 1;
    text-align: right;
    padding-right: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    padding-left: 2rem;
    padding-right: 0;
}

.timeline-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 220, 0.95) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(107, 142, 35, 0.15);
    position: relative;
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(107, 142, 35, 0.2);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.timeline-item::after {
    content: '🌿';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    background: var(--light-bg);
    padding: 0.25rem;
    border-radius: 50%;
    animation: leafFloat 3s ease-in-out infinite;
}

/* Prize Section with Bohemian Cards */
.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.prize-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 220, 0.95) 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(107, 142, 35, 0.1);
    animation: fadeIn 1s ease-out backwards;
}

.prize-card:nth-child(1) { animation-delay: 0.1s; }
.prize-card:nth-child(2) { animation-delay: 0.2s; }
.prize-card:nth-child(3) { animation-delay: 0.3s; }
.prize-card:nth-child(4) { animation-delay: 0.4s; }

.prize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.2);
}

.prize-card.grand {
    border: 3px solid var(--primary-green);
    background: linear-gradient(135deg, rgba(14, 134, 63, 0.1) 0%, rgba(255, 248, 220, 0.95) 100%);
}

.prize-card.special {
    background: linear-gradient(135deg, var(--bohemian-sage) 0%, var(--bohemian-moss) 100%);
    color: var(--text-light);
}

.prize-rank {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.prize-card.special .prize-rank {
    color: var(--text-light);
}

.prize-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.prize-amount {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 1rem 0;
    color: var(--primary-green);
    animation: pulse 2s ease-in-out infinite;
}

.prize-card.special .prize-amount {
    color: var(--text-light);
}

/* Benefits Section with Bohemian Style */
.benefits-image {
    text-align: center;
    margin: 2rem 0;
    animation: fadeIn 1s ease-out;
}

.benefits-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(107, 142, 35, 0.2);
    border: 3px solid var(--bohemian-sage);
    transition: all 0.3s;
}

.benefits-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(107, 142, 35, 0.3);
}

/* Eligibility Section with Bohemian Design */
.eligibility-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.eligibility-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 220, 0.95) 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(107, 142, 35, 0.15);
    transition: all 0.3s;
    animation: fadeIn 1s ease-out backwards;
}

.eligibility-item:nth-child(1) { animation-delay: 0.2s; }
.eligibility-item:nth-child(2) { animation-delay: 0.4s; }

.eligibility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.2);
}

.eligibility-item h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.eligibility-item ul {
    list-style: none;
}

.eligibility-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.eligibility-item li:before {
    content: '🌱';
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

/* Contact Section with Bohemian Touch */
.contact-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(135, 169, 107, 0.1) 100%);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-out;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--bohemian-mint);
    font-size: 1.25rem;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: fadeIn 1.2s ease-out backwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-label {
    font-weight: 700;
    color: var(--bohemian-mint);
    font-size: 0.875rem;
}

.contact-item a,
.contact-item span {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: var(--bohemian-mint);
    transform: scale(1.05);
}

/* Footer with Bohemian Style */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0F1729 100%);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '🌿 🌱 🍃';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.1;
    animation: float 10s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-poster img {
        max-width: 300px;
    }
    
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-date {
        text-align: left !important;
        padding: 0 0 1rem 0 !important;
    }
    
    .timeline-item::after {
        left: 0;
        transform: translateX(-50%);
    }
    
    .eligibility-content {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}