/* Custom Font */
@font-face {
    font-family: 'Academic M54';
    src: url('font/Academic M54.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #f0b90b;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: #000000;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-radius: 50px;
    z-index: 1000;
    padding: 4px 32px;
    box-shadow: 0 8px 32px rgba(240, 185, 11, 0.2);
}

.header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0;
    max-width: none;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-main {
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #f0b90b;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(240, 185, 11, 0.5);
    line-height: 1;
    margin-bottom: 2px;
}

.logo-sub {
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #f0b90b;
    text-shadow: 0 0 8px rgba(240, 185, 11, 0.4);
    line-height: 1;
    opacity: 0.8;
}

.nav-logo-text:hover .logo-main {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(240, 185, 11, 0.8);
}

.nav-logo-text:hover .logo-sub {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(240, 185, 11, 0.6);
}

.nav-logo-text:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links:first-child {
    justify-content: flex-start;
}

.nav-links:last-child {
    justify-content: flex-end;
}

.nav-link {
    color: #f0b90b;
    text-decoration: none;
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(240, 185, 11, 0.2);
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
}

.signin-btn {
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    color: #f0b90b;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signin-btn:hover {
    background: rgba(240, 185, 11, 0.2);
    border-color: rgba(240, 185, 11, 0.4);
    transform: translateY(-1px);
}

/* Background */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bg-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.1;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: -1;
}

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

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f0b90b, #ffd700);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-main {
    display: block;
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #f0b90b, #ffd700, #ffed4e, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.8;
    margin-bottom: -10px;
    text-transform: uppercase;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 20px rgba(240, 185, 11, 0.6));
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.hero-tagline {
    display: block;
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: titleGlow 3s ease-in-out infinite alternate-reverse;
    position: relative;
}

@keyframes titleGlow {
    0% { 
        filter: drop-shadow(0 0 20px rgba(240, 185, 11, 0.6));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 30px rgba(240, 185, 11, 0.8));
        transform: scale(1.02);
    }
}

.title-line {
    display: block;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.title-line.green {
    background: linear-gradient(45deg, #f0b90b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #aaa;
}

.music-video-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.music-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(240, 185, 11, 0.2);
    border: 2px solid rgba(240, 185, 11, 0.3);
    transition: all 0.3s ease;
}

.music-video:hover {
    box-shadow: 0 12px 40px rgba(240, 185, 11, 0.4);
    border-color: rgba(240, 185, 11, 0.5);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contract-address:hover {
    background: rgba(240, 185, 11, 0.2);
    border-color: rgba(240, 185, 11, 0.5);
    transform: translateY(-2px);
}

.contract-label {
    font-size: 14px;
    font-weight: 600;
    color: #f0b90b;
}

.contract-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.copy-indicator {
    font-size: 12px;
    color: #f0b90b;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 185, 11, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(240, 185, 11, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(240, 185, 11, 0.2);
    border-color: rgba(240, 185, 11, 0.4);
    transform: translateY(-2px);
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: #f0b90b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Chart Button Styling */
.feature-item.chart-btn {
    background: linear-gradient(45deg, #f0b90b, #ffd700) !important;
    border: none !important;
    color: #000000 !important;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.feature-item.chart-btn:hover {
    background: linear-gradient(45deg, #ffd700, #ffa500) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 185, 11, 0.4);
}

.feature-item.chart-btn span {
    color: #000000 !important;
}

.contract-address {
    margin: 30px 0;
    text-align: center;
}

.contract-address label {
    display: block;
    color: #888;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.address-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-radius: 8px;
    padding: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.address-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.1);
    color: #f0b90b;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    padding: 12px 16px;
    border-radius: 8px;
    outline: none;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.address-input:hover {
    background: rgba(240, 185, 11, 0.1);
    border-color: rgba(240, 185, 11, 0.3);
}

/* Donation Mechanics Section */
.donation-mechanics {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

.donation-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f0b90b, #ffd700);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
    flex-shrink: 0;
    min-width: 50px;
    min-height: 50px;
}

.process-step h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.process-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.process-arrow {
    color: #f0b90b;
    font-size: 28px;
    font-weight: 700;
    margin: 0 15px;
}

/* Donation Stats Section */
.donation-stats {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 185, 11, 0.3);
    box-shadow: 0 10px 30px rgba(240, 185, 11, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #f0b90b;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 12px;
    color: #888;
}

/* Lore Section */
.lore-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(240, 185, 11, 0.1);
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
}

.lore-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.lore-section.lore-visible .lore-content {
    opacity: 1;
    transform: translateY(0);
}

.lore-header {
    text-align: center;
    margin-bottom: 60px;
}

.lore-title {
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #f0b90b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
}

.lore-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.lore-text {
    margin-bottom: 60px;
}

.lore-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: justify;
    font-weight: 400;
}

.lore-paragraph strong {
    color: #f0b90b;
    font-weight: 700;
}

.lore-paragraph em {
    color: #f0b90b;
    font-style: italic;
    font-weight: 600;
}

.lore-footer {
    border-top: 1px solid rgba(240, 185, 11, 0.2);
    padding-top: 40px;
}

.lore-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.binance-nft-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f0b90b 0%, #ffd700 50%, #ffa500 100%);
    color: #000000;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 185, 11, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.binance-nft-btn::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;
}

.binance-nft-btn:hover::before {
    left: 100%;
}

.binance-nft-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 185, 11, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.binance-nft-btn:active {
    transform: translateY(-1px);
}


.btn-text {
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.binance-nft-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.rareboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #f0b90b;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(240, 185, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.rareboard-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 185, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.rareboard-btn:hover::before {
    left: 100%;
}

.rareboard-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 185, 11, 0.2);
    border-color: rgba(240, 185, 11, 0.6);
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 50%, #2d2d2d 100%);
}

.rareboard-btn:active {
    transform: translateY(-1px);
}

.rareboard-btn .btn-text {
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.rareboard-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.lore-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #f0b90b;
    text-shadow: 0 0 15px rgba(240, 185, 11, 0.6);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Responsive adjustments for lore section */
@media (max-width: 768px) {
    .lore-section {
        padding: 80px 0;
    }
    
    .lore-title {
        font-size: 2.2rem;
    }
    
    .lore-subtitle {
        font-size: 1rem;
    }
    
    .lore-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .lore-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lore-title {
        font-size: 1.8rem;
    }
    
    .lore-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .binance-nft-btn,
    .rareboard-btn {
        padding: 14px 24px;
        font-size: 1rem;
        gap: 8px;
    }
    
}

/* Flywheel Section */
.flywheel-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(240, 185, 11, 0.1);
    border-bottom: 1px solid rgba(240, 185, 11, 0.1);
}

.flywheel-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.flywheel-section.flywheel-visible .flywheel-content {
    opacity: 1;
    transform: translateY(0);
}

.flywheel-header {
    text-align: center;
    margin-bottom: 80px;
}

.flywheel-title {
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #f0b90b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
}

.flywheel-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.flywheel-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.flywheel-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: rgba(240, 185, 11, 0.05);
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.flywheel-step:hover {
    background: rgba(240, 185, 11, 0.08);
    border-color: rgba(240, 185, 11, 0.2);
    transform: translateY(-2px);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b90b 0%, #ffd700 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f0b90b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.flywheel-footer {
    text-align: center;
    border-top: 1px solid rgba(240, 185, 11, 0.2);
    padding-top: 40px;
}

.flywheel-mission {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-style: italic;
}

.flywheel-cta {
    margin-top: 20px;
}

.flywheel-slogan {
    font-family: 'Academic M54', 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f0b90b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(240, 185, 11, 0.6);
}

/* Responsive adjustments for flywheel section */
@media (max-width: 768px) {
    .flywheel-section {
        padding: 80px 0;
    }
    
    .flywheel-title {
        font-size: 2.2rem;
    }
    
    .flywheel-subtitle {
        font-size: 1rem;
    }
    
    .flywheel-steps {
        gap: 30px;
    }
    
    .flywheel-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .flywheel-mission {
        font-size: 1rem;
    }
    
    .flywheel-slogan {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .flywheel-title {
        font-size: 1.8rem;
    }
    
    .flywheel-step {
        padding: 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        top: 10px;
        width: 95%;
        padding: 8px 16px;
    }
    
    .header .container {
        gap: 15px;
    }
    
    .logo-main {
        font-size: 36px;
    }
    
    .logo-sub {
        font-size: 14px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .hero {
        padding: 100px 0 40px;
        min-height: 70vh;
    }
    
    .hero-main {
        font-size: 42px;
        letter-spacing: -2px;
        line-height: 0.8;
        margin-bottom: -8px;
    }
    
    .hero-tagline {
        font-size: 42px;
        letter-spacing: -2px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 20px;
        line-height: 1.6;
    }
    
    .music-video-container {
        margin: 30px 20px;
    }
    
    .music-video {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .feature-item {
        width: 250px;
        padding: 12px 20px;
    }
    
    .contract-address {
        margin: 30px 20px;
    }
    
    .address-input {
        font-size: 11px;
        padding: 12px 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .donation-process {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    .process-step {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        height: 280px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .stat-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        top: 5px;
        width: 98%;
        padding: 6px 12px;
    }
    
    .header .container {
        gap: 10px;
    }
    
    .logo-main {
        font-size: 32px;
    }
    
    .logo-sub {
        font-size: 12px;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 5px 6px;
    }
    
    .hero {
        padding: 90px 0 30px;
        min-height: 60vh;
    }
    
    .hero-main {
        font-size: 36px;
        letter-spacing: -1px;
        line-height: 0.8;
        margin-bottom: -6px;
    }
    
    .hero-tagline {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .music-video-container {
        margin: 25px 15px;
    }
    
    .music-video {
        border-radius: 6px;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature-item {
        width: 220px;
        padding: 12px 18px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .contract-address {
        margin: 25px 15px;
    }
    
    .address-input {
        font-size: 10px;
        padding: 10px 12px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .donation-process {
        gap: 15px;
        margin-top: 30px;
    }
    
    .process-step {
        padding: 20px 15px;
        max-width: 320px;
        height: 260px;
    }
    
    .process-arrow {
        margin: 8px 0;
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stat-desc {
        font-size: 12px;
    }
    
    .cults-section {
        padding: 80px 0;
    }
    
    .cults-text {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .cults-description {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .cults-section {
        padding: 60px 0;
    }
    
    .cults-text {
        font-size: 28px;
        letter-spacing: 0.5px;
    }
    
    .cults-description {
        font-size: 15px;
        padding: 0 15px;
    }
}
