/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --primary-color: #24c0db;
    --secondary-color: #31d4dad8;
    --background-dark: #0f0f1e;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --gradient: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* Global Styles */
body {
    font-family: 'Bagel Fat One', sans-serif;
    background-color: var(--background-dark);
    color: #fff;
    text-shadow: 0 0 3px #000, 0 0 5px #000;
    line-height: 1.6;
    overflow-x: hidden;
}
.video-background {
    position: absolute;
    top: 110%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Send the video to the back */
    transform: translate(-50%, -50%);
    object-fit: cover; /* Cover the entire area */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.copy-box {
    display: inline-block;
    
    color: #000000;
    text-shadow: 0 0 5px #fff;
    font-size: 20px;
    white-space: nowrap;
    
  }
/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.ca-box {
    font-family: 'Fjalla One', sans-serif;
    display: inline-block;
    border-color: #24c0db #1a3c5a #1a3c5a #24c0db;
    color:whitesmoke;
    align-items: center;
    justify-content: center;
    font-size: 15px; /* Font size */
    font-weight: bold; /* Font weight */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center text */
}

.nav-links a {
   
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    
}

.connect-wallet {
    background: var(--gradient);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.connect-wallet:hover {
    transform: translateY(-2px);
}
h2 {
    text-align: center; /* Center the text */
    margin-bottom: 20px; /* Optional: Add space below the heading */
    font-size: 3rem;
}
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.cta-buttons {
    font-family: 'Bagel Fat One', sans-serif;
    padding: 20px;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-btn, .secondary-btn {
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.primary-btn {
    background: var(--gradient);
    color: white;
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-light);
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-3px);
}

/* About Section */
.about {
    font-size: 20px;
    margin: 10px;
    text-align: center;
    padding: 100px 0;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.tokenomics-card {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tokenomics-card:hover {
    transform: scale(1.05);
}

/* How to Buy Section */
.how-to-buy {
    padding: 100px 0;
}

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

.step {
    background: rgba(211, 211, 211, 0.315);
    padding: 20px;
    border-radius: 10px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    text-align: center;
    position: relative;
}


/* Community Section */
.community {
    padding: 100px 0;
    
}

.social-links {
    display: flex;
    gap: 20px; 
    
}

.social-btn img {
    width: 50px; /* Set the width of the icons */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s; /* Animation for hover effect */
}

.social-btn img:hover {
    transform: scale(1.1); /* Scale the icon on hover */
}

/* Footer */
footer {
    
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

@keyframes bubble {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% { 
        opacity: 0.8;
    }
    100% { 
        transform: translateY(-20vh) scale(1.5);
        opacity: 0;
    }
}

.ocean-container {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(180deg, #0f0f1e 0%, #1a3c5a 100%);
}

.stingray {
    position: absolute;
    font-size: 80px;
    animation: float 6s ease-in-out infinite;
    user-select: none;
    z-index: 2;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 150px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%232ecc7133"/></svg>') repeat-x;
    opacity: 0.8;
    animation: wave 15s linear infinite;
}

.wave:nth-child(2) {
    bottom: 10px;
    opacity: 0.5;
    animation: wave 20s linear infinite reverse;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    pointer-events: none;
}

.floating-coins img {
    width: 80px;
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}