/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0099FF;
    --secondary-blue: #00D9FF;
    --dark-blue: #0066FF;
    --light-blue: #E8F4FF;
    --ocean-deep: #003EFF;
    --text-dark: #1A2332;
    --text-light: #6B7C93;
    --white: #FFFFFF;
    --gradient-ocean: linear-gradient(135deg, #0099FF 0%, #00D9FF 100%);
    --gradient-deep: linear-gradient(180deg, #003EFF 0%, #0099FF 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(to bottom, #E8F4FF 0%, #FFFFFF 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background Bubbles */
.bubbles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.3), rgba(0, 153, 255, 0.1));
    border-radius: 50%;
    opacity: 0.6;
    animation: rise 15s infinite ease-in;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 35%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 50%;
    animation-delay: 0s;
    animation-duration: 16s;
}

.bubble:nth-child(5) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.bubble:nth-child(6) {
    width: 35px;
    height: 35px;
    left: 75%;
    animation-delay: 6s;
    animation-duration: 11s;
}

.bubble:nth-child(7) {
    width: 55px;
    height: 55px;
    left: 85%;
    animation-delay: 1s;
    animation-duration: 15s;
}

.bubble:nth-child(8) {
    width: 25px;
    height: 25px;
    left: 5%;
    animation-delay: 5s;
    animation-duration: 9s;
}

.bubble:nth-child(9) {
    width: 70px;
    height: 70px;
    left: 40%;
    animation-delay: 7s;
    animation-duration: 17s;
}

.bubble:nth-child(10) {
    width: 40px;
    height: 40px;
    left: 90%;
    animation-delay: 2s;
    animation-duration: 12s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(100px) rotate(180deg);
    }
    100% {
        bottom: 110vh;
        transform: translateX(-100px) rotate(360deg);
    }
}

/* Ocean Decorations */
.ocean-decorations {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.sea-creature {
    position: absolute;
    font-size: 40px;
    opacity: 0.6;
    filter: drop-shadow(0 4px 8px rgba(0, 153, 255, 0.3));
}

/* Fish swimming left to right */
.fish {
    left: -60px;
    top: 20%;
    animation: swimRight 20s linear infinite;
}

.fish2 {
    left: -60px;
    top: 60%;
    animation: swimRight 25s linear infinite 5s;
}

.tropical-fish {
    right: -60px;
    top: 40%;
    animation: swimLeft 22s linear infinite 3s;
    transform: scaleX(-1);
}

/* Jellyfish floating */
.jellyfish {
    left: 10%;
    top: -60px;
    animation: floatDown 30s ease-in-out infinite;
    font-size: 50px;
}

/* Dolphin jumping */
.dolphin {
    left: -80px;
    bottom: 30%;
    animation: dolphinJump 18s ease-in-out infinite;
    font-size: 60px;
}

/* Whale swimming */
.whale {
    right: -100px;
    top: 15%;
    animation: whaleSwim 35s linear infinite;
    font-size: 80px;
    transform: scaleX(-1);
}

/* Shell on bottom */
.shell {
    left: 5%;
    bottom: 10%;
    animation: shellBob 4s ease-in-out infinite;
    font-size: 35px;
}

/* Crab walking */
.crab {
    left: -60px;
    bottom: 5%;
    animation: crabWalk 30s linear infinite;
    font-size: 45px;
}

/* Starfish rotating */
.starfish {
    right: 15%;
    top: 25%;
    animation: starRotate 8s linear infinite;
    font-size: 35px;
}

/* Coral swaying */
.coral {
    left: 3%;
    bottom: 15%;
    animation: coralSway 5s ease-in-out infinite;
    font-size: 45px;
}

/* Seahorse/Shark swimming */
.seahorse {
    right: -80px;
    bottom: 40%;
    animation: swimLeft 28s linear infinite 7s;
    font-size: 55px;
    transform: scaleX(-1);
}

/* Wave floating */
.wave {
    right: 10%;
    bottom: 20%;
    animation: waveBob 6s ease-in-out infinite;
    font-size: 40px;
}

/* Animation Keyframes */
@keyframes swimRight {
    0% {
        left: -60px;
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        left: calc(100% + 60px);
        transform: translateY(0);
    }
}

@keyframes swimLeft {
    0% {
        right: -60px;
        transform: scaleX(-1) translateY(0);
    }
    50% {
        transform: scaleX(-1) translateY(20px);
    }
    100% {
        right: calc(100% + 60px);
        transform: scaleX(-1) translateY(0);
    }
}

@keyframes floatDown {
    0% {
        top: -60px;
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(30px) rotate(10deg);
    }
    100% {
        top: calc(100vh + 60px);
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes dolphinJump {
    0% {
        left: -80px;
        bottom: 30%;
        transform: rotate(-20deg);
    }
    25% {
        bottom: 50%;
        transform: rotate(20deg);
    }
    50% {
        left: 50%;
        bottom: 30%;
        transform: rotate(-10deg);
    }
    75% {
        bottom: 45%;
        transform: rotate(15deg);
    }
    100% {
        left: calc(100% + 80px);
        bottom: 30%;
        transform: rotate(-20deg);
    }
}

@keyframes whaleSwim {
    0% {
        right: -100px;
    }
    100% {
        right: calc(100% + 100px);
    }
}

@keyframes shellBob {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes crabWalk {
    0% {
        left: -60px;
    }
    100% {
        left: calc(100% + 60px);
    }
}

@keyframes starRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes coralSway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes waveBob {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 153, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 153, 255, 0.2);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Comic Neue', cursive;
}

.logo img {
    width: 50px;
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-ocean);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

.buy-btn {
    background: var(--gradient-ocean);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 153, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-family: 'Comic Neue', cursive;
    animation: fadeInUp 1s ease;
}

.glitch {
    position: relative;
}

.hero-text h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-ocean);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 153, 255, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 14px;
}

.hero-image {
    position: relative;
    animation: fadeInUp 1s ease 1s both;
}

.octopus-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.octopus {
    font-size: 250px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 153, 255, 0.3));
}

.floating-emoji {
    position: absolute;
    font-size: 50px;
    animation: floatAround 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 153, 255, 0.3));
}

.floating-emoji:nth-child(2) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-emoji:nth-child(3) {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.floating-emoji:nth-child(4) {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.floating-emoji:nth-child(5) {
    top: 30%;
    left: 10%;
    animation-delay: 0.5s;
    font-size: 45px;
}

.floating-emoji:nth-child(6) {
    bottom: 35%;
    right: 15%;
    animation-delay: 1.5s;
    font-size: 40px;
}

.floating-emoji:nth-child(7) {
    top: 65%;
    left: 15%;
    animation-delay: 2.5s;
    font-size: 35px;
}

.floating-emoji:nth-child(8) {
    top: 20%;
    right: 25%;
    animation-delay: 3s;
    font-size: 30px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(-5px, -20px) rotate(-5deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider path {
    fill: #FFFFFF;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'Comic Neue', cursive;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    background: linear-gradient(135deg, #E8F4FF 0%, #FFFFFF 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-blue);
    box-shadow: 0 10px 40px rgba(0, 153, 255, 0.2);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s ease infinite;
}

.about-card:nth-child(2) .card-icon {
    animation-delay: 0.2s;
}

.about-card:nth-child(3) .card-icon {
    animation-delay: 0.4s;
}

.about-card:nth-child(4) .card-icon {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(to bottom, #E8F4FF 0%, #FFFFFF 100%);
    position: relative;
    z-index: 1;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
}

.chart-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.donut-chart {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 153, 255, 0.2));
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.total-supply {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.supply-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.tokenomics-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.token-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 153, 255, 0.15);
}

.token-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.token-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.token-details p {
    color: var(--text-light);
    font-size: 14px;
}

.token-features {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    background: var(--gradient-ocean);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.roadmap-container {
    position: relative;
    display: grid;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-blue), var(--primary-blue));
}

.roadmap-item {
    display: flex;
    gap: 30px;
    position: relative;
}

.roadmap-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.roadmap-item.completed .roadmap-icon {
    border-color: var(--secondary-blue);
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    animation: pulse 2s ease infinite;
}

.roadmap-item.active .roadmap-icon {
    border-color: var(--primary-blue);
    background: white;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 217, 255, 0);
    }
}

.roadmap-content {
    flex: 1;
    background: linear-gradient(135deg, #E8F4FF 0%, #FFFFFF 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-content {
    border-color: var(--secondary-blue);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.2);
}

.roadmap-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.roadmap-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.roadmap-content li {
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
}

.roadmap-content li::before {
    content: '◦';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 20px;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8F4FF 0%, #FFFFFF 100%);
    position: relative;
    z-index: 1;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.social-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-blue);
    box-shadow: 0 10px 40px rgba(0, 153, 255, 0.2);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0c85d0);
}

.social-icon.telegram {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.social-icon.discord {
    background: linear-gradient(135deg, #7289DA, #5B6EAE);
}

.social-icon.medium {
    background: linear-gradient(135deg, #00AB6C, #008C5A);
}

.social-card:hover .social-icon {
    transform: rotate(360deg) scale(1.1);
}

.social-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.social-card p {
    color: var(--text-light);
    font-size: 14px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 153, 255, 0.3);
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    font-family: 'Comic Neue', cursive;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #003EFF, #0099FF);
    color: white;
    padding: 0 0 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-wave path {
    fill: #E8F4FF;
}

.footer-ocean-elements {
    display: flex;
    justify-content: space-around;
    padding: 40px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-sea-element {
    font-size: 35px;
    opacity: 0.8;
    animation: footerFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-sea-element:hover {
    transform: scale(1.3) rotate(15deg);
    opacity: 1;
}

.footer-sea-element:nth-child(1) {
    animation-delay: 0s;
}

.footer-sea-element:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-sea-element:nth-child(3) {
    animation-delay: 0.4s;
}

.footer-sea-element:nth-child(4) {
    animation-delay: 0.6s;
}

.footer-sea-element:nth-child(5) {
    animation-delay: 0.8s;
}

.footer-sea-element:nth-child(6) {
    animation-delay: 1s;
}

.footer-sea-element:nth-child(7) {
    animation-delay: 1.2s;
}

.footer-sea-element:nth-child(8) {
    animation-delay: 1.4s;
}

@keyframes footerFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text h2 {
        font-size: 22px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stats {
        justify-content: center;
    }

    .octopus {
        font-size: 180px;
    }

    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-ocean-elements {
        flex-wrap: wrap;
        gap: 15px;
        padding: 30px 0 20px;
    }

    .footer-sea-element {
        font-size: 30px;
    }

    .roadmap-container::before {
        left: 20px;
    }

    .roadmap-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text h2 {
        font-size: 18px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .octopus {
        font-size: 120px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .footer-ocean-elements {
        gap: 10px;
        padding: 20px 0 15px;
    }

    .footer-sea-element {
        font-size: 25px;
    }

    .footer-wave svg {
        height: 60px;
    }
}

