* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0e27;
    color: #fff;
    overflow-x: hidden;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.7);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 2px solid rgba(0, 255, 157, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #8a2be2, #00ff9d, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #00ff9d;
    text-shadow: 0 0 10px #00ff9d;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ff9d;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 120px;
    font-weight: bold;
    background: linear-gradient(90deg, #8a2be2, #00ff9d, #ff1493, #8a2be2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 32px;
    margin-bottom: 15px;
    color: #00ff9d;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shark-image {
    margin: 50px 0;
}

.shark-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid #00ff9d;
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.6);
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(90deg, #8a2be2, #ff1493);
    color: #fff;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
}

.btn-secondary {
    background: transparent;
    color: #00ff9d;
    border: 2px solid #00ff9d;
}

.btn-secondary:hover {
    background: #00ff9d;
    color: #0a0e27;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
}

.cta-button {
    background: linear-gradient(90deg, #00ff9d, #8a2be2);
    padding: 10px 25px;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
}

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

/* Stats Section */
.stats {
    padding: 80px 0;
    background: rgba(138, 43, 226, 0.05);
}

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

.stat-card {
    background: rgba(26, 26, 62, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 255, 157, 0.3);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.3);
    border-color: #00ff9d;
}

.stat-card h3 {
    font-size: 48px;
    color: #00ff9d;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
}

.stat-card p {
    font-size: 18px;
    color: #ccc;
}

/* About Section */
.about {
    padding: 100px 0;
}

.section-title {
    font-size: 64px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #8a2be2, #00ff9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
}

.about-content p {
    margin-bottom: 20px;
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: rgba(255, 20, 147, 0.05);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    border: 2px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    border-color: #ff1493;
}

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

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

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Tokenomics */
.tokenomics {
    padding: 100px 0;
}

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

.token-card {
    background: rgba(26, 26, 62, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
    border-color: #8a2be2;
}

.token-card h3 {
    font-size: 56px;
    color: #ff1493;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.token-card p {
    font-size: 18px;
    color: #ccc;
}

/* Footer */
.footer {
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid rgba(0, 255, 157, 0.3);
    background: rgba(10, 14, 39, 0.8);
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon {
    color: #00ff9d;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.social-icon:hover {
    color: #ff1493;
    text-shadow: 0 0 10px #ff1493;
    transform: translateY(-3px);
}

/* Animations */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-tagline {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .shark-image img {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
    }

    .stat-card h3 {
        font-size: 36px;
    }

    .token-card h3 {
        font-size: 42px;
    }
}