* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a202c;
    overflow-x: hidden;
    padding-top: 80px;
    background: linear-gradient(to bottom, 
        #dbeafe 0%,
        #93c5fd 20%,
        #60a5fa 40%,
        #3b82f6 55%,
        #2563eb 70%,
        #1d4ed8 85%,
        #1e3a8a 100%
    );
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

/* Ocean particles - Fish and marine life */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 80% 70%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 90% 20%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(255,255,255,0.3), transparent);
    background-size: 200% 200%, 250% 250%, 180% 180%, 220% 220%, 190% 190%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 10% 80%;
    animation: oceanFloat 60s ease-in-out infinite;
}

@keyframes oceanFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 10% 80%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 60% 40%, 20% 80%, 90% 20%;
    }
}

/* Floating marine elements */
.ocean-element {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    font-size: 2rem;
}

section {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    margin: 3rem 0;
    padding: 5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-nav {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    font-weight: 600;
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: transparent !important;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: none;
    border-radius: 0;
    max-width: 1400px;
}

.hero:hover {
    transform: none;
    box-shadow: none;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero .tagline {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s backwards;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 0 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #1e40af;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: 2px solid transparent;
}

.cta-button.primary {
    background: white;
    color: #1e40af;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

.hero-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.5s backwards;
    background: rgba(0,0,0,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
}

/* About Section */
.about {
    background: rgba(249, 249, 249, 0.95);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #334155;
    max-width: 800px;
}

.about-text p strong {
    color: #1e40af;
    font-weight: 700;
}

.about-image {
    background: transparent;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 1.5rem;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 16px 48px rgba(37, 99, 235, 0.3));
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Storytelling Section */
.storytelling {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.97), rgba(243, 232, 255, 0.97));
    padding: 6rem 2rem;
}

.storytelling h2 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: left;
}

.story-text p {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 2rem !important;
}

.story-closing {
    font-size: 1.15rem;
    font-weight: 500;
    font-style: italic;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    border-radius: 10px;
    margin-top: 2rem !important;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-box {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    text-align: right;
    opacity: 0.95;
    font-size: 1.1rem;
    font-weight: 600;
}

.stats-box {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.stat-text {
    font-size: 1rem;
    line-height: 1.5;
}

.stat-text strong {
    color: #667eea;
}

/* Mission Section */
.mission {
    background: rgba(255, 255, 255, 0.95);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.mission-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.mission-card:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

.mission-card h3 {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

/* What We Do Section */
.what-we-do {
    background: rgba(249, 249, 249, 0.95);
    padding: 5rem 2rem;
}

.what-we-do h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #667eea;
}

.section-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.8;
}

.do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.do-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
}

.do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.do-card:hover::before {
    transform: scaleX(1);
}

.do-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.do-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.do-card:hover .do-icon {
    transform: scale(1.15) rotate(-5deg);
}

.do-card h3 {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.do-card p {
    line-height: 1.8;
    color: #475569;
    text-align: center;
    margin: 0;
}

/* What We Don't Do Section */
.what-we-dont {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 6rem 2rem;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.what-we-dont h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.what-we-dont .section-intro {
    color: #cbd5e1;
    font-size: 1.25rem;
}

.dont-list {
    max-width: 1000px;
    margin: 0 auto;
}

.dont-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 5px solid #ef4444;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dont-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-left-color: #f87171;
}

.dont-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.dont-item:hover .dont-icon {
    transform: scale(1.2) rotate(-10deg);
}

.dont-content h3 {
    color: #f87171;
    margin-bottom: 0.7rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.dont-content p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: left;
    margin: 0;
}

/* Community Strategy Section */
.strategy {
    background: rgba(255, 255, 255, 0.95);
    padding: 5rem 2rem;
}

.strategy h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #667eea;
}

.strategy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strategy-block {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.strategy-block h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.strategy-block p {
    line-height: 1.9;
    margin-bottom: 1rem;
    color: #475569;
    text-align: left;
}

.strategy-block p:last-child {
    margin-bottom: 0;
}

.strategy-block strong {
    color: #333;
}

.strategy-sidebar {
    display: flex;
    flex-direction: column;
}

.reality-check {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 2rem;
}

.reality-check h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 0.5rem;
}

.reality-check p {
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.reality-check p:last-child {
    margin-bottom: 0;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 2rem;
}

.tokenomics h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #667eea;
}

.token-content {
    max-width: 1200px;
    margin: 0 auto;
}

.token-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.token-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.token-card:hover::before {
    transform: scaleX(1);
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.token-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.token-card:hover .token-icon {
    transform: scale(1.2) rotate(10deg);
}

.token-card h3 {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.7rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.token-percent {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.token-card p:last-child {
    line-height: 1.9;
    color: #475569;
    font-size: 1.05rem;
    text-align: center;
    margin: 0;
}

.token-disclaimer-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.token-disclaimer-box h4 {
    color: #ff6666;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.token-disclaimer-box p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: #cbd5e1;
    text-align: left;
}

.token-disclaimer-box ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.token-disclaimer-box li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.token-final-note {
    font-weight: bold;
    color: white !important;
    margin-top: 1.5rem !important;
}

/* Roadmap Section */
.roadmap {
    background: rgba(255, 255, 255, 0.95);
    padding: 5rem 2rem;
}

.roadmap h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #667eea;
}

.phase-status {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.5px;
}

/* Mascot Section */
.mascot {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 6rem 2rem;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.mascot h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mascot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.mascot-image {
    text-align: center;
}

.mascot-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    backdrop-filter: none;
    transition: transform 0.4s ease;
}

.mascot-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

.mascot-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
}

.mascot-text p {
    line-height: 2;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-size: 1.15rem;
    text-align: left;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 6rem 2rem;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.cta-tagline {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 3rem;
    font-weight: 500;
}

.cta-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.cta-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.cta-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.cta-box .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.cta-box:hover .icon {
    transform: scale(1.2) rotate(-10deg);
}

.cta-box h3 {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p {
    line-height: 1.9;
    color: #475569;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.final-cta-button {
    display: inline-block;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.final-cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: 2px solid transparent;
}

.final-cta-button.secondary {
    background: white;
    color: #1e40af;
    border: 2px solid #3b82f6;
}

.final-cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
}

.final-warning {
    background: rgba(239, 68, 68, 0.08);
    border-left: 5px solid #ef4444;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.final-warning p {
    color: #1e293b;
    line-height: 1.9;
    margin: 0;
    font-size: 1.05rem;
}

.final-message {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-style: italic;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.community h2 {
    color: white;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Roadmap Section */
.roadmap {
    background: #f9f9f9;
}

.roadmap-timeline {
    margin-top: 3rem;
    position: relative;
}

.roadmap-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 50px;
    width: 2px;
    height: calc(100% + 3rem);
    background: transparent;
}

.roadmap-item:last-child::before {
    display: none;
}

.roadmap-marker {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.roadmap-content {
    margin-left: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.roadmap-content h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.final-warning {
    background: rgba(239, 68, 68, 0.08);
    border-left: 5px solid #ef4444;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.final-warning p {
    color: #1e293b;
    line-height: 1.9;
    margin: 0;
    font-size: 1.05rem;
}

.final-message {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-style: italic;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.community h2 {
    color: white;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Roadmap Section */
.roadmap {
    background: #f9f9f9;
}

.roadmap-timeline {
    margin-top: 3rem;
    position: relative;
}

.roadmap-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 50px;
    width: 2px;
    height: calc(100% + 3rem);
    background: transparent;
}

.roadmap-item:last-child::before {
    display: none;
}

.roadmap-marker {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.roadmap-content {
    margin-left: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.roadmap-content h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Team Section */
.team {
    background: white;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.team-avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: transform 0.4s ease;
    overflow: hidden;
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-card:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
}

.team-card h3 {
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.team-card .role {
    color: #64748b;
    font-style: italic;
    margin-bottom: 1rem;
    text-align: center;
}

.team-card p {
    text-align: center;
    line-height: 1.8;
    color: #475569;
}

/* Join Section */
.join {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.join h2 {
    color: white;
}

.join p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Disclaimer Section */
.disclaimer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    padding: 4rem 2rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.9;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.disclaimer h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.disclaimer p {
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    /* Hero optimizations */
    .hero {
        padding: 2rem 1rem;
        min-height: 90vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero .tagline {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero .subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    /* Sections responsive */
    section {
        padding: 3rem 1.5rem;
        margin: 2rem 1rem;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    /* Story section */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .quote {
        font-size: 1.1rem !important;
    }

    /* Mission cards */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    /* Do cards */
    .do-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Strategy */
    .strategy-content {
        grid-template-columns: 1fr;
    }

    .reality-check {
        position: static;
        margin-top: 2rem;
    }

    /* Token cards */
    .token-breakdown {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Mascot */
    .mascot-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* CTA actions */
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-boxes {
        grid-template-columns: 1fr;
    }

    /* Roadmap */
    .roadmap-item {
        flex-direction: column;
        padding-left: 0;
    }

    .roadmap-marker {
        margin-bottom: 1rem;
    }

    .roadmap-content {
        margin-left: 0;
    }

    .roadmap-item::before {
        display: none;
    }

    /* Social links */
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    /* Reduce ocean elements on mobile for performance */
    .ocean-element {
        display: none;
    }

    /* Simplify animations on mobile */
    * {
        animation-duration: 0.3s !important;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .do-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .token-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 4rem 2rem;
    }
}

/* Improve text contrast for accessibility */
.hero .subtitle,
.hero .tagline {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-disclaimer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 3px solid #60a5fa;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.6);
}

.back-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

/* Loading state */
body.loading {
    overflow: hidden;
}

/* Selection color */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

