/* ===== CSS Variables ===== */
:root {
    --color-bg-primary: #f0f8ff;
    --color-bg-secondary: #e8f4fc;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #f5faff;
    
    --color-text-primary: #1a365d;
    --color-text-secondary: #4a6fa5;
    --color-text-muted: #7a9bc7;
    
    --color-accent-primary: #0ea5e9;
    --color-accent-light: #7dd3fc;
    --color-accent-dark: #0369a1;
    
    --color-ice-light: #e0f4ff;
    --color-ice: #7dd3fc;
    --color-ice-dark: #0ea5e9;
    
    --color-snow: #ffffff;
    --color-frost: #c7e6f7;
    
    --gradient-ice: linear-gradient(135deg, #7dd3fc 0%, #0ea5e9 50%, #0369a1 100%);
    --gradient-aurora: linear-gradient(135deg, #60a5fa 0%, #34d399 50%, #a78bfa 100%);
    --gradient-frost: linear-gradient(180deg, #f0f8ff 0%, #e8f4fc 100%);
    --gradient-sky: linear-gradient(180deg, #e0f4ff 0%, #bae6fd 100%);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --shadow-glow: 0 0 60px rgba(14, 165, 233, 0.3);
    --shadow-card: 0 4px 24px rgba(14, 165, 233, 0.1);
    --shadow-soft: 0 8px 32px rgba(26, 54, 93, 0.08);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('assets/cursor.svg') 12 12, auto;
}

/* Pointer cursor for interactive elements */
a, button, .btn, [role="button"], input[type="submit"], input[type="button"] {
    cursor: url('assets/cursor.svg') 12 12, pointer;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Utilities ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-ice);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Floating Pebbles Background ===== */
.floating-pebbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pebble {
    position: absolute;
    width: 20px;
    height: 14px;
    background: var(--gradient-ice);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.pebble-1 { top: 10%; left: 5%; animation-delay: 0s; width: 15px; height: 10px; }
.pebble-2 { top: 20%; right: 10%; animation-delay: -3s; width: 25px; height: 18px; }
.pebble-3 { top: 60%; left: 8%; animation-delay: -7s; width: 18px; height: 12px; }
.pebble-4 { top: 80%; right: 15%; animation-delay: -10s; width: 22px; height: 16px; }
.pebble-5 { top: 40%; left: 80%; animation-delay: -5s; width: 12px; height: 8px; }
.pebble-6 { top: 70%; left: 70%; animation-delay: -12s; width: 16px; height: 11px; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
    75% { transform: translateY(-40px) rotate(3deg); }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 2px 20px rgba(14, 165, 233, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 1.8rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { filter: brightness(1); transform: scale(1); }
    50% { filter: brightness(1.3); transform: scale(1.1); }
}

.logo-text {
    background: var(--gradient-ice);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-ice);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--color-text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-ice);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(14, 165, 233, 0.5);
    color: var(--color-accent-primary);
}

.btn-outline:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--color-accent-primary);
}

.btn-ghost {
    background: rgba(14, 165, 233, 0.05);
    color: var(--color-text-primary);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.btn-ghost:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg-card);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--color-text-secondary);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
    background: url('assets/background.png') center center / cover no-repeat;
    background-color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent-primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle strong {
    color: var(--color-accent-primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(14, 165, 233, 0.2);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-penguin-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    animation: gentleFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(14, 165, 233, 0.15));
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    animation: fadeIn 1s ease 1s both;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent-primary);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Story Section ===== */
.story-section {
    padding: 120px 0;
    background: var(--gradient-frost);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.story-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.story-card:hover {
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.story-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(125, 211, 252, 0.05) 100%);
    border-color: rgba(14, 165, 233, 0.2);
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.story-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.story-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.story-card p strong {
    color: var(--color-accent-primary);
}

/* ===== Tokenomics Section ===== */
.tokenomics-section {
    padding: 120px 0;
    background: var(--gradient-sky);
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.theme-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.theme-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.theme-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-ice);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    line-height: 1;
}

.theme-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.theme-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.theme-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.5;
}

/* ===== Mechanics Section ===== */
.mechanics-section {
    padding: 120px 0;
    background: var(--gradient-frost);
}

.mechanics-header {
    margin-bottom: 60px;
}

.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mechanic-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.mechanic-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.mechanic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mechanic-icon {
    font-size: 2rem;
}

.mechanic-badge {
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent-primary);
    text-transform: uppercase;
}

.mechanic-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.mechanic-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.mechanic-visual {
    background: rgba(14, 165, 233, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

/* Transfer Animation */
.transfer-animation {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wallet {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.transfer-pebble {
    font-size: 1.5rem;
    animation: transferMove 2s ease-in-out infinite;
}

@keyframes transferMove {
    0%, 100% { transform: translateX(-20px); opacity: 0.5; }
    50% { transform: translateX(20px); opacity: 1; }
}

/* Marriage Animation */
.marriage-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.heart-ring {
    font-size: 2rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bonded-wallets {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
}

.bonded-wallets .heart {
    animation: heartPulse 1s ease-in-out infinite;
}

@keyframes heartPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Airdrop Animation */
.airdrop-animation {
    position: relative;
    height: 80px;
    width: 100%;
}

.drop {
    position: absolute;
    font-size: 1.2rem;
    animation: dropFall 2s ease-in-out infinite;
}

.drop-1 { left: 30%; animation-delay: 0s; }
.drop-2 { left: 50%; animation-delay: 0.3s; }
.drop-3 { left: 70%; animation-delay: 0.6s; }

@keyframes dropFall {
    0% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 50px; opacity: 0; }
}

.colony {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    letter-spacing: 4px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, #d4edfc 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-primary);
    margin-bottom: 24px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.contract-address {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: var(--shadow-soft);
}

.contract-address span {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.contract-address code {
    font-family: monospace;
    color: var(--color-accent-primary);
    font-size: 0.875rem;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    color: var(--color-accent-primary);
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-pebble {
    position: absolute;
    width: 100px;
    height: 70px;
    background: var(--gradient-ice);
    border-radius: 50%;
    opacity: 0.15;
}

.bg-pebble-1 { top: 10%; left: 10%; transform: rotate(-20deg); }
.bg-pebble-2 { bottom: 20%; right: 15%; transform: rotate(30deg); width: 150px; height: 100px; }
.bg-pebble-3 { top: 50%; left: 80%; transform: rotate(-10deg); width: 80px; height: 55px; }

/* ===== Community Section ===== */
.community-section {
    padding: 120px 0;
    background: var(--gradient-frost);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.social-card:hover .social-arrow {
    transform: translateX(4px);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-card.twitter .social-icon { background: rgba(29, 161, 242, 0.2); color: #1da1f2; }
.social-card.telegram .social-icon { background: rgba(0, 136, 204, 0.2); color: #0088cc; }
.social-card.dexscreener .social-icon { background: rgba(255, 215, 0, 0.2); color: var(--color-accent-gold); }
.social-card.dextools .social-icon { background: rgba(0, 194, 255, 0.2); color: #00c2ff; }

.social-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.social-info p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.social-arrow {
    margin-left: auto;
    font-size: 1.25rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: #1a365d;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-ice-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--color-ice-light);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .hero-penguin-image {
        max-width: 400px;
    }
    
    .mechanics-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card-featured {
        grid-column: span 1;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contract-address {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 120px 16px 40px;
    }
    
    .hero-penguin-image {
        max-width: 280px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .story-section,
    .tokenomics-section,
    .mechanics-section,
    .cta-section,
    .community-section {
        padding: 80px 0;
    }
}

/* ===== Scroll Animations ===== */
.story-card,
.theme-card,
.mechanic-card,
.social-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-card.visible,
.theme-card.visible,
.mechanic-card.visible,
.social-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.story-card:nth-child(1) { transition-delay: 0.1s; }
.story-card:nth-child(2) { transition-delay: 0.2s; }
.story-card:nth-child(3) { transition-delay: 0.3s; }
.story-card:nth-child(4) { transition-delay: 0.4s; }

.theme-card:nth-child(1) { transition-delay: 0.1s; }
.theme-card:nth-child(2) { transition-delay: 0.2s; }
.theme-card:nth-child(3) { transition-delay: 0.3s; }
.theme-card:nth-child(4) { transition-delay: 0.4s; }

.mechanic-card:nth-child(1) { transition-delay: 0.1s; }
.mechanic-card:nth-child(2) { transition-delay: 0.2s; }
.mechanic-card:nth-child(3) { transition-delay: 0.3s; }

.social-card:nth-child(1) { transition-delay: 0.1s; }
.social-card:nth-child(2) { transition-delay: 0.15s; }
.social-card:nth-child(3) { transition-delay: 0.2s; }
.social-card:nth-child(4) { transition-delay: 0.25s; }
