/* BONK BUTT - Cheeky Meme Coin CSS */

:root {
    --primary-color: #FFE500;
    --secondary-color: #FFE500;
    --accent-color: #FFE500;
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --card-bg: #000000;
    --hover-color: #FFE500;
    --gradient-1: #FFE500;
    --gradient-2: #FFE500;
}

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

body {
    font-family: 'Arial', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

/* Animated Background Circles */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    animation: float-chaos 10s infinite ease-in-out;
    opacity: 0.3;
}

@keyframes float-chaos {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translate(100px, -200px) scale(1.5);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-150px, 100px) scale(0.5);
        opacity: 0.1;
    }
    75% { 
        transform: translate(200px, 150px) scale(1.2);
        opacity: 0.6;
    }
}

/* Header & Navigation */
header {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    animation: chaotic-glow 1s ease-in-out infinite alternate;
}

@keyframes chaotic-glow {
    0% { text-shadow: 0 0 6px var(--primary-color); transform: rotate(0deg); }
    50% { text-shadow: 0 0 18px var(--primary-color); transform: rotate(2deg); }
    100% { text-shadow: 0 0 6px var(--primary-color); transform: rotate(-1deg); }
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/aboutbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
    animation: chaotic-bounce 1.5s ease-in-out infinite;
    text-shadow: 0 0 12px var(--primary-color);
}

@keyframes chaotic-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(2deg) scale(1.05); }
    50% { transform: translateY(-10px) rotate(-1deg) scale(0.98); }
    75% { transform: translateY(-15px) rotate(1deg) scale(1.02); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-emojis {
    font-size: 3rem;
    margin-bottom: 2rem;
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-15deg); }
    20% { transform: rotateZ(10deg); }
    25% { transform: rotateZ(-10deg); }
    30% { transform: rotateZ(6deg); }
    35% { transform: rotateZ(-4deg); }
    40%, 100% { transform: rotateZ(0); }
}

.cta-button {
    background: var(--primary-color);
    color: black;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 229, 0, 0.5);
    animation: button-chaos 3s ease-in-out infinite;
}

@keyframes button-chaos {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    50% { transform: rotate(-1deg); }
    75% { transform: rotate(0.5deg); }
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 229, 0, 0.8);
}

.bouncing-dog {
    position: absolute;
    right: 10%;
    top: 50%;
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
    transform: translateY(-50%);
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-70%) rotate(10deg); }
}

/* Bonk Game Section */
.bonk-game {
    padding: 6rem 0;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
    text-align: center;
}

.bonk-game h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: chaotic-glow 2s ease-in-out infinite alternate;
}

.game-instructions {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.game-area {
    position: relative;
    height: 400px;
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.cheems-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cheems-gif {
    width: 400px;
    height: 400px;
    object-fit: contain;
    cursor: pointer;
}

@keyframes idle-sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

@keyframes butt-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
    75% { transform: rotate(-1deg); }
}


.hit-effects {
    position: absolute;
    pointer-events: none;
    z-index: 4;
}

.hit-effect {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    animation: hit-explosion 1s ease-out forwards;
}

@keyframes hit-explosion {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5) rotate(360deg);
        opacity: 0;
    }
}

.score-display {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 6px var(--primary-color);
}

#bonkCount {
    color: var(--text-color);
    animation: score-pulse 0.5s ease-out;
}

@keyframes score-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* About Section */
.about {
    padding: 8rem 0;
    background-image: url('images/aboutbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-color);
    position: relative;
    z-index: 10;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    animation: chaotic-glow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-color);
    background: rgba(255, 229, 0, 0.1);
    padding: 3rem;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    position: relative;
    backdrop-filter: blur(5px);
    animation: about-glow 3s ease-in-out infinite alternate;
}

@keyframes about-glow {
    0% { 
        box-shadow: 0 0 20px rgba(255, 229, 0, 0.3);
        border-color: var(--primary-color);
    }
    100% { 
        box-shadow: 0 0 40px rgba(255, 229, 0, 0.6);
        border-color: var(--primary-color);
    }
}

.about-description::before {
    content: '🍑💥🚀';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 2rem;
    animation: float-about-emojis 2s ease-in-out infinite;
}

.about-description::after {
    content: '🌙💎✨';
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 2rem;
    animation: float-about-emojis 2s ease-in-out infinite reverse;
}

@keyframes float-about-emojis {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

/* Memes Section */
.memes {
    padding: 8rem 0;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
}

.memes h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    animation: chaotic-glow 2s ease-in-out infinite alternate;
}

.memes-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 4rem;
    opacity: 0.8;
}

.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.meme-card {
    transition: all 0.3s ease;
    cursor: pointer;
    animation: card-float 4s ease-in-out infinite;
}

.meme-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.meme-card:nth-child(odd) {
    animation-delay: 0.5s;
}

.meme-card:nth-child(even) {
    animation-delay: 1s;
}

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

.meme-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.meme-placeholder span {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: emoji-wiggle 2s ease-in-out infinite;
}

.meme-placeholder p {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 6px var(--primary-color);
}

@keyframes emoji-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(2deg); }
}

.meme-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Roadmap Section */
.roadmap {
    padding: 8rem 0;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 229, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 229, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.roadmap h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 5rem;
    color: var(--primary-color);
    animation: chaotic-glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 12px rgba(255, 229, 0, 0.3);
    position: relative;
}

.roadmap h2::after {
    content: '🚀💫🎭';
    position: absolute;
    top: -20px;
    right: -60px;
    font-size: 1.5rem;
    animation: float-emojis 3s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes float-emojis {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    z-index: -1;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 229, 0, 0.05);
    border-radius: 25px;
    border-left: 6px solid var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(5px);
    animation: timeline-float 6s ease-in-out infinite;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(even) {
    animation-delay: 1s;
    transform: translateX(20px);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(255, 229, 0, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

.timeline-item:hover {
    transform: translateX(15px) scale(1.02);
    background: rgba(255, 229, 0, 0.1);
    box-shadow: 0 10px 30px rgba(255, 229, 0, 0.2);
    border-left-color: var(--primary-color);
}

.timeline-item:nth-child(even):hover {
    transform: translateX(35px) scale(1.02);
}

.timeline-icon {
    font-size: 3.5rem;
    min-width: 70px;
    text-align: center;
    animation: icon-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 229, 0, 0.4));
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(3deg); }
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 6px rgba(255, 229, 0, 0.3);
    animation: text-glow 3s ease-in-out infinite alternate;
}

@keyframes text-glow {
    0% { text-shadow: 0 0 6px rgba(255, 229, 0, 0.3); }
    100% { text-shadow: 0 0 12px rgba(255, 229, 0, 0.6); }
}

.timeline-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.4;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--primary-color);
}

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

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contract-address {
    font-family: monospace;
    background: var(--bg-color);
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-color);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-emojis {
        font-size: 2rem;
    }
    
    .bouncing-dog {
        font-size: 3rem;
        right: 5%;
    }
    
    .about-description {
        font-size: 1.2rem;
        padding: 2rem;
    }
    
    .about-description::before,
    .about-description::after {
        font-size: 1.5rem;
    }
    
    .memes-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .meme-placeholder {
        height: 150px;
        padding: 1.5rem;
    }
    
    .meme-placeholder span {
        font-size: 2.5rem;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        transform: none !important;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .timeline-item:nth-child(even) {
        transform: none !important;
    }
    
    .timeline-item:hover {
        transform: translateY(-5px) scale(1.02) !important;
    }
    
    .timeline-item::before {
        left: -10px;
        width: 15px;
        height: 15px;
    }
    
    .timeline-icon {
        font-size: 3rem;
        min-width: auto;
    }
    
    .timeline-content h3 {
        font-size: 1.6rem;
    }
    
    .roadmap h2::after {
        right: -40px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Game responsive adjustments */
    .bonk-game h2 {
        font-size: 2.5rem;
    }
    
    .game-area {
        height: 350px;
        margin: 0 auto 2rem;
    }
    
    .cheems-gif {
        width: 300px;
        height: 300px;
    }
    
    .score-display {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about h2,
    .memes h2,
    .roadmap h2 {
        font-size: 2.5rem;
    }
    
    .roadmap h2::after {
        right: -30px;
        font-size: 1rem;
    }
    
    .timeline-item {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }
    
    .timeline-icon {
        font-size: 2.5rem;
    }
    
    .memes-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .memes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .meme-placeholder {
        height: 120px;
        padding: 1rem;
    }
    
    .meme-placeholder span {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .about-description::before,
    .about-description::after {
        font-size: 1.3rem;
    }
    
    .timeline-item {
        padding: 1.5rem;
    }
    
    /* Game mobile adjustments */
    .bonk-game h2 {
        font-size: 2rem;
    }
    
    .game-area {
        height: 300px;
        margin: 0 auto 1.5rem;
    }
    
    .cheems-gif {
        width: 240px;
        height: 240px;
    }
    
    .score-display {
        font-size: 1.3rem;
    }
    
    .game-instructions {
        font-size: 1rem;
    }
}
/* Click Placeholder for GIF */
.click-placeholder {
    width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 229, 0, 0.1);
    border: 3px dashed var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.click-placeholder:hover {
    background: rgba(255, 229, 0, 0.2);
    transform: scale(1.05);
}

.click-placeholder span {
    font-size: 6rem;
    margin-bottom: 1rem;
    animation: bounce-placeholder 2s ease-in-out infinite;
}

.click-placeholder p {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 6px rgba(255, 229, 0, 0.5);
}

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

/* Meme Images */
.meme-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
    max-height: none;
}

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

/* Responsive adjustments for placeholder */
@media (max-width: 768px) {
    .click-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .click-placeholder span {
        font-size: 4rem;
    }
    
    .click-placeholder p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .click-placeholder {
        width: 240px;
        height: 240px;
    }
    
    .click-placeholder span {
        font-size: 3rem;
    }
    
    .click-placeholder p {
        font-size: 1.1rem;
    }
}
