:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --accent-gold: #FFC107;
    --dark-bg: #000000;
    --darker-bg: #0a0a0a;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-gold: rgba(255, 215, 0, 0.3);
    --shadow-gold: rgba(255, 215, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --gradient-card: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
}

.language-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: var(--primary-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-option:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
}

.language-option.active {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23FFD700" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.chinese-character {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: var(--primary-gold);
    text-shadow: 
        0 0 10px var(--primary-gold),
        0 0 20px var(--primary-gold),
        0 0 30px var(--primary-gold);
    margin-bottom: 0.5rem;
    animation: glow 4s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
}

.chinese-character::before {
    content: '四';
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    z-index: -1;
    filter: blur(2px);
    opacity: 0.7;
}

@keyframes glow {
    0% { 
        text-shadow: 
            0 0 10px var(--primary-gold),
            0 0 20px var(--primary-gold),
            0 0 30px var(--primary-gold);
    }
    100% { 
        text-shadow: 
            0 0 15px var(--primary-gold),
            0 0 30px var(--primary-gold),
            0 0 45px var(--primary-gold);
    }
}

.character-subtitle {
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.contract-address {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    margin: 1.5rem auto;
    max-width: 500px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contract-address:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.contract-info {
    flex: 1;
}

.contract-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contract-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--primary-gold);
    font-weight: 600;
    word-break: break-all;
}

.copy-btn {
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-bg);
    font-size: 1rem;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px var(--shadow-gold);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Trading Section */
.trading-section {
    margin-top: 2rem;
    text-align: center;
}

.trading-header {
    margin-bottom: 1.5rem;
}

.trading-header h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.trading-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.trading-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px var(--shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trading-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;
}

.trading-button:hover::before {
    left: 100%;
}

.trading-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px var(--shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trading-button:active {
    transform: translateY(-2px) scale(1.02);
}

.trading-button i {
    font-size: 1.2rem;
}

/* Backed By Section */
.backed-by-section {
    background: var(--gradient-dark);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
}

.backed-by-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
}

.backed-by-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.recognition-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.badge-item {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.badge-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-gold);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--shadow-gold));
}

.badge-text h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.badge-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Team Section */
.team-section {
    background: var(--gradient-dark);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.team-header h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.team-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.developer-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(15px);
}

.dev-image {
    flex-shrink: 0;
}

.dev-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 20px var(--shadow-gold);
}

.dev-info h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dev-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.achievement {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-gold);
}

/* Chef Section */
.chef-section {
    background: var(--darker-bg);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.chef-header {
    text-align: center;
    margin-bottom: 3rem;
}

.chef-header h3 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--shadow-gold);
}

.chef-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 600;
}

.chef-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(15px);
}

.chef-image {
    flex-shrink: 0;
}

.chef-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 20px var(--shadow-gold);
}

.chef-info h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.chef-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.jokes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.joke {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    color: var(--primary-gold);
    padding: 0.8rem 1.2rem 0.8rem 3rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid var(--primary-gold);
    font-style: italic;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.joke::before {
    content: '💬';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.joke:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.3) 100%);
}

/* KOL Showcase Section */
.kol-showcase {
    background: var(--darker-bg);
    padding: 2rem 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    overflow: hidden;
    position: relative;
}

.kol-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.kol-header h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.kol-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.kol-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.kol-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.kol-track {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.kol-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    padding: 0.8rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.kol-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.kol-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.kol-item:hover .kol-logo {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--shadow-gold);
}

.kol-telegram {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

.kol-telegram:hover {
    color: var(--secondary-gold);
    text-shadow: 0 0 10px var(--shadow-gold);
}



/* Social Links Section */
.social-links-section {
    background: var(--darker-bg);
    padding: 3rem 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    position: relative;
}

.social-header {
    text-align: center;
    margin-bottom: 2rem;
}

.social-header h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.social-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
}

.social-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;
}

.social-button:hover::before {
    left: 100%;
}

.social-button i {
    font-size: 1.3rem;
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
    border: 2px solid #0088cc;
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.twitter-btn {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
    border: 2px solid #1da1f2;
}

.twitter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.dextools-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: 2px solid #ff6b35;
}

.dextools-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: clamp(1rem, 3vw, 1.5rem) clamp(2rem, 6vw, 3rem);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px var(--shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    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(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px var(--shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Sections */
.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Cultural Meaning Section */
.cultural-section {
    background: var(--gradient-dark);
    position: relative;
}

.cultural-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
}

/* Story Timeline Section */
.story-timeline {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.story-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.story-step:nth-child(odd) {
    flex-direction: row;
}

.story-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 10px 30px var(--shadow-gold);
    flex-shrink: 0;
}

.step-content {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
    margin: 0 2rem;
    flex: 1;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.step-content h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.cultural-highlight {
    color: var(--primary-gold);
    font-weight: 700;
    position: relative;
}

.cultural-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0.6;
}

/* Timeline Section */
.supersition-section {
    background: var(--gradient-dark);
    position: relative;
}

.supersition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
}

.timeline-container {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 900;
    font-size: 1.2rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.timeline-content {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-gold);
    margin: 0 2rem;
    flex: 1;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.timeline-content h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--shadow-gold));
}

/* Feature Showcase Section */
.goals-section {
    background: var(--dark-bg);
    position: relative;
}

.goals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 10%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 90%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
}

.feature-showcase {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.feature-main {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid var(--primary-gold);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.feature-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.feature-number {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.feature-main h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.feature-main p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-gold);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--shadow-gold));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    text-shadow: 0 0 10px var(--shadow-gold);
}

/* Cultural Content Section */
.cultural-content {
    max-width: 900px;
    margin: 0 auto;
}

.cultural-text-block {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid var(--primary-gold);
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    position: relative;
}

.cultural-text-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    border-radius: 25px;
}

.cultural-text-block h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cultural-text-block p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cultural-text-block p:last-child {
    margin-bottom: 0;
}

.cultural-highlight-box {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-gold);
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
}

.highlight-number {
    font-size: 4rem;
    color: var(--primary-gold);
    font-weight: 900;
    text-shadow: 0 0 20px var(--shadow-gold);
    min-width: 100px;
    text-align: center;
}

.highlight-text h4 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Interactive Luck Game */
.luck-game-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.game-header {
    margin-bottom: 3rem;
}

.game-title {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--shadow-gold);
}

.game-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 3rem;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: var(--gradient-card);
    border: 4px solid var(--primary-gold);
    overflow: hidden;
    transition: transform 3s cubic-bezier(0.23, 1, 0.32, 1);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    background: var(--gradient-card);
    border: 1px solid var(--border-gold);
    transform-origin: 100% 100%;
}

.wheel-segment:nth-child(1) { 
    transform: rotate(0deg) skewY(-45deg);
}
.wheel-segment:nth-child(2) { 
    transform: rotate(45deg) skewY(-45deg);
}
.wheel-segment:nth-child(3) { 
    transform: rotate(90deg) skewY(-45deg);
}
.wheel-segment:nth-child(4) { 
    transform: rotate(135deg) skewY(-45deg);
    background: var(--gradient-gold);
    color: var(--dark-bg);
}
.wheel-segment:nth-child(5) { 
    transform: rotate(180deg) skewY(-45deg);
}
.wheel-segment:nth-child(6) { 
    transform: rotate(225deg) skewY(-45deg);
}
.wheel-segment:nth-child(7) { 
    transform: rotate(270deg) skewY(-45deg);
}
.wheel-segment:nth-child(8) { 
    transform: rotate(315deg) skewY(-45deg);
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--primary-gold);
    z-index: 10;
}

.game-controls {
    margin-bottom: 2rem;
}

.spin-button {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
}

.game-result {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(15px);
}

.result-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
}

.result-text.four {
    color: var(--primary-gold);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.stat-item h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Philosophy Quotes Section */
.binance-section {
    background: var(--gradient-dark);
    position: relative;
}

.binance-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 200 200"><defs><pattern id="crypto" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.1"/><path d="M0,20 L40,20 M20,0 L20,40" stroke="%23FFD700" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23crypto)"/></svg>'),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0.4;
}

.philosophy-quotes {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.quote-item {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.quote-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: serif;
}

.quote-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.quote-author {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.philosophy-item {
    background: rgba(255, 215, 0, 0.08);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-gold);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.philosophy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--shadow-gold));
}

.philosophy-item h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.philosophy-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Interactive Legacy Section */
.symbolism-section {
    background: var(--dark-bg);
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.symbolism-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
}

.interactive-showcase {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.character-container {
    position: relative;
    margin-bottom: 3rem;
}

.floating-character {
    font-size: 12rem;
    color: var(--primary-gold);
    font-weight: 900;
    text-shadow: 
        0 0 20px var(--primary-gold),
        0 0 40px var(--primary-gold),
        0 0 60px var(--primary-gold);
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-character:hover {
    transform: scale(1.1);
    text-shadow: 
        0 0 30px var(--primary-gold),
        0 0 60px var(--primary-gold),
        0 0 90px var(--primary-gold);
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.legacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.typing-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1.8;
    min-height: 100px;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: particleFloat 4s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: clamp(2rem, 6vw, 4rem) 0;
    text-align: center;
    border-top: 1px solid var(--border-gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    line-height: 1.6;
}

.footer-highlight {
    color: var(--primary-gold);
    font-weight: 700;
    text-shadow: 0 0 10px var(--shadow-gold);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--border-gold);
    color: var(--primary-gold);
    backdrop-filter: blur(10px);
}

.footer-social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px var(--shadow-gold);
    color: var(--primary-gold);
}

.footer-social-btn.telegram-btn:hover {
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.footer-social-btn.x-btn:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-social-btn.dextools-btn:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--secondary-gold);
    transform: scale(1.1);
}

.nav-links.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--border-gold);
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .cultural-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .section {
        padding: clamp(3rem, 8vw, 6rem) 0;
    }
    
    .story-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .step-content {
        margin: 0;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-year {
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .legacy-main {
        padding: 2rem;
    }
    
    .legacy-character {
        font-size: 5rem;
    }
    
    .floating-character {
        font-size: 8rem;
    }
    
    .character-glow {
        width: 150px;
        height: 150px;
    }
    
    .typing-text {
        font-size: 1.2rem;
        min-height: 80px;
    }
    
    .interactive-showcase {
        padding: 2rem 0;
    }
    
    .cultural-text-block {
        padding: 2rem;
    }
    
    .cultural-text-block h3 {
        font-size: 1.5rem;
    }
    
    .cultural-text-block p {
        font-size: 1rem;
    }
    
    .cultural-highlight-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .highlight-number {
        font-size: 3rem;
        min-width: auto;
    }
    
    .wheel-container {
        width: 250px;
        height: 250px;
    }
    
    .wheel-segment {
        font-size: 1.5rem;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legacy-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trading-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .trading-header h3 {
        font-size: 1.3rem;
    }
    
    .recognition-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .badge-item {
        padding: 1.5rem;
    }
    
    .badge-icon {
        font-size: 2.5rem;
    }
    
    .kol-header h3 {
        font-size: 1.5rem;
    }
    
    .team-header h3 {
        font-size: 1.5rem;
    }
    
    .developer-profile {
        padding: 2rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .dev-photo {
        width: 150px;
        height: 150px;
    }
    
    .dev-name {
        font-size: 2rem;
    }
    
    .dev-title {
        font-size: 1.2rem;
    }
    
    .dev-experience {
        font-size: 1rem;
    }
    
    .expertise-tags {
        justify-content: center;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .kol-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .kol-logo {
        width: 50px;
        height: 50px;
    }
    
    .kol-telegram {
        font-size: 0.8rem;
    }
    
    .feature-main {
        padding: 2rem;
    }
    
    .feature-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quote-item {
        padding: 2rem;
    }
    
    .quote-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
        padding: 1rem 0;
    }
    
    .chinese-character {
        font-size: clamp(3rem, 18vw, 5rem);
        margin-bottom: 0.3rem;
    }
    
    .character-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .contract-address {
        padding: 0.6rem 1rem;
        margin: 1rem auto;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contract-info {
        text-align: center;
    }
    
    .floating-character {
        font-size: 6rem;
    }
    
    .character-glow {
        width: 120px;
        height: 120px;
    }
    
    .typing-text {
        font-size: 1rem;
        min-height: 60px;
    }
    
    .interactive-showcase {
        padding: 1rem 0;
    }
    
    .cultural-text-block {
        padding: 1.5rem;
    }
    
    .cultural-text-block h3 {
        font-size: 1.3rem;
    }
    
    .cultural-text-block p {
        font-size: 0.9rem;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    .wheel-container {
        width: 200px;
        height: 200px;
    }
    
    .wheel-segment {
        font-size: 1.2rem;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .spin-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }
    
    .milestone, .energy-item {
        padding: 1.2rem;
    }
    
    .trading-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .trading-header h3 {
        font-size: 1.2rem;
    }
    
    .trading-header p {
        font-size: 0.9rem;
    }
    
    .recognition-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .badge-item {
        padding: 1.2rem;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
    
    .badge-text h4 {
        font-size: 1.1rem;
    }
    
    .badge-text p {
        font-size: 0.9rem;
    }
    
    .kol-header h3 {
        font-size: 1.3rem;
    }
    
    .kol-header p {
        font-size: 0.9rem;
    }
    
    .team-header h3 {
        font-size: 1.3rem;
    }
    
    .team-header p {
        font-size: 0.9rem;
    }
    
    .developer-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .dev-photo {
        width: 100px;
        height: 100px;
    }
    
    .dev-info h3 {
        font-size: 1.5rem;
    }
    
    .dev-info p {
        font-size: 1rem;
    }
    
    .achievement {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .chef-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .chef-photo {
        width: 100px;
        height: 100px;
    }
    
    .chef-info h3 {
        font-size: 1.5rem;
    }
    
    .chef-info p {
        font-size: 1rem;
    }
    
    .joke {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .kol-item {
        min-width: 80px;
        padding: 0.6rem;
    }
    
    .kol-logo {
        width: 40px;
        height: 40px;
    }
    
    .kol-telegram {
        font-size: 0.7rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-gold);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
