@import url('https://cdn.jsdelivr.net/npm/galmuri/dist/galmuri.css');

:root {
    --bg-dark: #1a0f0a;
    --bg-medium: #2d1810;
    --text-primary: #fff5e6;
    --text-secondary: #d4a574;
    --accent-orange: #ff6b35;
    --accent-gold: #ffb627;
    --accent-deep: #c44536;
    --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #ffb627 100%);
    --gradient-glow: linear-gradient(180deg, #ff6b35 0%, #c44536 100%);
    --font-pixel: 'Galmuri', sans-serif;
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-pixel);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 182, 39, 0.08) 0%, transparent 50%);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-orange);
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-duration: 16s;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(100px, -100px) scale(1.2);
    }

    50% {
        transform: translate(-50px, 100px) scale(0.8);
    }

    75% {
        transform: translate(150px, 50px) scale(1.1);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(26, 15, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.nav-links a {
    margin-left: 30px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
}

.glitch-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.glitch {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    letter-spacing: 0.1em;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    }

    to {
        filter: drop-shadow(0 0 40px rgba(255, 182, 39, 0.8));
    }
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    color: var(--accent-gold);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: bold;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-highlight {
    font-size: clamp(0.95rem, 2.2vw, 1.3rem);
    color: var(--accent-orange);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gradient-warm);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::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 ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
}

.btn-large {
    padding: 22px 55px;
    font-size: 1.3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--accent-orange);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(transparent, var(--accent-orange));
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Sections */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-dark {
    background: rgba(45, 24, 16, 0.3);
    backdrop-filter: blur(5px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

/* Intro Summary */
.intro-summary {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.lead-text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 2;
    color: var(--text-secondary);
}

.lead-text strong {
    color: var(--accent-orange);
}

/* Highlight Stats */
.highlight-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: bold;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--text-secondary);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(45, 24, 16, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-warm);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-hexagon {
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    position: relative;
}

.icon-hexagon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: rgba(26, 15, 10, 0.8);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.icon-star {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid var(--accent-orange);
    position: relative;
}

.icon-star::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 40px solid var(--accent-gold);
    top: 12px;
    left: -25px;
}

.icon-cube {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    transform: perspective(200px) rotateX(25deg) rotateY(-25deg);
    position: relative;
    border: 2px solid var(--accent-gold);
}

.icon-cube::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid var(--accent-orange);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Visit Section */
.visit-hero {
    text-align: center;
    margin-bottom: 70px;
    padding: 50px 30px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.visit-hero h3 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.visit-lead {
    font-size: clamp(1.05rem, 2.3vw, 1.35rem);
    line-height: 2;
    color: var(--text-secondary);
}

.visit-lead strong {
    color: var(--accent-orange);
}

.reasons-grid {
    display: grid;
    gap: 35px;
    margin-top: 50px;
}

.reason-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: rgba(45, 24, 16, 0.4);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s ease;
}

.reason-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-orange);
    box-shadow: -10px 0 40px rgba(255, 107, 53, 0.2);
}

.reason-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.reason-content h4 {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.reason-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Booths Section */
.booth-intro {
    text-align: center;
    margin-bottom: 60px;
}

.booth-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 2;
    color: var(--text-secondary);
}

.booth-lead strong {
    color: var(--accent-orange);
}

.booth-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: rgba(45, 24, 16, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Creator Icon */
.icon-creator {
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 35% 35%);
    position: relative;
}

.icon-creator::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(26, 15, 10, 0.6);
    clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 35% 35%);
}

/* Community Icon */
.icon-community {
    width: 70px;
    height: 50px;
    position: relative;
}

.icon-community::before,
.icon-community::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--accent-orange);
    border-radius: 50%;
}

.icon-community::before {
    top: 0;
    left: 0;
}

.icon-community::after {
    top: 0;
    right: 0;
    background: var(--accent-gold);
}

/* Game Icon */
.icon-game {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    position: relative;
    border-radius: 8px;
    transform: rotate(45deg);
}

.icon-game::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(26, 15, 10, 0.6);
    border-radius: 6px;
}

/* Music Icon */
.icon-music {
    width: 40px;
    height: 60px;
    position: relative;
}

.icon-music::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    border-radius: 50%;
}

.icon-music::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 4px;
    height: 45px;
    background: var(--accent-gold);
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.category-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.booth-cta {
    text-align: center;
    margin-top: 70px;
    padding: 40px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 16px;
}

.cta-text {
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    color: var(--accent-gold);
    font-weight: bold;
}

/* Participants Infinite Scroll */
.participants-section {
    margin-top: 80px;
    padding: 60px 0;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    overflow: hidden;
}

.participants-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 40px;
}

.participants-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.participants-scroll {
    display: flex;
    gap: 30px;
    animation: scroll-infinite 60s linear infinite;
    width: fit-content;
    flex-shrink: 0;
}

.participants-scroll-container:hover .participants-scroll {
    animation-play-state: paused;
}

.participant-item {
    flex-shrink: 0;
    padding: 18px 35px;
    background: rgba(45, 24, 16, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* 호버시 다른 항목 흐리게 */
.participants-scroll-container:hover .participant-item {
    opacity: 0.3;
    filter: blur(2px);
}

.participant-item:hover {
    opacity: 1 !important;
    filter: blur(0) !important;
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--accent-orange);
    color: var(--accent-gold);
    transform: translateY(-3px) scale(1.05);
    z-index: 10;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 30px));
    }
}

/* HIVE Section */
.hive-intro {
    text-align: center;
    margin-bottom: 60px;
}

.hive-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 2;
    color: var(--text-secondary);
}

.hive-lead strong {
    color: var(--accent-orange);
}

.hive-vision {
    margin: 60px 0;
}

.hive-vision h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 40px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.vision-item {
    background: rgba(45, 24, 16, 0.4);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
}

.vision-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
}

.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Connect Icon */
.icon-connect {
    width: 70px;
    height: 40px;
    position: relative;
}

.icon-connect::before,
.icon-connect::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
}

.icon-connect::before {
    left: 0;
}

.icon-connect::after {
    right: 0;
}

/* Safety Icon */
.icon-safety {
    width: 50px;
    height: 60px;
    background: var(--gradient-warm);
    clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
    position: relative;
}

.icon-safety::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: rgba(26, 15, 10, 0.6);
    clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
}

/* Growth Icon */
.icon-growth {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--accent-gold);
    position: relative;
}

.icon-growth::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 50px solid var(--accent-orange);
    top: 15px;
    left: -30px;
}

.vision-item h4 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.vision-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.hive-spirit {
    margin: 70px 0;
    padding: 50px;
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--accent-orange);
    border-radius: 16px;
}

.hive-spirit h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.spirit-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.spirit-text strong {
    color: var(--accent-orange);
}

.spirit-detail {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-secondary);
}

.hive-support {
    margin-top: 60px;
}

.hive-support h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 40px;
}

.support-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.support-column {
    background: rgba(45, 24, 16, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 40px;
}

.support-column h4 {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.support-column ul {
    list-style: none;
}

.support-column li {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.7;
}

.support-column li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.support-note {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
}

.final-cta {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
}

.final-cta h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.cta-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: rgba(26, 15, 10, 0.9);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-subtitle {
    color: var(--accent-orange);
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-copyright {
    color: rgba(212, 165, 116, 0.5);
    font-size: 0.9rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 6px;
    margin-left: 25px;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 107, 53, 0.35);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.lang-btn.active {
    background: var(--gradient-warm);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links a {
        margin-left: 15px;
        font-size: 0.9rem;
    }

    .lang-switcher {
        margin-left: 15px;
    }

    .lang-btn {
        padding: 4px 9px;
        font-size: 0.75rem;
    }

    .highlight-stats {
        gap: 40px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        flex-direction: column;
        gap: 20px;
    }

    .reason-number {
        font-size: 3rem;
    }

    .booth-categories {
        grid-template-columns: 1fr;
    }

    .support-columns {
        grid-template-columns: 1fr;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .hive-spirit {
        padding: 30px 20px;
    }

    .final-cta {
        padding: 40px 25px;
    }
}