﻿ /* Previous styles remain unchanged */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:"Baloo 2", sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0a0a2a, #1a1a40, #0a0a2a);
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* ===== HERO SECTION ===== */
        .hero2 {
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow:hidden;
            position: relative;
        }

        .hero2 .ocean {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 120%;
            background: url('../images/ocean.gif');
            background-size: cover;
            /* animation: wave 5s linear infinite; */
        }

        @keyframes wave {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .dolphin {
            position: absolute;
            width: 300px;
            animation: float 4s ease-in-out infinite;
            z-index: 2;
        }

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

        .human {
            position: absolute;
            width: 300px;
            animation: bob 5s ease-in-out infinite;
        }

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

        /* Stars background */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .star {
            position: absolute;
            background-color: #fff;
            border-radius: 50%;
            animation: twinkle linear infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }

        /* Navbar */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: rgba(10, 10, 42, 0.8);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #4a4a8a;
        }

        .logo img {
          width: 100px;
            /* background: linear-gradient(45deg, #ff00cc, #3300ff);
            -webkit-text-fill-color: transparent; */
            animation: pulse 2s infinite;
        }

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

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 15px;
            border-radius: 20px;
        }

        .nav-links a:hover {
            background: linear-gradient(45deg, #ff00cc, #3300ff);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 204, 0.4);
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 80px 5% 50px;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(255, 0, 204, 0.7);
            animation: glow 3s infinite;
        }

        @keyframes glow {
            0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 204, 0.7); }
            50% { text-shadow: 0 0 30px rgba(51, 0, 255, 0.7); }
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: #d0d0e7;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff00cc, #3300ff);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 0, 204, 0.5);
            cursor: pointer;
            border: none;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(51, 0, 255, 0.6);
        }

        /* Animated Elements */
        .animation-container {
            position: relative;
            width: 100%;
            height: 300px;
            margin: 50px auto;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(10, 10, 42, 0.3);
        }

        .animation-container .ocean {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to bottom, transparent, #0066ff, #003399);
            animation: wave-anim 10s infinite linear;
        }

        @keyframes wave-anim {
            0% { background-position-x: 0; }
            100% { background-position-x: 1000px; }
        }

        .dolphin {
            position: absolute;
            bottom: 90px;
            left: -100px;
            font-size: 50px;
            animation: swim 15s infinite linear;
        }

        @keyframes swim {
            0% { left: -100px; transform: rotateY(0deg); }
            49% { transform: rotateY(0deg); }
            50% { left: 110%; transform: rotateY(180deg); }
            99% { transform: rotateY(180deg); }
            100% { left: -100px; transform: rotateY(0deg); }
        }

        .astronaut {
            position: absolute;
            top: 50px;
            right: 10%;
            font-size: 60px;
            animation: float 8s infinite ease-in-out;
        }

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

        /* Sections */
        section {
            padding: 80px 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            background: linear-gradient(45deg, #ff00cc, #3300ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Tokenomics Section */
        .tokenomics {
            background: rgba(10, 10, 42, 0.5);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            text-align: center;
        }

        .tokenomics-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 30px;
        }

        .pie-chart-container {
            position: relative;
            width: 300px;
            height: 300px;
        }

        .pie-chart {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                #ff00cc 0% 40%,
                #3300ff 40% 60%,
                #00ccff 60% 75%,
                #ffcc00 75% 90%,
                #cc00ff 90% 100%
            );
            box-shadow: 0 0 25px rgba(255, 0, 204, 0.4);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .pie-chart-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #0a0a2a, #1a1a40);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
        }

        .tokenomics-list {
            flex: 1;
            min-width: 300px;
            text-align: left;
        }

        .token-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(20, 20, 60, 0.7);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .token-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(255, 0, 204, 0.3);
        }

        .token-color {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .token-info {
            flex: 1;
        }

        .token-percentage {
            font-weight: bold;
            font-size: 1.2rem;
            color: #ff00cc;
        }

        /* Roadmap */
        .roadmap {
            background: rgba(10, 10, 42, 0.5);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
        }

        .roadmap-items {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .roadmap-item {
            flex: 1;
            min-width: 250px;
            background: rgba(20, 20, 60, 0.7);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .roadmap-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(255, 0, 204, 0.3);
        }

        .roadmap-item i {
            font-size: 40px;
            margin-bottom: 15px;
            color: #ff00cc;
        }

        /* Dashboard */
        .dashboard-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .card {
            background: rgba(20, 20, 60, 0.7);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(51, 0, 255, 0.3);
        }

        .card i {
            font-size: 50px;
            margin-bottom: 20px;
            color: #3300ff;
        }

        /* Partners */
 /* Partners Section with Images */
.partners-section {
    text-align: center;
    padding: 80px 5%;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner {
    background: rgba(20, 20, 60, 0.7);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.partner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(255, 0, 204, 0.3);
    background: rgba(30, 30, 80, 0.8);
}

.partner-logo-container {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.3s ease;
}

.partner:hover .partner-logo-container {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
}

.partner:hover .partner-logo {
    filter: brightness(1.2) contrast(1.1);
}

.partner h3 {
    margin: 15px 0 10px;
    font-size: 1.3rem;
    color: white;
}

.partner-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #ff00cc, #3300ff);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.partner-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 204, 0.3);
}

.partner-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Partner placeholder for missing images */
.partner-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff00cc, #3300ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

/* Partner image loading states */
.partner-logo.loading {
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .partner-logo-container {
        width: 120px;
        height: 120px;
    }
    
    .partner h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .partner-logo-container {
        width: 100px;
        height: 100px;
    }
    
    .partner {
        padding: 20px 15px;
    }
}

        /* Gallery Section */
        .gallery-section {
            padding: 80px 5%;
            text-align: center;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
        }

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

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(255, 0, 204, 0.3);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 42, 0.8);
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        /* Social Media Section */
        .social-section {
            padding: 80px 5%;
            text-align: center;
            background: rgba(10, 10, 42, 0.5);
            border-radius: 20px;
            margin: 50px 0;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 40px;
        }

        .social-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #ff00cc, #3300ff);
            color: white;
            font-size: 30px;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }

        .social-icon:nth-child(2) {
            animation-delay: 0.2s;
            background: linear-gradient(45deg, #1da1f2, #0d8bd9);
        }

        .social-icon:nth-child(3) {
            animation-delay: 0.4s;
            background: linear-gradient(45deg, #405de6, #5851db);
        }

        .social-icon:nth-child(4) {
            animation-delay: 0.6s;
            background: linear-gradient(45deg, #ff0000, #cc0000);
        }

        .social-icon:nth-child(5) {
            animation-delay: 0.8s;
            background: linear-gradient(45deg, #25d366, #128c7e);
        }

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

        .social-icon:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 5px 20px rgba(255, 0, 204, 0.5);
        }

        .social-tooltip {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 10, 42, 0.9);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        .social-icon:hover .social-tooltip {
            opacity: 1;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px 5%;
            background: rgba(10, 10, 42, 0.8);
            margin-top: 50px;
        }

        /* Whitepaper Modal */
        .whitepaper-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
        }

        .whitepaper-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .whitepaper-content {
            background: linear-gradient(135deg, #0a0a2a, #1a1a40);
            width: 90%;
            max-width: 900px;
            height: 80vh;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(255, 0, 204, 0.5);
            transform: scale(0.9) translateY(50px);
            opacity: 0;
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
        }

        .whitepaper-modal.active .whitepaper-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .whitepaper-header {
            padding: 20px;
            background: rgba(10, 10, 42, 0.8);
            border-bottom: 1px solid #4a4a8a;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .whitepaper-header h2 {
            background: linear-gradient(45deg, #ff00cc, #3300ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2rem;
        }

        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            transform: rotate(90deg);
            color: #ff00cc;
        }

        .whitepaper-body {
            padding: 30px;
            overflow-y: auto;
            flex: 1;
        }

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

        .whitepaper-section h3 {
            color: #ff00cc;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .whitepaper-section p {
            line-height: 1.6;
            margin-bottom: 15px;
            color: #d0d0e7;
        }

        .whitepaper-section ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .whitepaper-section li {
            margin-bottom: 8px;
            color: #d0d0e7;
        }

        .whitepaper-tokenomics {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin: 30px 0;
        }

        .whitepaper-pie-chart {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: conic-gradient(
                #ff00cc 0% 40%,
                #3300ff 40% 60%,
                #00ccff 60% 75%,
                #ffcc00 75% 90%,
                #cc00ff 90% 100%
            );
            box-shadow: 0 0 20px rgba(255, 0, 204, 0.4);
            position: relative;
            animation: rotate 20s linear infinite;
        }

        .whitepaper-pie-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #0a0a2a, #1a1a40);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            box-shadow: 0 0 10px rgba(255, 0, 204, 0.5);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .nav-links {
                gap: 15px;
            }
            
            .tokenomics-container {
                flex-direction: column;
            }
            
            .pie-chart-container {
                width: 250px;
                height: 250px;
            }
            
            .roadmap-items {
                flex-direction: column;
            }
            
            .gallery-container {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .social-icons {
                gap: 15px;
            }
            
            .social-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .whitepaper-content {
                width: 95%;
                height: 85vh;
            }
            
            .whitepaper-body {
                padding: 20px;
            }
            
            .whitepaper-header h2 {
                font-size: 1.5rem;
            }
            
            .whitepaper-pie-chart {
                width: 200px;
                height: 200px;
            }
            
            .whitepaper-pie-center {
                width: 80px;
                height: 80px;
                font-size: 0.8rem;
            }
        }