/* BONKICORN - 70s Retro Themed Styles */

:root {
    /* ULTRA EXTREME Vibrant Color Palette (OG Bright AF) */
    --color-orange: #FF7700;
    --color-purple: #FF00FF;
    --color-yellow: #FFFF00;
    --color-green: #00FF99;
    --color-pink: #FF10F0;
    --color-brown: #BF8040;
    --color-blue: #00FFFF;
    --color-red: #FF0055;
    --color-neon-green: #39FF14;
    --color-electric-blue: #0FF0FC;
    --color-magenta: #FF00FF;
    --color-lime: #CCFF00;

    /* Background colors */
    --bg-dark: #8000FF;
    --bg-light: #F8FBFF;

    /* Font families */
    --font-display: 'Monoton', cursive;
    --font-heading: 'Rubik Mono One', sans-serif;
    --font-body: 'Helvetica', sans-serif;
    --font-accent: 'Pacifico', cursive;

    /* Spacing & Sizing */
    --hero-spacing: 1.4rem;
    --section-spacing: 2rem;
    --text-glow: 0 0 15px rgba(255, 0, 255, 0.8), 0 0 25px rgba(0, 255, 255, 0.6);
}

/* Global Styles */
body {
    font-family: var(--font-body);
    color: var(--color-magenta); 
    background: 
        linear-gradient(90deg, rgba(255,255,0,0.95) 0%, rgba(173,255,47,0.95) 50%, rgba(255,255,0,0.95) 100%);
    background-color: #d1ff00; /* Bright lime/yellow base */
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 19px; /* Increased base font size for better readability */
    position: relative;
    letter-spacing: 0.02em;
}

/* Global font enhancements for consistency and readability */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 1px;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    font-weight: bold;
    text-stroke: 1px #000;
}

p {
    font-size: 1.1rem;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    letter-spacing: 0.3px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: normal;
}

/* Add subtle text borders to all text elements */
span, div, a, button, .btn {
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

/* Section enhancements for better borders and shading */
section {
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    padding: 15px 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(68, 231, 242, 0.7) 25%, rgba(68, 231, 242, 0.7) 26%, transparent 27%, transparent 74%, rgba(68, 231, 242, 0.7) 75%, rgba(68, 231, 242, 0.7) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 0, 255, 0.7) 25%, rgba(255, 0, 255, 0.7) 26%, transparent 27%, transparent 74%, rgba(255, 0, 255, 0.7) 75%, rgba(255, 0, 255, 0.7) 76%, transparent 77%, transparent);
    background-size: 60px 60px;
    z-index: -1;
    animation: gridPulse 15s infinite linear;
}

@keyframes gridPulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-magenta);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, var(--text-glow);
}

.retro-gradient-text {
    color: var(--color-magenta);
    font-size: 4rem;
    letter-spacing: 6px; /* Increased letter spacing even more */
    text-shadow: 
        -3px -3px 0 #000,  
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000,
        5px 5px 0 rgba(0, 255, 255, 0.9),
        8px 8px 0 rgba(75, 0, 255, 0.6);
    margin-bottom: 45px;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
    text-align: center;
    transform: perspective(500px) rotateX(2deg);
    animation: textPulse 2.5s infinite alternate;
}

@keyframes textPulse {
    0% { text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000, 
         3px 3px 0 rgba(0, 255, 255, 0.45), 4px 4px 0 rgba(75, 0, 255, 0.3); }
    100% { text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000, 
          3px 3px 0 rgba(255, 0, 255, 0.45), 6px 6px 0 rgba(0, 255, 255, 0.35); }
}

.tokenomics-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #39FF14, #00FFFF, #FF00FF, #FFFF00); /* Wild rainbow gradient */
    background-size: 300% 300%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    box-shadow: 
        0 0 30px rgba(57, 255, 20, 1),
        0 0 60px rgba(57, 255, 20, 0.7);
    border: 6px double rgba(255, 255, 255, 0.9);
    transform: rotate(-8deg);
    transition: all 0.3s ease;
    animation: spinGlow 8s infinite alternate, backgroundShift 5s infinite linear;
    position: relative;
    z-index: 5;
}

@keyframes spinGlow {
    0% { transform: rotate(-8deg) scale(1); box-shadow: 0 0 30px rgba(57, 255, 20, 1), 0 0 60px rgba(57, 255, 20, 0.7); }
    50% { transform: rotate(0deg) scale(1.1); box-shadow: 0 0 40px rgba(255, 0, 255, 1), 0 0 80px rgba(255, 0, 255, 0.7); }
    100% { transform: rotate(8deg) scale(1); box-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 60px rgba(0, 255, 255, 0.7); }
}

@keyframes backgroundShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tokenomics-icon:hover {
    transform: rotate(720deg) scale(1.15);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.tokenomics-icon i {
    font-size: 65px;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    animation: iconPulse 2s infinite alternate;
    transform: rotateZ(0deg);
    transition: all 0.5s ease;
}

@keyframes iconPulse {
    0% { transform: scale(1); text-shadow: 0 0 15px rgba(255, 255, 255, 0.9); }
    100% { transform: scale(1.2); text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 0, 255, 0.8); }
}

.tokenomics-icon:hover i {
    transform: rotateZ(360deg) scale(1.3);
}

.token-title {
    color: #FFFF00;
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 10px rgba(255, 255, 0, 0.45),
        0 0 20px rgba(255, 119, 0, 0.35);
    animation: titleFlash 4s infinite alternate;
    transform: perspective(500px) rotateX(5deg);
}

@keyframes titleFlash {
    0% { text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 
        0 0 10px rgba(255, 255, 0, 0.45), 0 0 20px rgba(255, 119, 0, 0.35); }
    50% { text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 
        0 0 12px rgba(57, 255, 20, 0.45), 0 0 25px rgba(57, 255, 20, 0.35); }
    100% { text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 
        0 0 10px rgba(0, 255, 255, 0.45), 0 0 20px rgba(0, 255, 255, 0.35); }
}

.token-value {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
    display: block;
    letter-spacing: 2px;
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 15px rgba(255, 0, 255, 0.8);
    transform: scale(1);
    animation: valueJump 2s infinite;
}

@keyframes valueJump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tokenomics-description {
    color: rgba(255, 255, 255, 1);
    font-style: italic;
    font-size: 1.4rem;
    word-wrap: break-word;
    padding: 0 5px;
    line-height: 1.4;
    text-align: center;
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 10px rgba(0, 255, 255, 0.7);
    position: relative;
    z-index: 10;
}

.retro-glass-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 100, 255, 0.2) 25%, 
        rgba(100, 200, 255, 0.2) 50%, 
        rgba(150, 255, 255, 0.3) 75%, 
        rgba(255, 255, 255, 0.3) 100%);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    padding: 40px;
    border: 3px solid rgba(255, 125, 255, 0.6);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.4),
        0 0 20px rgba(255, 0, 255, 0.5),
        0 0 40px rgba(0, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    transform: perspective(800px) rotateX(1deg);
}

.retro-glass-card .about-text p {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: white;
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 10px rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 0 15px;
}

.about-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 100, 255, 0.25) 25%, 
        rgba(100, 200, 255, 0.25) 50%, 
        rgba(150, 255, 255, 0.3) 75%, 
        rgba(255, 255, 255, 0.3) 100%);
    border: 3px solid rgba(255, 125, 255, 0.6);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.4),
        0 0 20px rgba(255, 0, 255, 0.5),
        0 0 40px rgba(0, 255, 255, 0.4);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card-full {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 100, 255, 0.25) 25%, 
        rgba(100, 200, 255, 0.25) 50%, 
        rgba(150, 255, 255, 0.3) 75%, 
        rgba(255, 255, 255, 0.3) 100%);
    border: 3px solid rgba(255, 125, 255, 0.6);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.4),
        0 0 20px rgba(255, 0, 255, 0.5),
        0 0 40px rgba(0, 255, 255, 0.4);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 255, 0.4);
}

.about-unicorn-container {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.about-center-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #FF00FF;
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.9),
        0 0 60px rgba(0, 255, 255, 0.7);
}

.about-text-full {
    padding: 20px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.about-section {
    background: 
        linear-gradient(45deg, rgba(255, 0, 255, 0.4), rgba(0, 255, 255, 0.4)),
        url('/static/images/friends.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 40px;
    padding-bottom: 40px;
    animation: bgGradient 15s infinite alternate;
}

@keyframes bgGradient {
    0% { background-blend-mode: soft-light; }
    50% { background-blend-mode: overlay; }
    100% { background-blend-mode: color-dodge; }
}

.retro-glass-card .unicorn-image-container {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.4);
    margin-bottom: 20px;
    height: 100%;
}

.retro-glass-card .unicorn-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.retro-glass-card .unicorn-image:hover {
    transform: scale(1.1);
}

/* Ticker Tape Animation */
.ticker-container {
    position: fixed;
    top: 60px; /* Position below navbar */
    left: 0;
    width: 100%;
    height: 40px;
    background: #ff00ff; /* Bright pink */
    overflow: hidden;
    z-index: 1500; /* Below navbar but above content */
    box-shadow: 
        0 0 15px rgba(255, 0, 255, 0.8),
        0 0 30px rgba(0, 255, 255, 0.6);
}

.ticker-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.15rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    font-weight: bold;
    white-space: nowrap;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        45deg, 
        var(--color-red),
        var(--color-orange),
        var(--color-yellow),
        var(--color-green),
        var(--color-blue),
        var(--color-purple)
    );
    border-radius: 10px;
}

/* Section Styles */
section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    clear: both;
    border-bottom: 8px solid transparent;
    border-image: linear-gradient(
        to right,
        var(--color-red),
        var(--color-orange),
        var(--color-yellow),
        var(--color-green),
        var(--color-blue),
        var(--color-purple)
    ) 1;
    background-color: var(--bg-dark);
}

section:not(.hero-section) {
    margin-top: 0;
    padding-top: 80px;
}

.section-header {
    margin-bottom: 70px;
    position: relative;
}

.section-header::before {
    content: '🦄';
    position: absolute;
    font-size: 4rem;
    left: 50%;
    top: -55px;
    transform: translateX(-50%);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.9);
    animation: bounce 2s infinite alternate;
    z-index: -1;
}

/* Different unicorn positioning for different sections */
.about-section .section-header::before {
    z-index: -1;
    opacity: 0.8;
}

.roadmap-section .section-header::before,
.meme-showcase-section .section-header::before,
.community-section .section-header::before {
    z-index: -1; /* Behind the header text */
    opacity: 0.8;
    font-size: 5rem;
}

@keyframes bounce {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-50%) translateY(-10px); }
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--color-purple);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 4px rgba(255, 0, 255, 0.2),
        0 0 8px rgba(0, 255, 255, 0.15);
    text-align: center;
    transform: perspective(500px) rotateX(3deg);
}

@keyframes headerPulse {
    0% { text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000, 
         0 0 8px rgba(255, 0, 255, 0.4), 0 0 15px rgba(0, 255, 255, 0.3); }
    100% { text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000, 
          0 0 12px rgba(255, 0, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.4), 0 0 30px rgba(255, 255, 0, 0.25); }
}

.about-title {
    font-family: 'Rubik Mono One', sans-serif;
    font-size: 3.5rem;
    color: #FF00FF;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 
        -4px -4px 0 #000,  
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        0 0 15px rgba(255, 0, 255, 0.8);
    text-align: center;
    line-height: 1.4;
    -webkit-text-stroke: 1px #000;
    animation: glowText 2s infinite alternate;
}

@keyframes glowText {
    0% { text-shadow: -4px -4px 0 #000, 4px -4px 0 #000, -4px 4px 0 #000, 4px 4px 0 #000, 0 0 15px rgba(255, 0, 255, 0.8); }
    100% { text-shadow: -4px -4px 0 #000, 4px -4px 0 #000, -4px 4px 0 #000, 4px 4px 0 #000, 0 0 25px rgba(255, 0, 255, 1), 0 0 30px rgba(0, 255, 255, 0.8); }
}

.retro-divider {
    height: 4px;
    width: 100px;
    background: linear-gradient(
        to right, 
        var(--color-red),
        var(--color-orange),
        var(--color-yellow),
        var(--color-green),
        var(--color-blue),
        var(--color-purple)
    );
    margin: 0 auto 20px;
    border-radius: 2px;
}

.rainbow-divider-full {
    height: 15px;
    width: 100%;
    background: linear-gradient(
        to right,
        var(--color-red),
        var(--color-orange),
        var(--color-yellow),
        var(--color-green),
        var(--color-blue),
        var(--color-purple)
    );
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 0 20px rgba(255, 0, 228, 0.7);
}

/* Navigation */
.navbar {
    background-color: #1e0930; /* Dark purple */
    padding: 15px 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 60px;
}

.navbar-brand {
    font-family: var(--font-display);
    color: var(--color-pink);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.top-logo-text {
    color: #ff00ff;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 15px rgba(255, 0, 255, 0.8);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: rotate(20deg);
}

.nav-link {
    color: var(--bg-light) !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        to right, 
        var(--color-yellow),
        var(--color-orange)
    );
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    height: auto;
    min-height: 900px;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, 
        #ff00ff, 
        #00ffff, 
        #ffff00, 
        #ff00ff);
    background-size: 400% 400%;
    position: relative;
    padding: 50px 0 20px 0;
    overflow: hidden;
    margin-top: 50px; /* Reduced by half - adjusted for navbar + ticker */
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.psychedelic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%),
        linear-gradient(
            135deg,
            rgba(255, 0, 255, 0.4),
            rgba(0, 255, 255, 0.4),
            rgba(255, 255, 0, 0.4),
            rgba(255, 0, 255, 0.4)
        );
    background-size: 400% 400%;
    z-index: 1;
    mix-blend-mode: overlay;
    animation: rainbowFlow 10s infinite linear;
}

@keyframes rainbowFlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes hueRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px 70px 40px;
    background-color: rgba(13, 7, 53, 0.6);
    border-radius: 20px;
    border: 3px solid rgba(255, 0, 228, 0.8);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 0, 255, 0.9),
        0 0 60px rgba(0, 255, 255, 0.7),
        inset 0 0 30px rgba(255, 0, 255, 0.5);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
    margin-top: 20px;
    margin-bottom: 40px;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    margin: 80px auto 60px auto;
}

.hero-image, .hero-video, .hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 228, 0.7);
    transition: all 0.3s ease;
    object-fit: contain;
}

.hero-video {
    display: block;
    margin: 0 auto;
    max-height: 350px;
}

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

.btn-dexscreener {
    background-color: var(--color-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 238, 255, 0.4);
}

.btn-dexscreener:hover {
    background-color: #00c5ff;
    color: white;
    transform: translateY(-5px);
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 7rem);
    color: white;
    margin-bottom: 35px;
    letter-spacing: clamp(2px, 1.5vw, 10px);
    text-shadow: 
        -4px -4px 0 #000,  
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        0 0 30px var(--color-purple),
        0 0 50px var(--color-pink),
        0 0 70px var(--color-blue),
        0 0 90px var(--color-neon-green);
    animation: titlePulse 2.5s infinite alternate;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
    text-align: center;
    transform: perspective(500px) rotateX(2deg);
    word-break: keep-all;
    white-space: nowrap;
    overflow: visible;
}

@keyframes titlePulse {
    0% { text-shadow: 0 0 10px var(--color-purple), 0 0 20px var(--color-pink), 0 0 30px var(--color-blue), 0 0 40px var(--color-electric-blue); }
    33% { text-shadow: 0 0 12px var(--color-pink), 0 0 22px var(--color-blue), 0 0 32px var(--color-neon-green), 0 0 42px var(--color-green); }
    66% { text-shadow: 0 0 15px var(--color-blue), 0 0 25px var(--color-neon-green), 0 0 35px var(--color-yellow), 0 0 45px var(--color-orange); }
    100% { text-shadow: 0 0 10px var(--color-orange), 0 0 20px var(--color-yellow), 0 0 30px var(--color-red), 0 0 40px var(--color-pink); }
}

@keyframes buttonGlow {
    0% { box-shadow: 0 0 20px rgba(255, 16, 240, 0.9), 0 0 40px rgba(0, 255, 255, 0.6); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 0, 0.9), 0 0 60px rgba(57, 255, 20, 0.6); }
    100% { box-shadow: 0 0 20px rgba(255, 119, 0, 0.9), 0 0 40px rgba(255, 0, 255, 0.6); }
}

@keyframes textGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 16, 240, 1)); }
    50% { filter: drop-shadow(0 0 25px rgba(0, 255, 255, 1)); }
    100% { filter: drop-shadow(0 0 10px rgba(255, 255, 0, 1)); }
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 3rem; /* Even larger subtitle for better visibility */
    color: var(--color-yellow);
    margin-bottom: 45px;
    letter-spacing: 4px; /* Increased letter spacing */
    text-shadow: 
        -3px -3px 0 #000,  
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000,
        0 0 12px rgba(255, 255, 0, 0.5),
        0 0 22px rgba(255, 119, 0, 0.45),
        0 0 32px rgba(57, 255, 20, 0.4);
    animation: subtitlePulse 2.5s infinite alternate;
    transform: perspective(500px) rotateX(-1deg);
    text-align: center;
}

@keyframes subtitlePulse {
    0% { text-shadow: 0 0 10px rgba(255, 255, 0, 0.5), 0 0 20px rgba(255, 119, 0, 0.4); }
    50% { text-shadow: 0 0 15px rgba(57, 255, 20, 0.5), 0 0 25px rgba(0, 255, 255, 0.4); }
    100% { text-shadow: 0 0 10px rgba(255, 255, 0, 0.5), 0 0 20px rgba(255, 119, 0, 0.4); }
}

.rainbow-top {
    width: 180px;
    margin-bottom: 20px;
}

.contract-address-container {
    margin-bottom: 30px;
    position: relative;
}

.animated-border-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(80, 0, 120, 0.6));
    border-radius: 15px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    border: 4px solid transparent;
    text-align: center;
    position: relative;
    max-width: 620px;
    margin: 0 auto;
    animation: borderAnimation 4s linear infinite;
    box-shadow: 
        0 0 35px rgba(255, 0, 255, 0.9),
        0 0 55px rgba(0, 255, 255, 0.6);
    transform: perspective(800px) rotateX(2deg);
    backdrop-filter: blur(5px);
}

@keyframes borderAnimation {
    0% { border-color: #ff00ff; }
    25% { border-color: #00ffff; }
    50% { border-color: #ffff00; }
    75% { border-color: #39ff14; }
    100% { border-color: #ff00ff; }
}

.contract-label {
    color: var(--color-yellow);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 12px;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 15px rgba(255, 255, 0, 0.8);
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.contract-address {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff95;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 80, 40, 0.7));
    padding: 15px 20px;
    letter-spacing: 2.5px;
    border-radius: 10px;
    word-break: break-all;
    max-width: 100%;
    overflow-wrap: break-word;
    text-shadow: 0 0 15px rgba(0, 255, 149, 0.9);
    border: 2px solid rgba(0, 255, 149, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 149, 0.5);
    animation: addressGlow 3s infinite alternate;
}

@keyframes addressGlow {
    0% { text-shadow: 0 0 10px rgba(0, 255, 149, 0.8); box-shadow: 0 0 15px rgba(0, 255, 149, 0.4); }
    100% { text-shadow: 0 0 20px rgba(0, 255, 149, 1); box-shadow: 0 0 30px rgba(0, 255, 149, 0.7); }
}

.contract-address-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.copy-btn {
    background: linear-gradient(45deg, var(--color-green), var(--color-neon-green));
    color: black;
    border: 2px solid white;
    border-radius: 8px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.7);
    animation: copyBtnPulse 2s infinite alternate;
}

@keyframes copyBtnPulse {
    0% { box-shadow: 0 0 10px rgba(57, 255, 20, 0.7); transform: scale(1); }
    100% { box-shadow: 0 0 20px rgba(57, 255, 20, 1); transform: scale(1.05); }
}

.copy-btn:hover {
    background: linear-gradient(45deg, var(--color-yellow), var(--color-green));
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.8);
}

.copy-message {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-green);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-message.show {
    opacity: 1;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.9);
    outline: 2px solid rgba(255, 16, 240, 0.7);
    margin: 5px;
    display: inline-block;
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 20px rgba(255, 16, 240, 0.7),
        0 0 40px rgba(0, 255, 255, 0.5);
    animation: buttonGlow 3s infinite alternate;
    color: white;
}

.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: all 0.6s;
    z-index: -1;
}

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

.btn-buy {
    background: linear-gradient(45deg, var(--color-neon-green), var(--color-green), var(--color-electric-blue), var(--color-neon-green));
    background-size: 400% 100%;
    color: white;
    border: 3px solid rgba(255, 255, 255, 1);
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 255, 255, 1);
    animation: buyBtnPulse 3s infinite alternate, gradientShift 5s infinite ease;
    font-weight: 900;
    font-size: 1.8rem;
    box-shadow: 
        0 0 30px rgba(57, 255, 20, 0.9),
        0 0 60px rgba(0, 255, 255, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.6);
}

@keyframes buyBtnPulse {
    0% { transform: scale(1.15) translateY(0); box-shadow: 0 0 25px rgba(57, 255, 20, 1), 0 0 50px rgba(0, 255, 255, 0.8); }
    100% { transform: scale(1.2) translateY(-5px); box-shadow: 0 0 35px rgba(57, 255, 20, 1), 0 0 70px rgba(0, 255, 255, 0.8); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-buy:hover {
    background-color: var(--color-blue);
    color: white;
    transform: translateY(-5px);
}

.btn-learn {
    background: linear-gradient(45deg, rgba(255,255,0,0.2), rgba(255,166,0,0.2));
    color: var(--color-yellow);
    border: 3px solid var(--color-yellow);
    width: 220px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
    box-shadow: 
        0 0 20px rgba(255, 255, 0, 0.5),
        0 0 30px rgba(255, 119, 0, 0.3);
    animation: learnBtnPulse 3s infinite alternate;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

@keyframes learnBtnPulse {
    0% { box-shadow: 0 0 15px rgba(255, 255, 0, 0.6), 0 0 25px rgba(255, 119, 0, 0.4); }
    100% { box-shadow: 0 0 25px rgba(255, 255, 0, 0.8), 0 0 40px rgba(255, 119, 0, 0.6); }
}

.btn-learn:hover {
    background: linear-gradient(45deg, var(--color-yellow), var(--color-orange));
    color: black;
    transform: translateY(-5px) scale(1.05);
    font-weight: 800;
    text-shadow: none;
}

.btn-dexscreener {
    width: 220px;
    background: linear-gradient(45deg, rgba(0,255,255,0.3), rgba(0,128,255,0.3));
    border: 3px solid var(--color-blue);
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.5),
        0 0 30px rgba(0, 128, 255, 0.3);
    animation: dexBtnPulse 3s infinite alternate;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes dexBtnPulse {
    0% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.6), 0 0 25px rgba(0, 128, 255, 0.4); }
    100% { box-shadow: 0 0 25px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 128, 255, 0.6); }
}

.disco-ball {
    position: absolute;
    top: 50px;
    right: 10%;
    width: 100px;
    height: 100px;
    z-index: 2;
    animation: spin 10s linear infinite, sway 5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sway {
    0% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(30px) rotate(180deg); }
    100% { transform: translateX(0) rotate(360deg); }
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 0, 228, 0.1),
        rgba(0, 238, 255, 0.1),
        rgba(255, 236, 0, 0.1)
    );
    opacity: 0.6;
    animation: gradientShift 15s infinite linear;
}

.about-section {
    background-color: rgba(128, 0, 255, 0.3);
    position: relative;
}

.about-text p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.about-text {
    padding: 30px;
    position: relative;
    z-index: 1;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.6rem; /* Much larger font - boomer approved */
    margin-bottom: 25px;
    color: white; /* Better contrast */
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    line-height: 1.5;
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.unicorn-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    display: flex;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.unicorn-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
    animation: rise 15s ease-in infinite;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--color-purple), var(--color-blue));
    bottom: 50px;
    left: 30%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--color-pink), var(--color-red));
    bottom: 20px;
    left: 60%;
    animation-delay: 5s;
}

.bubble-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--color-green), var(--color-yellow));
    bottom: 40px;
    left: 45%;
    animation-delay: 2s;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-300px) scale(0.8);
        opacity: 0;
    }
}

/* Tokenomics Section */
.tokenomics-section {
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(
            45deg,
            rgba(255, 0, 228, 0.3),
            rgba(0, 238, 255, 0.3)
        );
    color: white;
    position: relative;
    overflow: hidden;
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/logo.gif');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    animation: colorShift 10s infinite alternate;
}

@keyframes colorShift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(90deg); }
}

.tokenomics-item {    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 700px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.1);
}

.tokenomics-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-orange);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 0, 255, 0.5);
}

.tokenomics-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.tokenomics-icon {
    font-size: 3rem;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.8), rgba(0, 255, 153, 0.7));
    color: white;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tokenomics-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-yellow);
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 15px rgba(255, 255, 0, 0.9);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tokenomics-card p {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 10px rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.tokenomics-description {
    font-size: 1.6rem !important;
    opacity: 0.9;
    font-style: italic;
    color: #00FF9F;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 10px;
}

.token-distribution {
    margin-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 236, 0, 0.7), 0 0 40px rgba(0, 255, 159, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(255, 0, 228, 0.7), 0 0 50px rgba(0, 238, 255, 0.3); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 236, 0, 0.7), 0 0 40px rgba(0, 255, 159, 0.3); }
}

.distribution-item {
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.distribution-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
    border-left-color: var(--color-green);
}

.distribution-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-yellow);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.distribution-bar {
    height: 25px;
    background: linear-gradient(
        to right,
        var(--color-orange),
        var(--color-yellow)
    );
    border-radius: 5px;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.distribution-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Roadmap/Utility Section */
.roadmap-section {
    background-color: var(--bg-dark);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-image: 
        linear-gradient(
            135deg,
            rgba(208, 7, 255, 0.5),
            rgba(255, 0, 60, 0.5),
            rgba(255, 93, 0, 0.5),
            rgba(255, 236, 0, 0.5)
        ),
        url('/static/images/uni_ride_dog.gif');
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
    background-attachment: fixed;
    animation: slowHueRotate 20s infinite linear;
}

@keyframes slowHueRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.roadmap-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        linear-gradient(90deg, rgba(255, 0, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(60deg) rotateZ(45deg);
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

/* Utility Section */
.utility-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.utility-item {
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.utility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 255, 0.6);
}

.utility-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 20px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 0, 0.8), rgba(255, 16, 240, 0.7));
    color: white;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: iconPulse 3s infinite alternate;
}

@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
    100% { transform: scale(1.1); box-shadow: 0 6px 20px rgba(255, 0, 255, 0.5); }
}

.utility-item h3 {
    color: var(--color-yellow);
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 10px rgba(255, 255, 0, 0.8);
    letter-spacing: 1px;
    text-align: center;
}

.utility-item p {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 8px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 10px;
}

.utility-image-container {
    margin: 20px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 0, 228, 0.7),
        0 0 80px rgba(0, 238, 255, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.4);
    outline: 3px solid rgba(255, 0, 228, 0.6);
    transform: perspective(1000px) rotateY(-3deg);
    transition: all 0.5s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
}

.utility-image-container:hover {
    transform: perspective(1000px) rotateY(3deg) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 236, 0, 0.8),
        0 0 100px rgba(0, 255, 159, 0.6);
    border-color: rgba(255, 236, 0, 0.7);
    outline-color: rgba(0, 255, 255, 0.8);
}

.utility-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    transition: all 0.5s ease;
    filter: saturate(1.4) contrast(1.2) brightness(1.1);
    display: block;
}

.utility-image:hover {
    transform: scale(1.03);
    filter: saturate(1.6) contrast(1.3) brightness(1.2) hue-rotate(3deg);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    width: 10px;
    background: linear-gradient(
        to bottom,
        var(--color-red),
        var(--color-orange),
        var(--color-yellow),
        var(--color-green),
        var(--color-blue),
        var(--color-purple)
    );
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    box-shadow: 
        0 0 15px rgba(255, 0, 60, 0.6),
        0 0 30px rgba(0, 238, 255, 0.4);
    animation: timelineGlow 4s infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: 0 0 20px rgba(255, 0, 85, 0.9), 0 0 40px rgba(0, 255, 255, 0.7); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 0, 0.9), 0 0 50px rgba(0, 255, 153, 0.7); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 0 0 40px rgba(255, 119, 0, 0.7); }
}

.roadmap-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    left: 0;
    margin-bottom: 50px;
}

.roadmap-item:nth-child(even) {
    left: 50%;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background: var(--color-orange);
    border: 4px solid var(--bg-dark);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.roadmap-item:nth-child(even)::before {
    left: -15px;
}

.roadmap-item:nth-child(1)::before {
    background: var(--color-red);
}

.roadmap-item:nth-child(2)::before {
    background: var(--color-yellow);
}

.roadmap-item:nth-child(3)::before {
    background: var(--color-green);
}

.roadmap-item:nth-child(4)::before {
    background: var(--color-blue);
}

.roadmap-content {
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(13, 7, 53, 0.9));
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 0, 228, 0.3);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 238, 255, 0.4);
    border-color: rgba(255, 236, 0, 0.3);
}

.roadmap-content::after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent rgba(13, 7, 53, 0.9);
    top: 15px;
    right: -15px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 228, 0.3));
}

.roadmap-item:nth-child(even) .roadmap-content::after {
    border-width: 15px 15px 15px 0;
    border-color: transparent rgba(13, 7, 53, 0.9) transparent transparent;
    left: -15px;
    right: auto;
    filter: drop-shadow(0 0 5px rgba(255, 0, 228, 0.3));
}

.roadmap-content h3 {
    margin-top: 0;
    font-size: 2rem;
    color: var(--color-yellow);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 236, 0, 0.6);
}

.roadmap-content ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
}

.roadmap-content ul li {
    font-size: 1.4rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    line-height: 1.4;
}

.roadmap-content ul li:before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 236, 0, 0.7));
}

.roadmap-content li {
    margin-bottom: 8px;
    position: relative;
}

/* Community Section */
.community-section {
    background: 
        linear-gradient(
            135deg, 
            rgba(13, 7, 53, 0.7), 
            rgba(255, 0, 255, 0.5),
            rgba(0, 200, 255, 0.4)
        ),
        url('/static/images/uni_ride_dog.gif');
    color: white;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: fixed;
}

.community-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    z-index: 0; /* Keep this only once */
    animation: rotate 60s linear infinite;
}
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gridMove {
    0% {
        transform: rotateX(60deg) rotateZ(45deg) translateY(0);
    }
    100% {
        transform: rotateX(60deg) rotateZ(45deg) translateY(60px);
    }
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.social-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(13, 7, 53, 0.8), rgba(0, 0, 0, 0.9));
    border-radius: 20px;
    text-decoration: none;
    color: white;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    outline: 2px solid rgba(255, 0, 228, 0.5);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 0, 228, 0.4),
        0 0 40px rgba(0, 238, 255, 0.2);
    transition: all 0.3s ease;
    transform: perspective(800px) rotateY(5deg);
    backdrop-filter: blur(5px);
}

.social-link:hover {
    transform: perspective(800px) rotateY(-5deg) translateY(-10px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 236, 0, 0.5),
        0 0 60px rgba(0, 255, 159, 0.3);
    border-color: rgba(255, 236, 0, 0.4);
}

.social-link i {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.social-link.telegram {
    border-color: #0088cc;
}

.social-link.telegram:hover {
    background-color: #0088cc;
    transform: translateY(-10px) rotate(5deg);
}

.social-link.twitter {
    border-color: #1DA1F2;
}

.social-link.twitter:hover {
    background-color: #1DA1F2;
    transform: translateY(-10px) rotate(-5deg);
}

.social-link.discord {
    border-color: #7289DA;
}

.social-link.discord:hover {
    background-color: #7289DA;
    transform: translateY(-10px) rotate(5deg);
}

.social-link.reddit {
    border-color: #FF4500;
}

.social-link.reddit:hover {
    background-color: #FF4500;
    transform: translateY(-10px) rotate(-5deg);
}

.social-link.tiktok {
    border-color: #69c9d0;
}

.social-link.tiktok:hover {
    background-color: #000000;
    transform: translateY(-10px) rotate(5deg);
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    /* Fix body font size for mobile */
    body {
        font-size: 14px;
    }

    /* Better mobile navigation */
    .navbar-brand {
        font-size: 1.3rem;
    }

    .top-logo-text {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .navbar-logo {
        height: 30px;
        width: 30px;
    }

    /* Mobile hero section adjustments */
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem) !important;
        line-height: 1.1;
        margin-bottom: 15px;
        letter-spacing: clamp(1px, 2vw, 4px) !important;
        padding: 0 10px;
        white-space: nowrap;
        overflow: visible;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.3;
        padding: 0 15px;
        word-wrap: break-word;
    }

    /* Fix social links for mobile */
    .social-links {
        gap: 15px;
        padding: 0 15px;
        justify-content: center;
    }

    .social-link {
        width: 70px;
        height: 70px;
        padding: 15px;
        transform: none;
    }

    .social-link:hover {
        transform: translateY(-5px);
    }

    .social-link i {
        font-size: 2rem;
        margin: 0;
    }

    /* Section headers for mobile - reduced glow effects */
    .section-header h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        line-height: 1.2;
        word-wrap: break-word;
        padding: 0 15px;
        text-shadow: 
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
    }

    .about-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        line-height: 1.2;
        word-wrap: break-word;
        padding: 0 15px;
        text-shadow: 
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
    }

    /* Better mobile paragraph spacing - simplified text shadow */
    p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 12px;
        padding: 0 10px;
        word-wrap: break-word;
        text-shadow: 
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
    }

    /* Fix contract address for mobile */
    .contract-address-container {
        margin: 15px 10px;
    }

    .contract-address {
        font-size: 0.8rem !important;
        padding: 8px 12px !important;
        word-break: break-all;
        line-height: 1.3;
    }

    /* Mobile tokenomics adjustments */
    .tokenomics-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .tokenomics-item h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
        padding: 0 10px;
    }

    .tokenomics-item p {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    /* Mobile roadmap fixes */
    .roadmap-content {
        padding: 15px;
    }

    .roadmap-content h3 {
        font-size: 1.3rem;
        word-wrap: break-word;
    }

    .roadmap-content ul li {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
    }

    /* Mobile meme gallery */
    .degen-gallery-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        word-wrap: break-word;
        padding: 0 10px;
    }

    .gallery-subtitle {
        font-size: 1.2rem;
        word-wrap: break-word;
        padding: 0 10px;
    }

    /* Mobile about text */
    .about-text p {
        font-size: 1rem;
        padding: 10px;
    }

    /* Mobile container padding */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 12vw, 2.2rem) !important;
        letter-spacing: clamp(0.5px, 3vw, 3px) !important;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        padding: 0 5px;
    }

    .social-link {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

    .social-link i {
        font-size: 1.8rem;
        margin: 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
        padding: 0 5px;
        text-shadow: 
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
    }

    .about-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        text-shadow: 
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
    }

    .degen-gallery-title {
        font-size: 2rem;
        letter-spacing: 1px;
        padding: 0 5px;
    }

    .contract-address {
        font-size: 0.7rem !important;
        padding: 6px 10px !important;
    }

    .tokenomics-item h3 {
        font-size: 1.2rem;
    }

    .roadmap-content h3 {
        font-size: 1.1rem;
    }

    .roadmap-content ul li {
        font-size: 0.9rem;
    }

    p {
        font-size: 0.9rem;
        padding: 0 5px;
    }
}

/* Footer */
/* Degen Meme Gallery Section */
.meme-gallery-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                repeating-linear-gradient(0deg, rgba(68, 231, 242, 0.1) 0px, rgba(68, 231, 242, 0.1) 1px, transparent 1px, transparent 50px),
                repeating-linear-gradient(90deg, rgba(255, 0, 255, 0.1) 0px, rgba(255, 0, 255, 0.1) 1px, transparent 1px, transparent 50px);
    background-color: #9D0DFF;
}

.degen-gallery-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    letter-spacing: 8px;
    color: #FF00FF;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 
        -4px -4px 0 #000,  
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        0 0 20px rgba(255, 0, 255, 0.8);
    animation: textGlow 3s infinite alternate;
}

.gallery-subtitle {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000;
    font-weight: 600;
}

.meme-upload-card {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-color: #000;
    border: 3px solid;
    border-image: linear-gradient(45deg, #FF00FF, #00FFFF) 1;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.7),
        0 0 40px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.meme-display-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.meme-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meme-creator-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 1.2rem;
    color: #FF00FF;
    font-weight: bold;
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}

.meme-upload-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.9),
        0 0 60px rgba(0, 255, 255, 0.7);
}

.meme-display-card {
    padding: 0;
    overflow: hidden;
    display: block;
}

.meme-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meme-display-img:hover {
    transform: scale(1.1);
}

.meme-upload-icon {
    font-size: 3.5rem;
    color: #FF00FF;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.meme-upload-text {
    font-size: 2.2rem; /* Much larger font */
    font-weight: 900;
    color: #FF00FF;
    text-align: center;
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 10px rgba(255, 0, 255, 0.7);
    letter-spacing: 2px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.retro-footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 40px 0;
    position: relative;
}

.retro-footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        to right,
        var(--color-red),
        var(--color-orange),
        var(--color-yellow),
        var(--color-green),
        var(--color-blue),
        var(--color-purple)
    );
}

.footer-logo, .footer-logo-center {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-center {
    justify-content: center;
}

.footer-logo span, .footer-logo-center span {
    font-family: var(--font-display);
    color: var(--color-pink);
    font-size: 1.2rem;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 20px;
}

.text-right {
    text-align: right;
}

/* MEME SHOWCASE STYLING */
.meme-showcase-section {
    background: 
        linear-gradient(
            135deg, 
            rgba(13, 7, 53, 0.7), 
            rgba(128, 0, 255, 0.6),
            rgba(0, 255, 255, 0.5)
        ),
        url('/static/images/dog_with_horn.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.meme-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 0, 0.4) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 0, 255, 0.4) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(0, 255, 255, 0.3) 0%,
            transparent 50%
        );
    z-index: 0;
    opacity: 1;
    animation: colorPulse 10s infinite alternate;
}

@keyframes colorPulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.meme-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(13, 7, 53, 0.3));
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 30px;
    border: 3px solid;
    border-image: linear-gradient(
        to right, 
        var(--color-red), 
        var(--color-orange), 
        var(--color-yellow), 
        var(--color-green), 
        var(--color-blue), 
        var(--color-purple)
    ) 1;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 16, 240, 0.8),
        0 0 60px rgba(0, 255, 255, 0.6);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.meme-card:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-15px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 0, 0.9),
        0 0 80px rgba(57, 255, 20, 0.7);
    border-image: linear-gradient(
        to right, 
        var(--color-neon-green), 
        var(--color-yellow), 
        var(--color-orange), 
        var(--color-red), 
        var(--color-pink), 
        var(--color-purple)
    ) 1;
}

.meme-image-container {
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.meme-image, .meme-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: saturate(1.7) contrast(1.4) brightness(1.3);
}

.meme-card:hover .meme-image,
.meme-card:hover .meme-video {
    transform: scale(1.05);
    filter: saturate(2) contrast(1.5) brightness(1.4);
}

.meme-caption {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    border-left: 5px solid var(--color-neon-green);
}

.meme-caption p {
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 
        -1px -1px 0 #000,  
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 12px rgba(57, 255, 20, 0.9);
}

.meme-creator {
    text-align: right;
    font-style: italic;
    color: var(--color-yellow);
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(255, 255, 0, 0.7);
}

.submit-meme-btn {
    padding: 15px 30px;
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--color-neon-green), var(--color-blue));
    border: none;
    transform: scale(1.1);
    animation: neonGlow 2s infinite alternate;
    position: relative;
    font-weight: 900;
    letter-spacing: 1px;
}

.submit-meme-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(
        45deg, 
        var(--color-red), 
        var(--color-orange), 
        var(--color-yellow), 
        var(--color-green), 
        var(--color-blue), 
        var(--color-purple)
    ) 1;
    animation: borderRotate 3s linear infinite;
    z-index: -1;
}

@keyframes neonGlow {
    0% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.9), 0 0 40px rgba(0, 255, 255, 0.7); }
    100% { box-shadow: 0 0 30px rgba(57, 255, 20, 1), 0 0 60px rgba(0, 255, 255, 0.9); }
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #8d00ff;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid rgba(255, 0, 255, 0.6);
    border-bottom: 4px solid rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.disclaimer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 0, 255, 0.15), 
        rgba(0, 255, 255, 0.15), 
        rgba(255, 255, 0, 0.15));
    animation: gradientBG 15s ease infinite;
    z-index: 0;
}

.disclaimer-logo-container {
    margin-bottom: 25px;
    position: relative;
    z-index: 5;
}

.disclaimer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    margin-bottom: 15px;
}

.disclaimer-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 15px rgba(0, 255, 255, 0.8);
}

.disclaimer-text {
    color: white;
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    position: relative;
    z-index: 1;
    animation: pulseText 4s infinite alternate;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@keyframes pulseText {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); }
    100% { text-shadow: 2px 2px 8px rgba(255, 0, 255, 0.8); }
}

.disclaimer-text p {
    letter-spacing: 1px;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

.disclaimer-text .small-text {
    font-style: italic;
    margin-top: 15px;
    font-size: 1.3rem;
    opacity: 0.95;
    display: inline-block;
    transform: rotate(-1deg);
    font-family: var(--font-accent);
}

.emoji-pulse {
    display: inline-block;
    animation: emojiPulse 1.5s infinite alternate;
    font-size: 1.4rem;
    margin-left: 5px;
}

.emoji-rainbow {
    display: inline-block;
    animation: emojiSpin 3s infinite linear;
    font-size: 1.4rem;
    margin-left: 5px;
}

@keyframes emojiPulse {
    0% { transform: scale(1); text-shadow: 0 0 5px rgba(255, 255, 255, 0.6); }
    100% { transform: scale(1.3); text-shadow: 0 0 15px rgba(255, 255, 255, 0.9); }
}

@keyframes emojiSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

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

    .contract-address {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        padding: 100px 0 40px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    section {
        padding: 60px 0;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 0;
        left: 0;
    }

    .roadmap-item:nth-child(even) {
        left: 0;
    }

    .roadmap-item::before {
        left: 5px;
        right: auto;
    }

    .roadmap-item:nth-child(even)::before {
        left: 5px;
    }

    .roadmap-content::after {
        display: none;
    }

    .roadmap-item:nth-child(even) .roadmap-content::after {
        display: none;
    }

    .disco-ball {
        top: 20px;
        right: 5%;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .section-header {
        margin-bottom: 40px;
    }

    .container {
        padding: 0 15px;
    }

    .about-text {
        padding: 20px;
    }

    .utility-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .contract-address-box {
        flex-direction: column;
    }

    .contract-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .social-link {
        width: 120px;
        height: 120px;
        padding: 20px;
    }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Image Generator Section */
.image-generator-section {
    background: 
        linear-gradient(0deg, rgba(128, 0, 255, 0.4), rgba(0, 238, 255, 0.4)),
        url('/attached_assets/image_1747844268773.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.generator-card {
    padding: 40px;
    margin-bottom: 40px;
}

.unicorn-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.4);
    height: 350px;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 0, 255, 0.3);
}

.rainbow-unicorn-preview {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.generator-controls {
    padding: 20px 10px;
}

.generator-subtitle {
    font-family: 'Rubik Mono One', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 
        -2px -2px 0 #000,  
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 10px rgba(255, 0, 255, 0.5);
}

.form-label {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000;
    margin-bottom: 8px;
}

.form-range {
    height: 20px;
}

.form-range::-webkit-slider-thumb {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}

.generate-btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px #000;
    font-weight: bold;
    letter-spacing: 1px;
}

.generate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 255, 0.8);
}