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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Grid Pattern Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header Styles */
.header {
    position: relative;
    z-index: 10;
    padding: 20px 0;
    background: transparent;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.noot-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-shadow: 2px 2px 0px #fff;
}

.navigation {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 8px 16px;
    display: inline-block;
}

.nav-link:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
}

.header-buy-btn {
    background: linear-gradient(135deg, #000, #333);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.header-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 5;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* Floating Logos */
.floating-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.logo-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.logo-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.logo-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.logo-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.logo-5 {
    top: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.logo-6 {
    top: 80%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.logo-7 {
    top: 15%;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 9s;
}


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

/* Center Content */
.center-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main-headline {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #000;
    text-shadow: 3px 3px 0px #fff, -1px -1px 0px #fff, 1px -1px 0px #fff, -1px 1px 0px #fff;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.sub-headline {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: #000;
    text-shadow: 1px 1px 0px #fff;
    max-width: 600px;
    margin-bottom: 32px;
}

.main-buy-btn {
    background: linear-gradient(135deg, #000, #333);
    color: #fff;
    border: none;
    padding: clamp(16px, 4vw, 18px) clamp(32px, 8vw, 40px);
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.main-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* Right Side */
.right-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.platform-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    max-width: 20px;
    max-height: 20px;
}

/* Specific sizing for each logo */
.social-icon.pump-fun .platform-logo {
    width: 20px;
    height: 20px;
}

.social-icon.axiom .platform-logo {
    width: 35px;
    height: 35px;
}

.social-icon.x-community .platform-logo {
    width: 35px;
    height: 35px;
}

.thumbs-up {
    font-size: 30px;
    margin-top: 10px;
    filter: drop-shadow(2px 2px 0px #000);
}


/* Roadmap Section */
.roadmap-section {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

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

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 0px #fff;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    background: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.timeline-marker {
    background: #000;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 20px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 5;
}

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

.tokenomics-card {
    background: #fff !important;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.tokenomics-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #f8f8f8 !important;
}

.tokenomics-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
}

.card-description {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Contract Address Section */
.contract-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
}

.contract-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    min-width: 300px;
    justify-content: center;
}

.contract-address:hover {
    background: #f8f8f8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contract-text {
    flex: 1;
    text-align: center;
}

.copy-icon {
    font-size: 1rem;
    opacity: 0.7;
}

.contract-address.copied {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.contract-address.copied .contract-text {
    content: "Copied!";
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.footer-strip {
    background: #000;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.footer-text {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.footer-bottom {
    height: 20px;
    background: linear-gradient(90deg, #000, #333);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    
    .center-content {
        text-align: center;
        align-items: center;
        order: 1;
    }
    
    .right-side {
        align-items: center;
        order: 2;
    }
    
    .social-icons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
    
    .floating-logo {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .center-content {
        gap: 24px;
    }
    
    .social-icons {
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .main-buy-btn, .secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-logo {
        width: 35px;
        height: 35px;
    }
    
    .social-icons {
        flex-direction: row;
        gap: 10px;
    }
    
    .social-icon {
        min-width: auto;
        padding: 12px 16px;
    }
    
    .footer-strip {
        gap: 20px;
    }
    
    .footer-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 15px;
    }
    
    .navigation {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .hero-section {
        padding: 30px 15px;
    }
    
    .center-content {
        gap: 20px;
    }
    
    .social-icons {
        flex-direction: row;
        justify-content: center;
        margin-top: 15px;
    }
    
    .floating-logo {
        width: 30px;
        height: 30px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .platform-logo {
        width: 18px;
        height: 18px;
    }
    
    .social-icon.pump-fun .platform-logo {
        width: 18px;
        height: 18px;
    }
    
    .social-icon.axiom .platform-logo {
        width: 25px;
        height: 25px;
    }
    
    .social-icon.x-community .platform-logo {
        width: 25px;
        height: 25px;
    }
    
    .roadmap-section, .tokenomics-section {
        padding: 60px 15px;
    }
    
    .roadmap-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .timeline-item, .tokenomics-card {
        padding: 25px 20px;
    }
    
    .contract-address {
        min-width: 250px;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}