@font-face {
    font-family: 'Beach Day';
    src: url('beachday.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Beach Day', 'Comic Sans MS', cursive, sans-serif;
    background: #ffffff;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

/* Notebook paper background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            white 0px,
            white 24px,
            #e8e8ff 25px,
            #e8e8ff 26px
        );
    opacity: 0.3;
    z-index: -1;
}

/* Meme Rain Animation */
.meme-rain {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-meme {
    position: absolute;
    width: 60px;
    opacity: 0.3;
    animation: float-down 15s infinite linear;
}

@keyframes float-down {
    0% {
        transform: translateY(-100vh) translateX(0) rotate(0deg);
        left: calc(var(--random-x, 50) * 1%);
    }
    100% {
        transform: translateY(100vh) translateX(100px) rotate(360deg);
        left: calc(var(--random-x, 50) * 1%);
    }
}

.floating-meme:nth-child(1) { --random-x: 10; left: 10%; }
.floating-meme:nth-child(2) { --random-x: 30; left: 30%; }
.floating-meme:nth-child(3) { --random-x: 50; left: 50%; }
.floating-meme:nth-child(4) { --random-x: 70; left: 70%; }
.floating-meme:nth-child(5) { --random-x: 90; left: 90%; }

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: 'Beach Day', 'Comic Sans MS', cursive, sans-serif;
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    transform: scale(1.2) rotate(5deg);
    color: #ff0080;
}

.buy-btn {
    background: white !important;
    color: #333 !important;
    padding: 10px 25px;
    border: 3px solid #333 !important;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px !important;
    box-shadow: 3px 3px 0 #333 !important;
    font-weight: bold !important;
}

.buy-btn:hover {
    transform: scale(1.1) rotate(-3deg) !important;
    box-shadow: 5px 5px 0 #333 !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 100px;
    text-align: center;
}

.main-title {
    font-family: 'Beach Day', 'Comic Sans MS', cursive, sans-serif;
    font-size: 120px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-family: 'Beach Day', 'Comic Sans MS', cursive, sans-serif;
    font-size: 24px;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
}

.hero-meme {
    margin: 30px 0;
}

.main-meme {
    width: 400px;
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons - Notebook Sketch Style */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Contract Display */
.contract-display {
    margin-top: 20px;
    padding: 15px 30px;
    background: white;
    border: 3px solid #333;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 3px 3px 0 #333;
    font-family: monospace;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.contract-display:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 5px 5px 0 #333;
    background: #f9f9f9;
}

.contract-display:active {
    transform: rotate(-1deg) scale(0.98);
}

.cta-btn {
    font-family: 'Beach Day', 'Comic Sans MS', cursive, sans-serif;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-transform: uppercase;
    position: relative;
    background: white;
    color: #333;
    border: 3px solid #333;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    box-shadow: 3px 3px 0 #333, 6px 6px 0 #666;
}

.primary-btn {
    background: white;
    color: #333;
    border: 3px solid #333;
    position: relative;
    overflow: visible;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: transparent;
    border: 2px dashed #333;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    opacity: 0.5;
    z-index: -1;
}

.secondary-btn {
    background: white;
    color: #333;
    border: 3px solid #333;
    border-style: dashed;
}

.cta-btn:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 5px 5px 0 #333, 10px 10px 0 #666;
    background: #f9f9f9;
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: white;
    position: relative;
    z-index: 10;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(64, 224, 208, 0.1) 0%, transparent 50%);
}

.section-title {
    font-family: 'Beach Day', 'Comic Sans MS', cursive, sans-serif;
    font-size: 60px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border: 3px solid #333;
    border-radius: 15px 225px 15px 255px/255px 15px 225px 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 4px 4px 0 #333;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 50%;
    border-style: dashed;
}

.stat-card:hover {
    transform: translateY(-10px) rotate(-3deg);
    box-shadow: 6px 6px 0 #333;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: #fffaf0;
    position: relative;
    z-index: 10;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 0, 128, 0.05) 35px, rgba(255, 0, 128, 0.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 140, 0, 0.05) 35px, rgba(255, 140, 0, 0.05) 70px);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.about-card:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.3);
}

.about-meme {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: 'Beach Day', 'Comic Sans MS', cursive, sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff0080;
}

.about-card p {
    font-size: 16px;
    color: #666;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 100px 20px;
    background: #fff;
    position: relative;
    z-index: 10;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 0, 128, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 140, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(64, 224, 208, 0.08) 0%, transparent 60%);
}

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

.token-card {
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    color: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.token-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.4);
}

.token-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.token-card h3 {
    font-family: 'Beach Day', 'Comic Sans MS', cursive, sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.token-card p {
    font-size: 16px;
    opacity: 0.9;
}

.contract-info {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contract-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.contract-address {
    font-size: 16px;
    font-family: monospace;
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 2px dashed #ff0080;
    margin-bottom: 20px;
    word-break: break-all;
}

.copy-btn {
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.4);
}

/* Trading/Chart Section */
.trading-section {
    padding: 100px 20px;
    background: #f5f5ff;
    position: relative;
    z-index: 10;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 0, 128, 0.03) 50px, rgba(255, 0, 128, 0.03) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(64, 224, 208, 0.03) 50px, rgba(64, 224, 208, 0.03) 100px);
}

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

.chart-container-full {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


/* Footer */
.footer {
    padding: 50px 20px;
    background: linear-gradient(135deg, #333, #444);
    color: white;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo {
    width: 80px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    transform: translateY(-5px);
}

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px) rotate(-5deg); }
    75% { transform: translateX(10px) rotate(5deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bounce { animation: bounce 2s infinite; }
.pulse-btn { animation: pulse 2s infinite; }
.shake { animation: shake 2s infinite; }
.spin { animation: spin 3s linear infinite; }
.float { animation: float 3s ease-in-out infinite; }
.wiggle { animation: wiggle 2s ease-in-out infinite; }
.spin-on-hover:hover { animation: spin 1s linear; }

/* Glitch Effect */
.glitch-text {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0080;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-5px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(5px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(3px); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(-3px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(3px); }
    40% { clip-path: inset(10% 0 70% 0); transform: translate(-3px); }
    60% { clip-path: inset(40% 0 40% 0); transform: translate(-5px); }
    80% { clip-path: inset(5% 0 85% 0); transform: translate(5px); }
}

/* Rainbow Text */
.rainbow-text {
    background: linear-gradient(90deg, 
        #ff0000, #ff8c00, #ffd700, #00ff00, 
        #00ffff, #0000ff, #ff00ff, #ff0000);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 3s linear infinite;
}

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

/* Scattered Section Memes */
.section-meme {
    position: absolute;
    opacity: 0.3;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.meme-left {
    animation: float-left 8s ease-in-out infinite;
}

.meme-right {
    animation: float-right 8s ease-in-out infinite;
}

@keyframes float-left {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(20px) translateY(-20px) rotate(10deg); }
    66% { transform: translateX(-10px) translateY(10px) rotate(-5deg); }
}

@keyframes float-right {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(-20px) translateY(-20px) rotate(-10deg); }
    66% { transform: translateX(10px) translateY(10px) rotate(5deg); }
}

/* Background Image Placeholders - Ready for when you add background files */
.hero-section.with-background {
    background-image: url('background1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-section.with-background {
    background-image: url('background2.png');
    background-size: cover;
    background-position: center;
}

.about-section.with-background {
    background-image: url('background3.png');
    background-size: cover;
    background-position: center;
}

/* Sneaky Troll Face */
.sneaky-troll-container {
    position: fixed;
    width: 300px;  /* 2x bigger */
    height: 300px; /* 2x bigger */
    z-index: 997;
    pointer-events: none;
    opacity: 0; /* Start hidden to prevent glitch */
}

.sneaky-troll {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    pointer-events: all;
}

/* Spawned Trolls from Clicking */
.spawned-troll-container {
    position: fixed;
    width: 200px;  /* Slightly smaller than main troll */
    height: 200px;
    z-index: 996;  /* Below main sneaky troll */
    pointer-events: none;
    opacity: 0; /* Start hidden */
}

.spawned-troll {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.3s;
}

.spawned-troll:hover {
    transform: scale(1.2) rotate(10deg);
}

/* Chaos Mode - Trolls spawn anywhere! */
@keyframes chaos-spawn {
    0% { 
        transform: scale(0) rotate(0deg); 
        opacity: 0;
    }
    10% { 
        transform: scale(1.5) rotate(180deg); 
        opacity: 1;
    }
    30% { 
        transform: scale(1) rotate(360deg); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.1) rotate(370deg); 
        opacity: 1;
    }
    70% { 
        transform: scale(0.95) rotate(350deg); 
        opacity: 1;
    }
    90% { 
        transform: scale(1) rotate(360deg); 
        opacity: 1;
    }
    100% { 
        transform: scale(0) rotate(720deg); 
        opacity: 0;
    }
}

.chaos-spawn {
    animation: chaos-spawn 2s ease-in-out forwards !important;
    opacity: 1 !important;
}

/* Keep chaos trolls visible initially */
.spawned-troll-container.chaos-mode {
    opacity: 0;
    transition: none;
}

/* Different peek animations for each edge - partial peek (40-50% visible) */
@keyframes peek-from-left {
    0% { transform: translateX(-100%); opacity: 1; }
    20% { transform: translateX(-60%) rotate(10deg); opacity: 1; }  /* 40% visible */
    40% { transform: translateX(-50%) rotate(-5deg); opacity: 1; }  /* 50% visible */
    60% { transform: translateX(-60%) rotate(5deg); opacity: 1; }   /* 40% visible */
    99% { transform: translateX(-100%); opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0; } /* Hide at end */
}

@keyframes peek-from-right {
    0% { transform: translateX(100%); opacity: 1; }
    20% { transform: translateX(60%) rotate(-10deg); opacity: 1; }  /* 40% visible */
    40% { transform: translateX(50%) rotate(5deg); opacity: 1; }    /* 50% visible */
    60% { transform: translateX(60%) rotate(-5deg); opacity: 1; }   /* 40% visible */
    99% { transform: translateX(100%); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; } /* Hide at end */
}

@keyframes peek-from-top {
    0% { transform: translateY(-100%); opacity: 1; }
    20% { transform: translateY(-60%) rotate(10deg); opacity: 1; }  /* 40% visible */
    40% { transform: translateY(-50%) rotate(-10deg); opacity: 1; } /* 50% visible */
    60% { transform: translateY(-60%) rotate(5deg); opacity: 1; }   /* 40% visible */
    99% { transform: translateY(-100%); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; } /* Hide at end */
}

@keyframes peek-from-bottom {
    0% { transform: translateY(100%); opacity: 1; }
    20% { transform: translateY(60%) rotate(-10deg); opacity: 1; }  /* 40% visible */
    40% { transform: translateY(50%) rotate(10deg); opacity: 1; }   /* 50% visible */
    60% { transform: translateY(60%) rotate(-5deg); opacity: 1; }   /* 40% visible */
    99% { transform: translateY(100%); opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; } /* Hide at end */
}

/* Position classes for each edge */
.peek-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    animation: peek-from-left 4s ease-in-out forwards;
    opacity: 1;
}

.peek-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    animation: peek-from-right 4s ease-in-out forwards;
    opacity: 1;
}

.peek-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    animation: peek-from-top 4s ease-in-out forwards;
    opacity: 1;
}

.peek-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    animation: peek-from-bottom 4s ease-in-out forwards;
    opacity: 1;
}

/* Dancing Troll (Fixed Position) */
.dancing-troll {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    z-index: 998;
    animation: dance 1s infinite alternate;
    cursor: pointer;
}

.dancing-troll:hover {
    animation: spin 0.5s linear infinite;
}

@keyframes dance {
    0% { transform: translateY(0) rotate(-10deg); }
    100% { transform: translateY(-20px) rotate(10deg); }
}

/* Floating Buy Button - Sketch Style */
.floating-buy-btn {
    position: fixed;
    bottom: 140px;
    right: 20px;
    background: white;
    color: #333;
    padding: 15px 25px;
    border: 4px solid #333;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 5px 5px 0 #333, 10px 10px 0 #666;
    z-index: 999;
    animation: wiggle 4s ease-in-out infinite;
    transition: all 0.3s;
}

.floating-buy-btn::before {
    content: '✏️';
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 24px;
    transform: rotate(45deg);
}

.floating-buy-btn:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 7px 7px 0 #333, 14px 14px 0 #666;
}

.buy-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

.buy-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Buy Containers */
.quick-buy-container {
    text-align: center;
    margin-bottom: 40px;
}

.buy-helper-text {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    font-weight: bold;
}

/* Larger Buy Button */
.large-btn {
    font-size: 24px !important;
    padding: 20px 50px !important;
    animation: pulse 1.5s infinite, gradient-shift 3s ease infinite !important;
    background-size: 200% 200% !important;
}

/* Make all buy buttons more prominent */
.primary-btn {
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title { font-size: 60px; }
    .section-title { font-size: 40px; }
    .nav-links { gap: 15px; }
    .nav-link { font-size: 14px; }
    .stats-container { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .about-grid { grid-template-columns: 1fr; }
    .tokenomics-container { grid-template-columns: 1fr; }
    .dancing-troll { width: 60px; }
    .floating-buy-btn {
        bottom: 100px;
        right: 10px;
        padding: 12px 20px;
        font-size: 16px;
    }
    .buy-icon { font-size: 20px; }
    .large-btn {
        font-size: 18px !important;
        padding: 15px 30px !important;
    }
}