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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #a78bfa;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --card-hover: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border: #334155;
    --border-light: #475569;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    --gradient-hero: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: visible;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 0;
}

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.tagline {
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 800px 600px at top left, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at bottom right, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 400px 400px at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button.primary::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 ease;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.cta-button.secondary:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-container {
    position: relative;
    display: inline-block;
}

.hero-logo-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 32px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 60px rgba(99, 102, 241, 0.3);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05);
}

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

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, rgba(139, 92, 246, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats .stat-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stats .stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-stats .stat-card:hover::after {
    left: 100%;
}

.hero-stats .stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    background: rgba(30, 41, 59, 0.8);
}

.stat-icon-small {
    font-size: 2rem;
    color: var(--primary-color);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.hero-stats .stat-card:hover .stat-icon-small {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
}

.stat-content {
    flex: 1;
}

.hero-stats .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.hero-stats .stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Creators Section */
.creators-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.02) 100%);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.creator-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.creator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.creator-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.creator-card:hover::before {
    transform: scaleX(1);
}

.creator-card:hover::after {
    opacity: 1;
}

.creator-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.creator-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 24px;
}

.creator-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.creator-wallet {
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 0.8125rem;
    color: var(--text-muted);
    word-break: break-all;
}

.token-count {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.creator-tokens {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.token-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.token-name {
    font-weight: 500;
    color: var(--text-primary);
}

.token-symbol {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.token-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.token-link:hover {
    color: var(--primary-light);
}

/* Live Feed Section */
.livefeed-section {
    padding: 120px 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%),
        radial-gradient(ellipse 1200px 400px at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    position: relative;
}

.livefeed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.livefeed-container {
    max-width: 1000px;
    margin: 0 auto;
}

.livefeed-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.feed-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 32px;
    min-width: 160px;
    transition: all 0.3s ease;
}

.feed-stat:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.feed-stat-label {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feed-stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.livefeed-list {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    max-height: 600px;
    overflow-y: auto;
}

.feed-item {
    display: flex;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    animation: slideInRight 0.5s ease-out both;
    animation-delay: calc(var(--index, 0) * 0.05s);
}

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

.feed-item:last-child {
    border-bottom: none;
}

.feed-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feed-item:hover::before {
    transform: scaleY(1);
}

.feed-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding-left: 24px;
    transform: translateX(4px);
}

.feed-icon {
    font-size: 1.5rem;
    margin-right: 16px;
    width: 40px;
    text-align: center;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-icon i {
    display: inline-block;
}

.feed-content {
    flex: 1;
}

.feed-type {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.feed-time {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-top: 4px;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 52px 48px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover::after {
    opacity: 1;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--primary-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-icon i {
    display: inline-block;
}

.stat-box:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
}

.devouring-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.explanation-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.explanation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explanation-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.explanation-card:hover::before {
    transform: scaleX(1);
}

.explanation-card:hover::after {
    opacity: 1;
}

.explanation-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.explanation-card:hover .explanation-icon {
    transform: scale(1.1) rotate(5deg);
}

.explanation-icon {
    font-size: 3.5rem;
    margin-bottom: 28px;
    text-align: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.explanation-icon i {
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.explanation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.explanation-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.explanation-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.explanation-list li {
    padding: 12px 0;
    padding-left: 32px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
}

.explanation-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.explanation-list ol {
    list-style: decimal;
    padding-left: 28px;
    margin: 24px 0;
}

.explanation-list ol li {
    padding-left: 12px;
}

.explanation-list ol li::before {
    display: none;
}

.highlight-text {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 16px 20px;
    margin-top: 24px;
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

/* Value Proposition Section */
.value-proposition-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 28px;
    text-align: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.value-icon i {
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.value-mechanism {
    margin-top: 20px;
}

.value-mechanism h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-mechanism ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.value-mechanism ul li {
    padding: 10px 0;
    padding-left: 28px;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.7;
}

.value-mechanism ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.value-example {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 16px 20px;
    margin-top: 20px;
    border-radius: 8px;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.value-example strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.value-summary {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.value-summary h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.cycle-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 220px;
}

.cycle-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-lg);
}

.cycle-content {
    text-align: center;
}

.cycle-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cycle-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.cycle-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Telegram Bot Section */
.telegram-bot-section {
    padding: 100px 0;
}

.bot-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.instruction-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.instruction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instruction-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.instruction-card:hover::before {
    transform: scaleX(1);
}

.instruction-card:hover::after {
    opacity: 1;
}

.instruction-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.instruction-card:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 36px;
    background: var(--gradient-primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.375rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--darker-bg);
}

.instruction-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 12px;
    color: var(--text-primary);
}

.instruction-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.instruction-card ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.instruction-card ul li {
    padding: 10px 0;
    padding-left: 28px;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.6;
}

.instruction-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.instruction-card code {
    background: rgba(99, 102, 241, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Courier New', 'Monaco', monospace;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.bot-features {
    max-width: 1200px;
    margin: 0 auto;
}

.bot-features h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-icon i {
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: visible;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.footer-content p {
    margin-bottom: 8px;
    font-size: 0.9375rem;
    max-width: 100%;
    word-wrap: break-word;
}

/* Loading */
.loading {
    text-align: center;
    padding: 80px;
    color: var(--text-muted);
    font-size: 1.125rem;
    grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-image {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .header-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .container {
        padding: 0 16px;
    }

    .logo {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        padding: 0 8px;
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .footer {
        padding: 60px 0;
    }
    
    .footer-content {
        padding: 0 16px;
    }

    .creators-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .devouring-explanation,
    .bot-instructions,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .cycle-diagram {
        flex-direction: column;
    }

    .cycle-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .value-summary {
        padding: 40px 24px;
    }

    .hero-logo-image {
        width: 180px;
        height: 180px;
    }

    .logo-glow {
        width: 220px;
        height: 220px;
    }
}
