/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Fredoka One', cursive;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1E3A8A;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,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;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #1E3A8A;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF6B35;
}

.nav-link.cta-btn {
    background: linear-gradient(45deg, #FF6B35, #FF8C42);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #FFD700; /* Fallback for video */
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 165, 0, 0.6); /* Orange overlay */
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    animation: bounceIn 1s ease-out;
}

.original-badge {
    background: linear-gradient(45deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    animation: pulse 2s infinite;
}

.hero-slogan {
    font-size: 1.8rem;
    color: #1E3A8A;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Fredoka One', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B35, #FF8C42);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

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

.btn-secondary:hover {
    background: #1E3A8A;
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.crypto-symbol {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.crypto-symbol:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.crypto-symbol:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.crypto-symbol:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.crypto-symbol:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 3rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

/* Fair Launch Section */
.fair-launch {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
}

.launch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.launch-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.launch-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits {
    display: grid;
    gap: 1rem;
}

.benefit {
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.launch-widget {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.widget-placeholder h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Tokenomics Section */
.tokenomics {
    padding: 6rem 0;
    background: white;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.token-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.token-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.token-stat h3 {
    font-size: 2.5rem;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.token-stat p {
    font-weight: 600;
    color: #333;
}

.pump-mechanics {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
}

.pump-mechanics h3 {
    color: #1E3A8A;
    margin-bottom: 1.5rem;
}

.pump-mechanics ul {
    list-style: none;
}

.pump-mechanics li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.pump-mechanics li::before {
    content: '🚀';
    position: absolute;
    left: 0;
}

/* How to Buy Section */
.how-to-buy {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1E3A8A, #3B82F6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

.pro-tips {
    background: rgba(255,255,255,0.9);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.pro-tips h3 {
    color: #1E3A8A;
    margin-bottom: 2rem;
}

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

.tip {
    background: linear-gradient(45deg, #FF6B35, #FF8C42);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 600;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: white;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.phase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.phase-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.phase h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.phase ul {
    list-style: none;
}

.phase li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #555;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    text-align: center;
}

.community-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.5rem;
}

.community-guidelines {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.community-guidelines h3 {
    margin-bottom: 1rem;
}

/* Meme Gallery Section */
.meme-gallery {
    padding: 6rem 0;
    background: white;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.meme-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.meme-item:hover {
    transform: scale(1.05);
}

.meme-item img,
.meme-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.meme-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: center;
    font-weight: 600;
}

.submit-meme {
    text-align: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 3rem;
    border-radius: 20px;
}

.submit-meme h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.submit-meme p {
    margin-bottom: 2rem;
    color: #333;
}

/* Footer */
.footer {
    background: #1E3A8A;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

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

.disclaimer {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.copyright {
    font-weight: 600;
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .launch-content,
    .tokenomics-content {
        grid-template-columns: 1fr;
    }
    
    .token-info {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .phase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-slogan {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

