/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-blue: #0a1a3a;
    --ocean-blue: #1a4b8c;
    --light-blue: #4a90e2;
    --gold: #d4af37;
    --light-gold: #f4d03f;
    --white: #ffffff;
    --light-gray: #f5f7fa;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--deep-blue);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-blue);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--deep-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}

.btn-secondary:hover {
    background: var(--deep-blue);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 26, 58, 0.95); /* Deep ocean blue with transparency */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 40px;
    filter: brightness(0) invert(1); /* Makes logo white for contrast */
}

.nav-logo span {
    background: var(--gold); /* Changed to gold for contrast */
    color: var(--deep-blue); /* Dark text on gold background */
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--white); /* White text for contrast */
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: var(--gold); /* Gold on hover */
    background: rgba(255, 255, 255, 0.1);
}

/* Update the Buy button in nav to match new theme */
.nav-menu .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--deep-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-menu .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white); /* White hamburger lines */
    margin: 3px 0;
    transition: 0.3s;
}
/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--ocean-blue) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    display: block;
    font-size: 2rem;
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.contract-address {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contract-address p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.address-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
}

.address-box code {
    font-family: monospace;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('assets/wave-bg.png') repeat-x;
    background-size: contain;
    opacity: 0.3;
}

/* Story Section */
.story {
    padding: 100px 0;
    background: var(--light-gray);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-text {
    flex: 1;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.character-profiles {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

.character {
    flex: 1;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.character h3 {
    color: var(--ocean-blue);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.character ul {
    list-style-type: none;
}

.character li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.character li:before {
    content: "🐋";
    position: absolute;
    left: 0;
}

.story-image {
    flex: 1;
}

.story-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: var(--white);
}

.tokenomics-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.tokenomics-chart {
    flex: 1;
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chart-item {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.chart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--percentage);
    background-color: var(--color);
    z-index: 1;
}

.chart-label, .chart-value {
    padding: 15px 20px;
    z-index: 2;
}

.chart-label {
    flex: 1;
    font-weight: 600;
}

.chart-value {
    font-weight: 700;
    color: var(--deep-blue);
}

.tokenomics-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.metric {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.metric h3 {
    color: var(--ocean-blue);
    margin-bottom: 10px;
}

.metric p {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: var(--light-gray);
}

.roadmap-timeline {
    display: flex;
    gap: 30px;
}

.phase {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.phase:hover {
    transform: translateY(-10px);
}

.phase-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.phase h3 {
    color: var(--ocean-blue);
    margin-bottom: 20px;
}

.phase ul {
    list-style-type: none;
    text-align: left;
}

.phase li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.phase li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: var(--white);
}

.community-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.community-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--ocean-blue);
    margin-bottom: 5px;
}

.stat p {
    color: var(--deep-blue);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link.twitter {
    background: #1da1f2;
    color: white;
}

.social-link.telegram {
    background: #0088cc;
    color: white;
}

.social-link.discord {
    background: #5865f2;
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.meme-gallery h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--deep-blue);
}

.gallery-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.meme-item {
    flex: 1;
    max-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.meme-item:hover {
    transform: scale(1.05);
}

.meme-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-content {
    display: flex;
    gap: 30px;
}

.faq-column {
    flex: 1;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.7;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .story-content {
        flex-direction: column;
    }
    
    .tokenomics-content {
        flex-direction: column;
    }
    
    .roadmap-timeline {
        flex-direction: column;
    }
    
    .community-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .community-stats {
        justify-content: center;
    }
    
    .faq-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .character-profiles {
        flex-direction: column;
    }
    
    .tokenomics-info {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        flex-direction: column;
        align-items: center;
    }
    
    .meme-item {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-links {
        flex-direction: column;
    }
}