/* ===========================================
   RENTDUE - BEAST MODE EDITION
   Advanced Animations & Interactive Features
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Grey Color Palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-card: #1f1f1f;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #6b6b6b;
    
    /* Accent Colors */
    --accent-red: #dc2626;
    --accent-red-glow: rgba(220, 38, 38, 0.4);
    --accent-red-bright: #ff0000;
    
    /* Fonts */
    --font-display: 'Anton', sans-serif;
    --font-heading: 'Bebas Neue', cursive;
    --font-body: 'Oswald', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Animation Timing */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none; /* Hide default cursor */
}
/* ===========================================
   CUSTOM CURSOR
   =========================================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    box-shadow: 0 0 20px var(--accent-red-glow);
}
.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    animation: cursorPulse 2s ease-in-out infinite;
}
.cursor-dot.cursor-hover {
    width: 16px;
    height: 16px;
}
.cursor-ring.cursor-hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent-red-bright);
}
@keyframes cursorPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}
/* ===========================================
   SCROLL PROGRESS BAR
   =========================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-bright));
    z-index: 10001;
    box-shadow: 0 0 20px var(--accent-red-glow);
    transition: width 0.1s linear;
}
/* ===========================================
   PARTICLE CANVAS BACKGROUND
   =========================================== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}
/* ===========================================
   LOADING SCREEN
   =========================================== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s var(--transition-smooth), visibility 0.8s;
}
#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loading-content {
    text-align: center;
    animation: loadingPulse 2s ease-in-out infinite;
}
.logo-container {
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.logo-container::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    animation: logoOrbit 3s linear infinite;
}
.loading-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 30px var(--accent-red-glow));
    animation: logoFloat 3s ease-in-out infinite;
}
.loading-text {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 8px;
    color: var(--text-primary);
    margin-bottom: 30px;
}
.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-bright));
    width: 0;
    animation: loadProgress 2.5s var(--transition-smooth) forwards;
    box-shadow: 0 0 20px var(--accent-red-glow);
}
/* ===========================================
   NAVIGATION
   =========================================== */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-tertiary);
    transform: translateY(0);
    transition: transform 0.3s var(--transition-smooth), background 0.3s;
}
#main-nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.4s var(--transition-elastic);
    filter: drop-shadow(0 0 10px var(--accent-red-glow));
}
.nav-logo-img:hover {
    transform: scale(1.1) rotate(2deg);
}
.nav-links {
    display: flex;
    gap: 50px;
}
.nav-link {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    overflow: hidden;
}
.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--accent-red);
    overflow: hidden;
    transition: width 0.4s var(--transition-smooth);
}
.nav-link:hover::before {
    width: 100%;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.4s var(--transition-smooth);
}
.nav-link:hover::after {
    width: 100%;
}
/* ===========================================
   SECTIONS BASE
   =========================================== */
.section {
    min-height: 100vh;
    padding: 100px 40px 60px;
    position: relative;
    z-index: 1;
}
.section-content {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 80px);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 6px;
    color: var(--text-primary);
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-red);
}
/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
    background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
/* Parallax Background Layers */
.hero-bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}
.layer-1 {
    background: radial-gradient(circle at 20% 30%, var(--accent-red-glow) 0%, transparent 50%);
}
.layer-2 {
    background: radial-gradient(circle at 80% 70%, var(--accent-red-glow) 0%, transparent 50%);
}
.layer-3 {
    background: radial-gradient(circle at 50% 50%, var(--accent-red-glow) 0%, transparent 60%);
}
.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}
/* Hero Tagline */
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 5px;
    color: var(--text-secondary);
    text-transform: uppercase;
}
.hero-tagline .line {
    display: block;
    margin-bottom: 10px;
}
.hero-tagline .word {
    display: inline-block;
    margin: 0 8px;
}
/* Brand Name */
.brand-name-container {
    margin-bottom: 5px;
}
.brand-name {
    font-family: var(--font-display);
    font-size: clamp(64px, 12vw, 140px);
    letter-spacing: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
    font-weight: 400;
}
/* Hero Logo Image - Reduced 40% total */
.hero-logo-image {
    width: auto;
    height: clamp(432px, 48vw, 960px);
    max-width: 95%;
    object-fit: contain;
    position: relative;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: 
        drop-shadow(0 0 80px rgba(255, 0, 0, 0.9))
        drop-shadow(0 0 160px rgba(255, 0, 0, 0.7))
        drop-shadow(0 0 240px rgba(255, 0, 0, 0.5))
        drop-shadow(0 30px 80px rgba(255, 0, 0, 0.6));
    transition: all 0.6s var(--transition-smooth);
    animation: logo-epic-pulse 4s ease-in-out infinite;
}
.hero-logo-image:hover {
    transform: scale(1.08) translateY(-15px);
    filter: 
        drop-shadow(0 0 100px rgba(255, 0, 0, 1))
        drop-shadow(0 0 200px rgba(255, 0, 0, 0.9))
        drop-shadow(0 0 300px rgba(255, 0, 0, 0.7))
        drop-shadow(0 40px 100px rgba(255, 0, 0, 0.8));
    animation-play-state: paused;
}
@keyframes logo-epic-pulse {
    0%, 100% {
        filter: 
            drop-shadow(0 0 80px rgba(255, 0, 0, 0.9))
            drop-shadow(0 0 160px rgba(255, 0, 0, 0.7))
            drop-shadow(0 0 240px rgba(255, 0, 0, 0.5))
            drop-shadow(0 30px 80px rgba(255, 0, 0, 0.6));
    }
    50% {
        filter: 
            drop-shadow(0 0 100px rgba(255, 0, 0, 1))
            drop-shadow(0 0 180px rgba(255, 0, 0, 0.8))
            drop-shadow(0 0 260px rgba(255, 0, 0, 0.6))
            drop-shadow(0 35px 90px rgba(255, 0, 0, 0.7));
    }
}
/* Countdown Timer */
.countdown-container {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--bg-tertiary);
    border-radius: 20px;
    padding: 50px;
    margin: 5px auto 20px;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    animation: shimmer 3s infinite;
}
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.countdown-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: transform 0.3s var(--transition-elastic);
}
.countdown-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--accent-red);
    line-height: 1;
}
.countdown-label {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-top: 10px;
}
.event-location {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-secondary);
    letter-spacing: 2px;
}
#event-date {
    margin-bottom: 8px;
    color: var(--text-primary);
}
.location-city {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-red);
    letter-spacing: 6px;
}
/* Why Container */
.why-container {
    margin: 20px auto;
    text-align: center;
}
.why-question {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 56px);
    letter-spacing: 6px;
    color: var(--text-primary);
    margin-bottom: 15px;
}
.why-answer {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 48px);
    letter-spacing: 4px;
    color: var(--accent-red);
}
/* Burn Pool Ticker */
.burn-pool-ticker {
    background: var(--bg-card);
    border: 1px solid var(--accent-red);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.ticker-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-red-glow) 0%, transparent 70%);
    opacity: 0.2;
    animation: pulseGlow 2s ease-in-out infinite;
}
.ticker-label {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}
.ticker-amount {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 72px);
    color: var(--accent-red);
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.ticker-progress {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}
.ticker-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-bright));
    width: 0;
    transition: width 0.5s var(--transition-smooth);
    box-shadow: 0 0 15px var(--accent-red-glow);
}
.ticker-dates {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}
/* ===========================================
   MISSION SECTION
   =========================================== */
.mission-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-tertiary);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--accent-red-glow) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.mission-card:hover::before {
    opacity: 0.1;
}
.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--bg-tertiary);
    line-height: 1;
    z-index: 0;
}
.card-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
    position: relative;
    z-index: 1;
}
.card-title {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}
.card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}
.mission-statement {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--accent-red);
    border-radius: 20px;
    box-shadow: 0 0 40px var(--accent-red-glow);
}
.mission-tagline {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-style: italic;
    letter-spacing: 2px;
    color: var(--text-secondary);
}
/* ===========================================
   COIN SECTION
   =========================================== */
.coin-section {
    background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.coin-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.coin-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-tertiary);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-red);
}
.card-header .card-icon {
    font-size: 36px;
    margin: 0;
}
.card-header h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 3px;
    color: var(--text-primary);
}
.timeline-items,
.revenue-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.timeline-item,
.revenue-item {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s var(--transition-smooth);
}
.timeline-item:hover,
.revenue-item:hover {
    transform: translateX(10px);
    background: var(--bg-tertiary);
}
.timeline-date,
.revenue-percent {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--accent-red);
}
.revenue-percent {
    font-size: 32px;
}
.percent-sign {
    font-size: 24px;
    color: var(--accent-red);
}
.timeline-event,
.revenue-label {
    font-size: 16px;
    color: var(--text-secondary);
}
/* Wallet Section */
.wallet-section {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 2px dashed var(--bg-tertiary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.wallet-title {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.wallet-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.wallet-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.wallet-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 2px;
    padding: 20px 40px;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    border: 2px solid var(--bg-tertiary);
    border-radius: 12px;
    cursor: not-allowed;
    opacity: 0.5;
    transition: all 0.3s;
}
.wallet-icon {
    font-size: 28px;
}
/* ===========================================
   MERCH SECTION
   =========================================== */
.merch-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.merch-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.merch-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-tertiary);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.merch-visual {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--transition-elastic);
}
.merch-item:hover .merch-visual {
    transform: scale(1.2) rotate(10deg);
}
.merch-emoji {
    font-size: 80px;
}
.merch-name {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.merch-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.store-launch-banner {
    text-align: center;
    padding: 50px 40px;
    background: var(--bg-card);
    border: 2px solid var(--accent-red);
    border-radius: 20px;
    box-shadow: 0 0 40px var(--accent-red-glow);
    position: relative;
    overflow: hidden;
}
.banner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-red-glow) 0%, transparent 70%);
    opacity: 0.2;
    animation: pulseGlow 2s ease-in-out infinite;
}
.launch-message {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: 4px;
    color: var(--accent-red);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.launch-submessage {
    font-size: 18px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}
/* ===========================================
   JOIN SECTION
   =========================================== */
.join-section {
    background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.join-content {
    max-width: 700px;
    margin: 0 auto 80px;
}
.join-description {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
}
/* Signup Form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.email-input {
    font-family: var(--font-body);
    font-size: 18px;
    padding: 25px 30px;
    background: var(--bg-card);
    border: 2px solid var(--bg-tertiary);
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.3s var(--transition-smooth);
}
.email-input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 30px var(--accent-red-glow);
    transform: translateY(-2px);
}
.email-input::placeholder {
    color: var(--text-muted);
}
.submit-btn {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 4px;
    padding: 25px 30px;
    background: var(--accent-red);
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 10px 30px var(--accent-red-glow);
    position: relative;
    overflow: hidden;
}
.btn-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.submit-btn:hover .btn-bg {
    width: 300px;
    height: 300px;
}
.submit-btn:hover {
    background: var(--accent-red-bright);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px var(--accent-red-glow);
}
.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}
.btn-icon {
    font-size: 28px;
    transition: transform 0.3s var(--transition-elastic);
}
.submit-btn:hover .btn-icon {
    transform: translateX(10px);
}
.form-message {
    text-align: center;
    font-size: 16px;
    padding: 20px;
    border-radius: 12px;
    display: none;
}
.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    color: #22c55e;
}
.form-message.error {
    display: block;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
}
/* Follow Section */
.follow-section {
    text-align: center;
}
.follow-title {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: var(--text-primary);
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 2px solid var(--bg-tertiary);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s var(--transition-elastic);
    position: relative;
    overflow: hidden;
}
.social-icon {
    font-size: 48px;
    transition: transform 0.4s var(--transition-elastic);
}
.social-link:hover .social-icon {
    transform: scale(1.3) rotate(10deg);
}
.social-name {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 2px;
}
/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--bg-tertiary);
    padding: 80px 40px 40px;
    text-align: center;
}
.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 30px;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    filter: drop-shadow(0 0 10px var(--accent-red-glow));
}
.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.1);
}
.footer-tagline {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.footer-copyright,
.footer-legal {
    font-size: 14px;
    color: var(--text-muted);
    margin: 10px 0;
}
/* ===========================================
   BEAST MODE FEATURES
   =========================================== */
/* GLITCH EFFECT */
.glitch {
    position: relative;
}
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-red);
    animation: glitch-1 0.6s infinite;
    clip: rect(0, 900px, 0, 0);
}
.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-red-bright);
    animation: glitch-2 0.6s infinite;
    clip: rect(0, 900px, 0, 0);
}
.glitch-subtle::before,
.glitch-subtle::after {
    animation-duration: 3s;
}
/* 3D TILT CARD */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}
/* MAGNETIC ELEMENT */
.magnetic {
    transition: transform 0.2s ease-out;
}
.magnetic-small {
    transition: transform 0.15s ease-out;
}
/* CARD SHINE EFFECT */
.card-shine {
    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;
}
.mission-card:hover .card-shine,
.coin-card:hover .card-shine,
.merch-item:hover .card-shine,
.social-link:hover .card-shine {
    left: 100%;
}
/* FLOATING ELEMENTS */
.float-element {
    animation: float 3s ease-in-out infinite;
}
.float-element:nth-child(2) {
    animation-delay: 0.5s;
}
.float-element:nth-child(3) {
    animation-delay: 1s;
}
/* SCROLL ANIMATIONS */
[data-scroll] {
    opacity: 0;
    transition: all 0.8s var(--transition-bounce);
}
[data-scroll].animated {
    opacity: 1;
}
[data-scroll="fade-up"].animated {
    transform: translateY(0);
}
[data-scroll="fade-up"] {
    transform: translateY(50px);
}
[data-scroll="slide-right"].animated {
    transform: translateX(0);
}
[data-scroll="slide-right"] {
    transform: translateX(-100px);
}
[data-scroll="slide-left"].animated {
    transform: translateX(0);
}
[data-scroll="slide-left"] {
    transform: translateX(100px);
}
[data-scroll="slide-up"].animated {
    transform: translateY(0);
}
[data-scroll="slide-up"] {
    transform: translateY(80px);
}
[data-scroll="fade-scale"].animated {
    transform: scale(1);
}
[data-scroll="fade-scale"] {
    transform: scale(0.9);
}
[data-scroll="rotate-in"].animated {
    transform: rotate(0deg) scale(1);
}
[data-scroll="rotate-in"] {
    transform: rotate(-10deg) scale(0.9);
}
[data-scroll="scale-in"].animated {
    transform: scale(1);
}
[data-scroll="scale-in"] {
    transform: scale(0.8);
}
[data-scroll="fade-right"].animated {
    transform: translateX(0);
}
[data-scroll="fade-right"] {
    transform: translateX(-50px);
}
/* ===========================================
   ANIMATIONS & KEYFRAMES
   =========================================== */
@keyframes loadingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}
@keyframes logoOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes glitch-1 {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
    }
    5% {
        clip: rect(12px, 9999px, 59px, 0);
    }
    10% {
        clip: rect(48px, 9999px, 29px, 0);
    }
    15% {
        clip: rect(42px, 9999px, 73px, 0);
    }
    20% {
        clip: rect(63px, 9999px, 27px, 0);
    }
    25% {
        clip: rect(34px, 9999px, 55px, 0);
    }
    30% {
        clip: rect(86px, 9999px, 73px, 0);
    }
    35% {
        clip: rect(20px, 9999px, 20px, 0);
    }
    40% {
        clip: rect(26px, 9999px, 60px, 0);
    }
    45% {
        clip: rect(25px, 9999px, 66px, 0);
    }
    50% {
        clip: rect(57px, 9999px, 98px, 0);
    }
    55% {
        clip: rect(5px, 9999px, 46px, 0);
    }
    60% {
        clip: rect(82px, 9999px, 31px, 0);
    }
    65% {
        clip: rect(54px, 9999px, 27px, 0);
    }
    70% {
        clip: rect(28px, 9999px, 99px, 0);
    }
    75% {
        clip: rect(45px, 9999px, 69px, 0);
    }
    80% {
        clip: rect(23px, 9999px, 85px, 0);
    }
    85% {
        clip: rect(54px, 9999px, 84px, 0);
    }
    90% {
        clip: rect(45px, 9999px, 47px, 0);
    }
    95% {
        clip: rect(37px, 9999px, 20px, 0);
    }
    100% {
        clip: rect(4px, 9999px, 91px, 0);
    }
}
@keyframes glitch-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }
    5% {
        clip: rect(52px, 9999px, 74px, 0);
    }
    10% {
        clip: rect(79px, 9999px, 85px, 0);
    }
    15% {
        clip: rect(75px, 9999px, 5px, 0);
    }
    20% {
        clip: rect(67px, 9999px, 61px, 0);
    }
    25% {
        clip: rect(14px, 9999px, 79px, 0);
    }
    30% {
        clip: rect(1px, 9999px, 66px, 0);
    }
    35% {
        clip: rect(86px, 9999px, 30px, 0);
    }
    40% {
        clip: rect(23px, 9999px, 98px, 0);
    }
    45% {
        clip: rect(85px, 9999px, 72px, 0);
    }
    50% {
        clip: rect(71px, 9999px, 75px, 0);
    }
    55% {
        clip: rect(2px, 9999px, 48px, 0);
    }
    60% {
        clip: rect(30px, 9999px, 16px, 0);
    }
    65% {
        clip: rect(59px, 9999px, 50px, 0);
    }
    70% {
        clip: rect(41px, 9999px, 62px, 0);
    }
    75% {
        clip: rect(2px, 9999px, 82px, 0);
    }
    80% {
        clip: rect(47px, 9999px, 73px, 0);
    }
    85% {
        clip: rect(3px, 9999px, 27px, 0);
    }
    90% {
        clip: rect(26px, 9999px, 55px, 0);
    }
    95% {
        clip: rect(42px, 9999px, 97px, 0);
    }
    100% {
        clip: rect(38px, 9999px, 49px, 0);
    }
}
/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 768px) {
    body {
        cursor: auto; /* Enable default cursor on mobile */
    }
    
    .custom-cursor {
        display: none; /* Hide custom cursor on mobile */
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .section {
        padding: 120px 20px 80px;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .mission-grid,
    .coin-details-grid,
    .merch-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .wallet-buttons {
        flex-direction: column;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Disable 3D effects on mobile for performance */
    .tilt-card {
        transform: none !important;
    }
}
@media (max-width: 480px) {
    .hero-tagline {
        font-size: 18px;
    }
    
    .brand-name {
        font-size: 48px;
    }
    
    .countdown-container {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}
/* ===========================================
   MOBILE TOUCH OPTIMIZATIONS
   =========================================== */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects on touch devices */
    .magnetic,
    .magnetic-small {
        transform: none !important;
    }
    
    /* Make touch targets larger */
    .nav-link,
    .submit-btn,
    .wallet-btn,
    .social-link {
        min-height: 48px;
    }
}
/* SVG Icon Enhancements - Professional & Beautiful */
.card-icon svg,
.merch-icon svg {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
    transition: all 0.3s var(--transition-smooth);
}
.card-icon:hover svg,
.merch-icon:hover svg {
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.6));
    transform: scale(1.1) rotate(5deg);
}
.card-icon svg {
    animation: icon-float 3s ease-in-out infinite;
}
@keyframes icon-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}
/* Merch Icon Specific */
.merch-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}
.merch-icon svg {
    width: 48px;
    height: 48px;
}
/* EPIC BACKLIGHT GLOW FOR LOGO - HUGE CENTERPIECE */
.brand-name-container {
    position: relative;
    margin-bottom: 30px;
}
.brand-name-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(
        circle,
        rgba(255, 0, 0, 0.5) 0%,
        rgba(255, 0, 0, 0.4) 20%,
        rgba(255, 0, 0, 0.3) 40%,
        rgba(255, 0, 0, 0.15) 60%,
        transparent 80%
    );
    filter: blur(80px);
    animation: backlight-pulse 4s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}
@keyframes backlight-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}
/* Additional radial burst effect */
.brand-name-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250%;
    height: 250%;
    background: radial-gradient(
        circle,
        rgba(255, 0, 0, 0.3) 0%,
        rgba(255, 0, 0, 0.2) 15%,
        rgba(255, 0, 0, 0.12) 30%,
        transparent 50%
    );
    filter: blur(120px);
    animation: burst-pulse 6s ease-in-out infinite;
    z-index: -2;
    pointer-events: none;
}
@keyframes burst-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
    }
}
/* Mobile adjustments for backlight */
@media (max-width: 768px) {
    .brand-name-container::before {
        width: 200%;
        height: 200%;
        filter: blur(40px);
    }
    
    .brand-name-container::after {
        display: none;
    }
}
/* ===========================================
   PEAK PRODUCTIONS SECTION
   =========================================== */
.about-section {
    background: var(--bg-secondary);
    position: relative;
    padding: 8rem 2rem;
}
.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    margin-top: -2rem;
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-card);
    border: 2px solid var(--accent-red);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.about-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-red);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}
.about-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}
.about-highlight {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    text-align: center;
    margin: 2rem 0;
    letter-spacing: 0.1em;
}
.about-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.about-btn,
.about-btn-secondary {
    position: relative;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    overflow: hidden;
}
.about-btn {
    background: var(--accent-red);
    color: var(--text-primary);
    border: 2px solid var(--accent-red);
}
.about-btn:hover {
    background: var(--accent-red-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-red-glow);
}
.about-btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--text-muted);
}
.about-btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}
.about-btn .btn-bg {
    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;
}
.about-btn:hover .btn-bg {
    left: 100%;
}
.footer-motto {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .about-content {
        padding: 2rem 1.5rem;
    }
    
    .about-heading {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-highlight {
        font-size: 1.5rem;
    }
    
    .about-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-btn,
    .about-btn-secondary {
        width: 100%;
        text-align: center;
    }
}
/* ===========================================
   RENTDUE - FIXED VERSION
   Font Updates + Spacing Fixes + Icon Styling
   =========================================== */
/* FONT IMPORTS */
@import url('https://fonts.cdnfonts.com/css/impact');
@import url('https://fonts.cdnfonts.com/css/horizon');
/* UPDATE FONT VARIABLES */
:root {
    --font-impact: 'Impact', 'Arial Black', sans-serif;
    --font-horizon: 'Horizon', sans-serif;
    --font-dox: 'Oswald', sans-serif; /* Using Oswald as Dox substitute */
    --font-mono: 'Space Mono', monospace;
    --font-body: 'Oswald', sans-serif;
}
/* SECTION SPACING - REDUCED */
.section {
    padding: 60px 20px !important; /* Reduced from 100px+ */
}
.section-content {
    padding: 40px 20px !important; /* Reduced */
}
.hero-section {
    min-height: 90vh !important; /* Reduced from 100vh */
    padding: 80px 20px !important;
}
/* SECTION TITLE FIX - Add glitch + chrome to all */
.section-title {
    position: relative;
    z-index: 2 !important; /* Fix underline overlap */
    margin-bottom: 30px !important; /* Reduced spacing */
    font-family: var(--font-impact) !important;
    text-transform: uppercase;
}
.section-subtitle {
    position: relative;
    z-index: 3 !important; /* Above title underline */
    margin-bottom: 40px !important; /* Reduced */
    font-family: var(--font-body);
}
/* CHROME TEXT EFFECTS */
.chrome-text {
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 25%, #ffffff 50%, #b8b8b8 75%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: chrome-flow 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3))
            drop-shadow(2px 2px 0px rgba(220, 38, 38, 0.4));
}
@keyframes chrome-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
.chrome-text-static {
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 20%, #ffffff 40%, #b8b8b8 60%, #ffffff 80%, #d4d4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2))
            drop-shadow(1px 1px 0px rgba(220, 38, 38, 0.3));
}
/* COIN SECTION - ADD STYLING */
.coin-section {
    background: var(--bg-secondary);
    padding: 60px 20px !important;
}
.coin-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.coin-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border: 2px solid var(--bg-tertiary);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.coin-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}
.coin-icon {
    font-size: 48px;
    color: var(--accent-red);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--accent-red-glow));
}
.coin-icon i {
    display: block;
}
.coin-title {
    font-family: var(--font-impact);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.coin-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.coin-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid var(--bg-tertiary);
    text-align: center;
}
.coin-highlight {
    font-family: var(--font-impact);
    font-size: 28px;
    letter-spacing: 2px;
    margin: 0;
}
/* MERCH SECTION - ENHANCED STYLING */
.merch-section {
    padding: 60px 20px !important;
}
.merch-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 40px;
    background: var(--bg-card);
    border: 2px solid var(--bg-tertiary);
}
.merch-heading {
    font-family: var(--font-impact);
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 25px;
    letter-spacing: 2px;
}
.merch-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}
.merch-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.stat-box {
    background: var(--bg-secondary);
    padding: 30px 20px;
    text-align: center;
    border: 2px solid var(--bg-tertiary);
    transition: all 0.3s var(--transition-smooth);
}
.stat-box:hover {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}
.stat-icon {
    font-size: 36px;
    color: var(--accent-red);
    margin-bottom: 15px;
}
.stat-icon i {
    filter: drop-shadow(0 0 10px var(--accent-red-glow));
}
.stat-num {
    font-family: var(--font-impact);
    font-size: 42px;
    margin-bottom: 10px;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.merch-highlight {
    font-family: var(--font-impact);
    font-size: 26px;
    letter-spacing: 2px;
    margin-top: 30px;
}
/* JOIN SECTION ICONS */
.join-section {
    padding: 60px 20px !important;
}
.join-grid {
    gap: 25px !important; /* Reduced gap */
}
.join-icon {
    font-size: 56px;
    color: var(--accent-red);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--accent-red-glow));
}
.join-icon i {
    display: block;
}
.join-card h3 {
    font-family: var(--font-impact);
    font-size: 24px;
    letter-spacing: 1px;
}
/* FOOTER - FIXED LAYOUT */
.footer-section {
    background: var(--bg-secondary);
    padding: 50px 20px 30px; /* Reduced padding */
    border-top: 2px solid var(--accent-red);
    text-align: center;
}
.footer-logo-small {
    width: 80px; /* Small logo */
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 0 10px var(--accent-red-glow));
}
.footer-tagline {
    font-family: var(--font-impact);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.footer-links {
    display: flex;
    justify-content: center; /* Centered */
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}
.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--accent-red-glow);
}
.footer-copyright {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin: 20px 0 10px;
}
.footer-tagline-small {
    font-family: var(--font-impact);
    font-size: 16px;
    color: var(--accent-red);
    letter-spacing: 3px;
    margin-top: 15px;
}
/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .section {
        padding: 40px 15px !important;
    }
    
    .coin-details-grid {
        grid-template-columns: 1fr;
    }
    
    .merch-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* LOGO FIXES */
.nav-logo-img { height: 120px !important; }
.loading-logo { max-width: 300px !important; }
.footer-logo-small { width: 120px !important; }

/* ===========================================
   ENHANCED RESPONSIVE DESIGN
   Optimized for ALL devices
   =========================================== */

/* FLEXIBLE IMAGES - ALL DEVICES */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* TOUCH-FRIENDLY TARGETS - MOBILE */
@media (max-width: 1024px) {
    button, a, .magnetic {
        min-height: 44px; /* iOS touch target minimum */
        min-width: 44px;
        padding: 12px;
    }
    
    .nav-link {
        padding: 15px !important;
    }
}

/* IPAD LANDSCAPE & SMALLER LAPTOPS (1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .section {
        padding: 50px 40px !important;
    }
    
    .hero-tagline {
        font-size: clamp(48px, 8vw, 72px) !important;
    }
    
    .mission-grid,
    .coin-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .burn-widget-combined {
        max-width: 700px;
        padding: 50px 30px;
    }
    
    .countdown-box {
        min-width: 90px;
        padding: 18px;
    }
    
    .countdown-number {
        font-size: 42px;
    }
}

/* DESKTOP & LARGE SCREENS (1200px+) */
@media (min-width: 1200px) {
    .section {
        padding: 80px 60px !important;
    }
    
    .section-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .hero-section {
        min-height: 100vh;
    }
    
    .burn-widget-combined {
        max-width: 900px;
        padding: 70px 50px;
    }
    
    .mission-grid {
        gap: 40px;
    }
    
    /* Enhanced animations for desktop */
    .magnetic:hover {
        transform: scale(1.05);
    }
    
    .tilt-card:hover {
        transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02);
    }
}

/* ULTRA-WIDE SCREENS (1600px+) */
@media (min-width: 1600px) {
    .section-content {
        max-width: 1600px;
    }
    
    .hero-tagline {
        font-size: clamp(60px, 8vw, 100px) !important;
    }
}

/* MOBILE LANDSCAPE MODE */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 40px 20px !important;
    }
    
    .hero-tagline {
        font-size: clamp(32px, 5vw, 48px) !important;
        margin: 10px 0 !important;
    }
    
    .burn-widget-combined {
        padding: 30px 20px;
        margin: 30px auto;
    }
}

/* SMALL MOBILE (320px-480px) */
@media (max-width: 480px) {
    .section {
        padding: 30px 15px !important;
    }
    
    .hero-tagline {
        font-size: clamp(32px, 8vw, 48px) !important;
        margin: 80px 0 10px !important;
    }
    
    .burn-widget-combined {
        padding: 40px 20px;
        margin: 30px auto;
    }
    
    .countdown-boxes {
        gap: 10px;
    }
    
    .countdown-box {
        min-width: 70px;
        padding: 12px;
    }
    
    .countdown-number {
        font-size: 32px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .ticker-amount {
        font-size: 42px !important;
    }
    
    .stat-value {
        font-size: 20px !important;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }
    
    .nav-links {
        gap: 10px !important;
    }
    
    .nav-link {
        font-size: 12px !important;
        padding: 10px !important;
    }
}

/* PRINT STYLES */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .custom-cursor,
    #particle-canvas,
    .scroll-progress-bar,
    #loading-screen,
    nav {
        display: none !important;
    }
}

/* REDUCE MOTION FOR ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   GLITCH HERO SECTION
   ======================================== */

.glitch-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.glitch-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .glitch-hero {
        min-height: 30vh;
        padding: 3rem 1rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }
}

@media (max-width: 480px) {
    .glitch-hero {
        min-height: 25vh;
        padding: 2rem 1rem 1rem;
    }
}

