/* ==================== Variables - OCEAN EGG THEME ==================== */
:root {
    /* Ocean Egg Colors - Ocean to Egg Gradient Theme */
    --ocean-blue: #0a1628;
    --deep-ocean: #040d1a;
    --turquoise: #1a4d5e;
    --sand: #2a4858;
    --coral: #d89b3d;
    --lobster-red: #d4b86a;
    --seafoam: #4dd0e1;
    --white: #c8d9e0;
    --cream: #e8dcc4;
    --rock-gray: #263238;
    --light-blue: #5fbcd3;
    --neon-cyan: #d4b86a;
    --deep-purple: #1a237e;
    --egg-yellow: #d4b86a;
    --egg-orange: #d89b3d;
    --egg-gold: #e0ac4b;
    
    /* Ocean to Egg Gradients */
    --ocean-gradient: linear-gradient(135deg, #0a1628 0%, #1a4d5e 100%);
    --sunset-gradient: linear-gradient(135deg, #d89b3d 0%, #d4b86a 100%);
    --ocean-to-egg: linear-gradient(135deg, #4dd0e1 0%, #5fbcd3 30%, #d4b86a 70%, #d89b3d 100%);
    --wave-gradient: linear-gradient(180deg, rgba(212, 184, 106, 0.15) 0%, rgba(216, 155, 61, 0.08) 100%);
    --underwater-glow: radial-gradient(circle, rgba(212, 184, 106, 0.2) 0%, transparent 70%);
    --egg-gradient: linear-gradient(135deg, #d4b86a 0%, #d89b3d 50%, #e0ac4b 100%);
    
    /* Softer Shadows with Glow */
    --shadow-sm: 0 2px 8px rgba(212, 184, 106, 0.15);
    --shadow-md: 0 4px 16px rgba(212, 184, 106, 0.2);
    --shadow-lg: 0 8px 32px rgba(212, 184, 106, 0.25);
    --glow: 0 0 15px rgba(212, 184, 106, 0.3);
    
    /* Spacing */
    --section-padding: 100px 20px;
    --container-max-width: 1200px;
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== Video Background ==================== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.3) 0%,
        rgba(26, 77, 94, 0.25) 50%,
        rgba(4, 13, 26, 0.35) 100%
    );
}

/* Underwater Bubbles Animation */
.video-overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(95, 188, 211, 0.2) 2px, transparent 2px),
        radial-gradient(circle, rgba(212, 184, 106, 0.15) 3px, transparent 3px),
        radial-gradient(circle, rgba(216, 155, 61, 0.12) 1px, transparent 1px);
    background-size: 200px 300px, 350px 450px, 150px 250px;
    background-position: 0 0, 100px 100px, 50px 50px;
    animation: bubbles 20s linear infinite;
}

@keyframes bubbles {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100vh);
    }
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 184, 106, 0.25), 0 0 30px rgba(95, 188, 211, 0.15);
    border-bottom: 1px solid rgba(212, 184, 106, 0.2);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Righteous', cursive;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #4dd0e1 0%, #5fbcd3 30%, #d4b86a 70%, #d89b3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(212, 184, 106, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--egg-yellow);
    box-shadow: 0 0 10px var(--egg-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-padding);
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.lobster-float {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(212, 184, 106, 0.3)) drop-shadow(0 0 15px rgba(95, 188, 211, 0.4));
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: clamp(48px, 8vw, 96px);
    margin-bottom: 20px;
    line-height: 1.1;
}

.ocean-text {
    color: #5fbcd3;
    text-shadow: 0 0 20px rgba(95, 188, 211, 0.4), 0 0 40px rgba(77, 208, 225, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.rock-text {
    color: #d89b3d;
    text-shadow: 0 0 20px rgba(216, 155, 61, 0.4), 0 0 40px rgba(224, 172, 75, 0.3);
    animation: glow 2s ease-in-out infinite alternate-reverse;
}

@keyframes glow {
    from {
        text-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
    }
    to {
        text-shadow: 0 0 20px currentColor, 0 0 40px currentColor, 0 0 60px currentColor;
    }
}

.ticker {
    display: inline-block;
    background: linear-gradient(135deg, #4dd0e1 0%, #5fbcd3 25%, #d4b86a 75%, #d89b3d 100%);
    color: var(--deep-ocean);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 6px 24px rgba(212, 184, 106, 0.3), 0 0 30px rgba(95, 188, 211, 0.2);
    animation: pulse 2s ease-in-out infinite;
    border: 2px solid rgba(212, 184, 106, 0.4);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--cream);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-shadow: 
        0 0 0 3px rgba(212, 184, 106, 0.3),
        0 6px 0 rgba(10, 22, 40, 0.8),
        0 8px 20px rgba(0, 0, 0, 0.4);
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    border-radius: 4px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::after {
    left: 100%;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: 
        0 0 0 3px rgba(212, 184, 106, 0.3),
        0 2px 0 rgba(10, 22, 40, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background: linear-gradient(180deg, #1a4d5e 0%, #0a1628 100%);
    color: #d89b3d;
    border: none;
    box-shadow: 
        0 0 0 3px #d4b86a,
        0 6px 0 #0a1628,
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(212, 184, 106, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 3px #d89b3d,
        0 8px 0 #0a1628,
        0 10px 30px rgba(212, 184, 106, 0.5),
        0 0 20px rgba(95, 188, 211, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(212, 184, 106, 0.3);
    filter: brightness(1.1);
}

.btn-secondary {
    background: linear-gradient(180deg, #d89b3d 0%, #d4b86a 100%);
    color: var(--deep-ocean);
    border: none;
    box-shadow: 
        0 0 0 3px #5fbcd3,
        0 6px 0 #1a4d5e,
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 3px #4dd0e1,
        0 8px 0 #1a4d5e,
        0 10px 30px rgba(95, 188, 211, 0.6),
        0 0 20px rgba(212, 184, 106, 0.5),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.15);
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    animation: wave 10s ease-in-out infinite;
}

/* ==================== About Section ==================== */
.about {
    padding: var(--section-padding);
    background: transparent;
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 217, 61, 0.2);
    border-bottom: 1px solid rgba(255, 217, 61, 0.2);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::before {
    content: '▼▼▼';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    letter-spacing: 10px;
    color: rgba(212, 184, 106, 0.3);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.6; }
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4dd0e1 0%, #5fbcd3 30%, #d4b86a 70%, #d89b3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(212, 184, 106, 0.3));
    position: relative;
    display: inline-block;
    text-shadow: 
        3px 3px 0 rgba(10, 22, 40, 0.5),
        -1px -1px 0 rgba(95, 188, 211, 0.3);
    -webkit-text-stroke: 2px rgba(10, 22, 40, 0.3);
}
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(212, 184, 106, 0.3));
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #5fbcd3 25%, #d4b86a 75%, transparent 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(212, 184, 106, 0.3);
}

.section-subtitle {
    font-size: 18px;
    color: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rock-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.painted-rock {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #78909c 0%, #546e7a 100%);
    border-radius: 40% 60% 50% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: rockRotate 20s ease-in-out infinite;
}

.rock-emoji {
    font-size: 120px;
    position: absolute;
}

.fish-emoji {
    font-size: 60px;
    position: absolute;
    top: 20%;
    right: 10%;
    animation: swim 3s ease-in-out infinite;
}

.about-text {
    color: var(--white);
}

.lead {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--turquoise);
}

.about-text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(26, 77, 94, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 217, 61, 0.2);
    box-shadow: inset 0 0 2012, 184, 106, 0.15);
    box-shadow: inset 0 0 20px rgba(212, 184, 106, 0.08);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(26, 77, 94, 0.5);
    box-shadow: 0 8px 32px rgba(212, 184, 106, 0.25), inset 0 0 30px rgba(212, 184, 106, 0.15);
    border-color: rgba(212, 184, 106, 0.3

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #d4b86a;
    text-shadow: 0 0 8px rgba(212, 184, 106, 0.3);
}

.feature-item p {
    font-size: 14px;
    margin: 0;
}

/* ==================== Gallery Section ==================== */
.gallery {
    padding: var(--section-padding);
    background: transparent;
    backdrop-filter: none;
    border-top: 1px solid rgba(77, 208, 225, 0.3);
    border-bottom: 1px solid rgba(77, 208, 225, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.gallery-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #78909c 0%, #546e7a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.placeholder-icon {
    font-size: 80px;
}

.gallery-placeholder p {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

/* ==================== Tokenomics Section ==================== */
.tokenomics {
    padding: var(--section-padding);
    background: transparent;
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 217, 61, 0.2);
    border-bottom: 1px solid rgba(255, 217, 61, 0.2);
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(26, 77, 94, 0.3);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(212, 184, 106, 0.2);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(212, 184, 106, 0.08);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(26, 77, 94, 0.5);
    border-color: #d4b86a;
    box-shadow: 0 8px 32px rgba(212, 184, 106, 0.3), inset 0 0 30px rgba(212, 184, 106, 0.15);
}

.stat-card h3 {
    font-size: 18px;
    color: #d4b86a;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(212, 184, 106, 0.3);
}

.stat-value {
    font-family: 'Righteous', cursive;
    font-size: 48px;
    color: #d89b3d;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(216, 155, 61, 0.3);
}

.stat-label {
    font-size: 14px;
    color: var(--cream);
}

/* ==================== Community Section ==================== */
.community {
    padding: var(--section-padding);
    background: transparent;
    backdrop-filter: none;
    border-top: 1px solid rgba(77, 208, 225, 0.3);
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    color: var(--white);
    border: 2px solid transparent;
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    border-color: rgba(29, 161, 242, 0.5);
}

.social-link.pumpfun {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    border-color: rgba(255, 107, 107, 0.5);
}

.social-link.dexscreener {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(102, 126, 234, 0.5);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 217, 61, 0.4), 0 0 30px rgba(255, 159, 28, 0.3);
}

.social-link:active {
    transform: translateY(-2px) scale(1.02);
}

/* ==================== Footer ==================== */
.footer {
    padding: 60px 20px 30px;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(4, 13, 26, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, #5fbcd3 25%, #d4b86a 75%, transparent 100%);
    border-image-slice: 1;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #5fbcd3 25%, #d4b86a 75%, transparent 100%);
    box-shadow: 0 0 20px rgba(212, 184, 106, 0.5);
    z-index: 1;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo .logo-egg {
    font-size: 48px;
    animation: eggBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(212, 184, 106, 0.6));
}

.footer-logo .logo-egg:first-child {
    animation-delay: 0s;
}

.footer-logo .logo-egg:last-child {
    animation-delay: 1s;
}

.footer-logo .logo-text {
    font-family: 'Righteous', cursive;
    font-size: 32px;
}

.footer-logo .ocean-text {
    color: #5fbcd3;
    text-shadow: 0 0 15px rgba(95, 188, 211, 0.5);
}

.footer-logo .egg-text {
    color: #d89b3d;
    text-shadow: 0 0 15px rgba(216, 155, 61, 0.5);
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-socials .social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 77, 94, 0.9) 0%, rgba(10, 22, 40, 0.9) 100%);
    border: 3px solid rgba(212, 184, 106, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4b86a;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 0 2px rgba(95, 188, 211, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.4), 
        0 0 20px rgba(212, 184, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-socials .social-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.footer-socials .social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 184, 106, 0.5) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: 0;
}

.footer-socials .social-btn:hover {
    transform: translateY(-5px) scale(1.15);
    border-color: #d89b3d;
    background: linear-gradient(135deg, rgba(26, 77, 94, 1) 0%, rgba(10, 22, 40, 1) 100%);
    box-shadow: 
        0 0 0 2px rgba(95, 188, 211, 0.5),
        0 8px 25px rgba(212, 184, 106, 0.5), 
        0 0 30px rgba(95, 188, 211, 0.4),
        0 0 40px rgba(212, 184, 106, 0.3);
}

.footer-socials .social-btn:hover::before {
    width: 120px;
    height: 120px;
}

.footer-socials .social-btn:active {
    transform: translateY(-2px) scale(1.1);
}

.footer-wave {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #5fbcd3 25%, #d4b86a 50%, #d89b3d 75%, transparent 100%);
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 184, 106, 0.4);
    animation: waveGlow 3s ease-in-out infinite;
}

.footer-text {
    margin-bottom: 15px;
    color: var(--cream);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-icon {
    font-size: 24px;
    animation: iconFloat 3s ease-in-out infinite;
}

.footer-icon:first-child {
    animation-delay: 0s;
}

.footer-icon:last-child {
    animation-delay: 1.5s;
}

.footer-tagline {
    font-size: 16px;
    color: #d4b86a;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 184, 106, 0.3);
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(200, 217, 224, 0.6);
    max-width: 700px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 184, 106, 0.1);
}

@keyframes eggBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes waveGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(212, 184, 106, 0.4);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 30px rgba(95, 188, 211, 0.6), 0 0 40px rgba(212, 184, 106, 0.4);
        opacity: 0.8;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-logo .logo-text {
        font-size: 24px;
    }
    
    .footer-logo .logo-egg {
        font-size: 36px;
    }
    
    .footer-socials {
        gap: 15px;
    }
    
    .footer-socials .social-btn {
        width: 50px;
        height: 50px;
    }
    
    .footer-socials .social-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-text {
        font-size: 16px;
        flex-wrap: wrap;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
}

/* ==================== Animations ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25px); }
}

@keyframes rockRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

@keyframes swim {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 71, 161, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lobster-float {
        width: 80px;
        height: 80px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .token-stats {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }
    
    .ticker {
        font-size: 22px;
        padding: 10px 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .lobster-float {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .btn {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .painted-rock {
        width: 200px;
        height: 200px;
    }
    
    .rock-emoji {
        font-size: 80px;
    }
    
    .fish-emoji {
        font-size: 40px;
    }
}
