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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('images/13.png') center center / contain no-repeat fixed,
                linear-gradient(to right, #ffb347 0%, #fff7d1 50%, #ffb347 100%);
    min-height: 100vh;
}

.bonkfeast-logo-header {
    font-family: 'Luckiest Guy', 'Comic Sans MS', 'Fredoka', sans-serif;
    font-size: 2.2rem !important;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
}

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

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    margin: 2rem 20px;
    box-shadow: 0 8px 32px rgba(255, 179, 71, 0.10);
    min-height: 600px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 0 2rem;
    padding-top: 6rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(255, 179, 71, 0.18);
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(255, 179, 71, 0.18);
}

.token-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ca-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ca-label {
    font-weight: 600;
    color: #333;
}

.ca-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

#ca-text {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #495057;
    word-break: break-all;
    flex: 1;
}

.copy-btn {
    background: linear-gradient(45deg, #fff7d1, #ffb347);
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 600;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 179, 71, 0.24);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-btn {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.social-btn.dexscreener {
    background: linear-gradient(45deg, #ffb347, #fff7d1);
    color: #fff;
}

.social-btn.twitter {
    background: linear-gradient(45deg, #fff7d1, #ffb347);
    color: #fff;
}

.social-btn.telegram {
    background: linear-gradient(45deg, #fff7d1, #ffb347 70%);
    color: #fff;
}

.social-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Added transition for social-btn hover */
.social-btn:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.bonkfeast-image {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

#bonkfeast-img {
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

#bonkfeast-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}
.bonkfeast-logo {
    font-family: 'Luckiest Guy', 'Comic Sans MS', 'Fredoka', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0;
    /* Orange/yellow glow + subtle white shadow */
    text-shadow:
        0 4px 0 #ffb347,
        0 8px 0 #fff7d1,
        2px 2px 0 #ffb347,
        -2px 2px 0 #ffb347,
        2px -2px 0 #ffb347,
        -2px -2px 0 #fff7d1,
        0 0 12px #fff,
        0 12px 24px rgba(255,179,71,0.15);
}

.bonkfeast-logo-header {
    font-family: 'Luckiest Guy', 'Comic Sans MS', 'Fredoka', sans-serif;
    font-size: 2.2rem !important;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 0;
    text-shadow:
        0 4px 0 #ffb347,
        0 8px 0 #fff7d1,
        2px 2px 0 #ffb347,
        -2px 2px 0 #ffb347,
        2px -2px 0 #ffb347,
        -2px -2px 0 #fff7d1,
        0 0 12px #fff,
        0 12px 24px rgba(255,179,71,0.15);
    will-change: opacity, transform;
}


/* Sections */

.how-to-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #fff7d1, #ffb347 80%, #fff 100%);
}

.how-to-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.how-to-step {
    flex: 1 1 200px;
    max-width: 250px;
}

.how-to-icon {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}


.section-title {
    font-family: 'Luckiest Guy', 'Comic Sans MS', 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow:
        0 4px 0 #000,
        0 8px 0 #333,
        2px 2px 0 #000,
        -2px 2px 0 #000,
        2px -2px 0 #000,
        -2px -2px 0 #000,
        0 0 12px #fff,
        0 12px 24px rgba(0,0,0,0.2);
}


.section {
    padding: 4rem 0;
    margin: 2rem 0;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 2rem 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}


.content-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.content-grid.reverse {
    flex-direction: row-reverse;
}
.section-img {
    flex-shrink: 0;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.content-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

/* Tokenomics */
.tokenomics-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.tokenomics-card {
    background: linear-gradient(135deg, #fff7d1 60%, #ffb347 100%);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 250px;
    text-align: center;
    color: #000;
    box-shadow: 0 4px 12px rgba(255,179,71,0.13);
    border: 2px solid #fff7d1;
}

.tokenomics-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.tokenomics-desc {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.tokenomics-supply {
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #000;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid,
.content-grid.reverse {
    flex-direction: column !important;
    gap: 1rem;
}
.section-img {
    margin: 0 auto 1rem auto !important;
    max-width: 90vw;
}


    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .ca-value {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        margin: 1rem 10px;
    }
    
    .section:nth-child(even) {
        margin: 1rem 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .content-grid,
    .tokenomics-grid {
        padding: 0 1rem;
    }
}



.footer {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    text-align: center;
    padding: 3rem 0 2rem 0;
    margin-top: 4rem;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.footer-header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Luckiest Guy', 'Comic Sans MS', 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 2px;
    text-align: center;
    text-shadow:
        0 4px 0 #ffb347,
        0 8px 0 #fff7d1,
        2px 2px 0 #ffb347,
        -2px 2px 0 #ffb347,
        2px -2px 0 #ffb347,
        -2px -2px 0 #fff7d1,
        0 0 12px #fff,
        0 12px 24px rgba(255,179,71,0.15);
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff7d1;
    text-decoration: underline;
}

.footer-contact {
    margin-bottom: 1rem;
    color: #000;
    font-size: 1.1rem;
}

.footer-contact a {
    color: #000;
    text-decoration: underline;
}

.footer-disclaimer {
    color: #000;
    font-size: 1rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .footer-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-logo {
        font-size: 2.2rem;
    }
    .footer-nav {
        gap: 1rem;
        font-size: 1rem;
    }
    
}

/* GSAP fade-in animation and transitions */
[data-animate="fade-in"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.section-title {
  will-change: opacity, transform;
}

/* === Landing Intro Animation === */
.intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('images/13.png') center center / contain no-repeat,
              linear-gradient(135deg, #fff7d1 0%, #ffb347 50%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, transform 1s ease;
}

.intro-screen h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 4px 0 #ffb347, 0 8px 0 #fff7d1,
               2px 2px 0 #ffb347, -2px 2px 0 #ffb347,
               2px -2px 0 #ffb347, -2px -2px 0 #fff7d1,
               0 0 12px #fff, 0 12px 24px rgba(255,179,71,0.15);
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-screen.hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
