/* Buy My Meme Coin - PowerPoint Aesthetic Styles */

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

body {
    font-family: Arial, Calibri, sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><text y="20">💰</text></svg>'), auto;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-emoji {
    font-size: 5rem;
    animation: loadingBounce 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes loadingBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}

.loading-text {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 10px;
}

.loading-subtext {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.2rem;
    color: #666666;
    font-style: italic;
    margin-bottom: 20px;
}

.loading-dots {
    font-size: 2rem;
    color: #9945FF;
    letter-spacing: 5px;
}

.loading-dots span {
    animation: loadingDot 1.4s ease-in-out infinite;
    display: inline-block;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

#clickSound {
    display: none;
}

/* Header Navigation */
.site-header {
    background-color: #FFFFFF;
    border-bottom: 3px solid #CCCCCC;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-logo {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.8rem;
    font-weight: bold;
    color: #9945FF;
}

.header-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.header-btn {
    padding: 10px 20px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #CCCCCC;
    background-color: #F5F5F5;
    color: #333333;
    font-weight: bold;
}

.scroll-btn {
    background-color: #9945FF;
    color: #FFFFFF;
    border-color: #9945FF;
}

.scroll-btn:hover {
    background-color: #7A35CC;
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 4px 10px rgba(153, 69, 255, 0.4);
}

.twitter-header-btn {
    background-color: #1DA1F2;
    color: #FFFFFF;
    border-color: #1DA1F2;
}

.twitter-header-btn:hover {
    background-color: #0d8bd9;
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 4px 10px rgba(29, 161, 242, 0.4);
}

/* Cursor trail effect */
body::after {
    content: '💰💸🚀✨';
    position: fixed;
    pointer-events: none;
    font-size: 2rem;
    z-index: 9999;
    opacity: 0;
    animation: cursorTrail 0.5s ease-out forwards;
}

@keyframes cursorTrail {
    0% {
        opacity: 0.8;
        transform: scale(0.5);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

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

/* Hero Section */
.hero {
    background-color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-emoji {
    flex: 0 0 auto;
}

.hero-emoji-img {
    width: 30rem;
    height: 30rem;
    object-fit: contain;
    animation: heroEmojiBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.8));
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-family: 'Comic Sans MS', cursive;
    font-size: 5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 10px;
}

.hero-tagline {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.disclaimer-text {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1rem;
    color: #FF6600;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #FFF5E6;
    border: 2px dashed #FFCC99;
    border-radius: 8px;
    display: inline-block;
    animation: disclaimerPulse 2s ease-in-out infinite;
}

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

.hero-description {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 40px;
    font-style: italic;
}

/* Buy Section */
.buy-section {
    margin-top: 40px;
    text-align: center;
}

.buy-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(153, 69, 255, 0.4);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.buy-btn:hover {
    transform: translateY(-3px) scale(1.1) rotate(2deg);
    box-shadow: 0 6px 25px rgba(153, 69, 255, 0.6);
    animation: buttonWiggle 0.3s ease-in-out infinite;
}

@keyframes buttonWiggle {
    0%, 100% { transform: translateY(-3px) scale(1.1) rotate(2deg); }
    50% { transform: translateY(-3px) scale(1.15) rotate(-2deg); }
}

.contract-address {
    margin: 20px 0;
    padding: 15px;
    background-color: #F5F5F5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contract-label {
    font-weight: bold;
    color: #333333;
}

.contract-code {
    font-family: 'Courier New', monospace;
    background-color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 4px;
    color: #333333;
    font-size: 0.9rem;
    border: 1px solid #DDD;
}

.copy-btn {
    padding: 8px 16px;
    background-color: #0066CC;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Comic Sans MS', cursive;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background-color: #0052A3;
}

.copy-btn:active {
    background-color: #003D7A;
}

.solana-note {
    color: #14F195;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: bold;
}

.solana-note strong {
    color: #9945FF;
}

/* Slides Section */
.slides-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.section-title {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: #333333;
    margin-bottom: 40px;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    background-color: #F5F5F5;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid #E0E0E0;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #FFFFFF;
    border: 2px solid #CCCCCC;
    border-radius: 8px;
}

/* Slide Styling - PowerPoint Presentation Style */
.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) rotate(5deg);
}

.slide.active {
    display: flex;
    opacity: 1;
    animation: slideTransition 1.2s ease-out forwards;
}

/* Ridiculous PowerPoint Transitions */
@keyframes slideTransition {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg) translateX(-100%);
        filter: blur(20px);
    }
    25% {
        transform: scale(1.2) rotate(90deg) translateX(20%);
        filter: blur(5px);
    }
    50% {
        transform: scale(0.9) rotate(-45deg) translateX(-10%);
        filter: blur(2px);
    }
    75% {
        transform: scale(1.1) rotate(10deg) translateX(5%);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateX(0);
        filter: blur(0);
    }
}

/* Explosion Effect Overlay */
.slide.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.8) 0%, rgba(255, 200, 0, 0.6) 30%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    animation: explosion 0.8s ease-out;
    pointer-events: none;
    z-index: 1000;
    border-radius: 50%;
}

@keyframes explosion {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Particle Effects */
.slide.active::after {
    content: '✨💥🎆💫⭐🔥';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 999;
    animation: particles 1s ease-out forwards;
    opacity: 0;
}

@keyframes particles {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(4) rotate(360deg);
    }
}

.slide-content {
    background-color: #FFFFFF;
    padding: 60px 50px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

.slide.active .slide-content {
    animation: slideInBounce 1s ease-out;
}

@keyframes slideInBounce {
    0% {
        transform: translateY(-100px) scale(0.5);
        opacity: 0;
    }
    60% {
        transform: translateY(20px) scale(1.1);
        opacity: 0.8;
    }
    80% {
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.slide-main-content {
    display: flex;
    width: 100%;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.slide-title {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

.slide-author {
    font-size: 1rem;
    color: #999999;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
    font-family: 'Comic Sans MS', cursive;
}

.slide-reasons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
    color: #333333;
    font-family: 'Comic Sans MS', cursive;
}

.slide-reasons p {
    font-size: 1.5rem;
    color: #333333;
    font-family: 'Comic Sans MS', cursive;
    line-height: 2;
    margin: 0;
    text-align: center;
}

.slide-emojis {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.emoji {
    width: 25rem;
    height: 25rem;
    object-fit: contain;
    display: inline-block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

/* Layout 1: Emoji Left, Text Right */
.slide-layout-1 .slide-main-content {
    flex-direction: row;
    align-items: center;
}

.slide-layout-1 .emoji-left {
    flex: 0 0 auto;
}

.slide-layout-1 .reasons-right {
    flex: 1;
    text-align: left;
}

.slide-layout-1 .reasons-right p {
    text-align: left;
}

/* Layout 2: Emoji Right, Text Left */
.slide-layout-2 .slide-main-content {
    flex-direction: row-reverse;
    align-items: center;
}

.slide-layout-2 .emoji-right {
    flex: 0 0 auto;
}

.slide-layout-2 .reasons-left {
    flex: 1;
    text-align: right;
}

.slide-layout-2 .reasons-left p {
    text-align: right;
}

/* Layout 3: Emoji Top, Text Below */
.slide-layout-3 {
    justify-content: flex-start;
    padding-top: 20px;
}

.slide-layout-3 .slide-title {
    margin-bottom: 10px;
    z-index: 10;
    position: relative;
}

.slide-layout-3 .slide-author {
    margin-bottom: 20px;
    z-index: 10;
    position: relative;
}

.slide-layout-3 .emoji-top {
    margin-top: 20px;
    margin-bottom: 30px;
    z-index: 5;
}

.slide-layout-3 .reasons-below {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    z-index: 10;
    position: relative;
}

/* Layout 4: Emoji Center, Text Around */
.slide-layout-4 .slide-main-content {
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-layout-4 .emoji-center {
    position: relative;
    z-index: 2;
}

.slide-layout-4 .reasons-around {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    z-index: 1;
}

.slide-layout-4 .text-top {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    align-self: start;
    margin-top: 20px;
}

.slide-layout-4 .text-right {
    grid-column: 2;
    grid-row: 1 / 3;
    text-align: right;
    align-self: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.slide-layout-4 .text-bottom {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
    align-self: end;
    margin-bottom: 20px;
}

.slide-layout-4 .text-left {
    grid-column: 1;
    grid-row: 1 / 3;
    text-align: left;
    align-self: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    justify-self: start;
}

/* Layout 5: Text Top, Emoji Bottom */
.slide-layout-5 {
    justify-content: space-between;
}

.slide-layout-5 .reasons-top {
    width: 100%;
    margin-bottom: 40px;
}

.slide-layout-5 .emoji-bottom {
    margin-top: auto;
}

/* Layout 6: Emoji Massive Center, Text Small Around */
.slide-layout-6 .slide-main-content {
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-layout-6 .emoji-massive .emoji {
    width: 35rem;
    height: 35rem;
}

.slide-layout-6 .reasons-small {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    pointer-events: none;
}

.slide-layout-6 .text-small {
    font-size: 1rem !important;
    opacity: 0.7;
    pointer-events: none;
}

.emoji:hover {
    transform: scale(1.2) rotate(5deg);
}

/* ===== SHITTY ANIMATIONS ===== */

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

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

@keyframes party {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-15deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1.2); }
    75% { transform: rotate(15deg) scale(1.1); }
}

.emoji-bounce {
    animation: bounce 2s ease-in-out infinite, screenShake 0.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.emoji-spin {
    animation: spin 3s linear infinite, megaZoom 2s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.9));
}

.emoji-zoom {
    animation: zoom 2s ease-in-out infinite, explosionPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 35px rgba(255, 100, 0, 0.8));
}

.emoji-pulse {
    animation: pulse 1.5s ease-in-out infinite, rotate360 4s linear infinite;
    filter: drop-shadow(0 0 25px rgba(255, 0, 255, 0.7));
}

.emoji-wiggle {
    animation: wiggle 0.5s ease-in-out infinite, bounce 1s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 255, 0, 0.8));
}

.emoji-party {
    animation: party 1s ease-in-out infinite, megaSpin 2s linear infinite;
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 1)) drop-shadow(0 0 30px rgba(255, 0, 0, 0.9));
}

/* Extra Ridiculous Animations */
@keyframes screenShake {
    0%, 100% { transform: translateX(0) translateY(0); }
    10% { transform: translateX(-10px) translateY(-5px) rotate(-2deg); }
    20% { transform: translateX(10px) translateY(5px) rotate(2deg); }
    30% { transform: translateX(-8px) translateY(8px) rotate(-1deg); }
    40% { transform: translateX(8px) translateY(-8px) rotate(1deg); }
    50% { transform: translateX(-5px) translateY(5px) rotate(-1deg); }
    60% { transform: translateX(5px) translateY(-5px) rotate(1deg); }
    70% { transform: translateX(-3px) translateY(3px); }
    80% { transform: translateX(3px) translateY(-3px); }
    90% { transform: translateX(-2px) translateY(2px); }
}

@keyframes megaZoom {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.5); }
    50% { transform: scale(0.8); }
    75% { transform: scale(1.3); }
}

@keyframes explosionPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 100, 0, 0.8));
    }
    50% { 
        transform: scale(1.4);
        filter: drop-shadow(0 0 60px rgba(255, 0, 0, 1)) drop-shadow(0 0 40px rgba(255, 200, 0, 0.9));
    }
}

@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes megaSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.3); }
    50% { transform: rotate(180deg) scale(0.9); }
    75% { transform: rotate(270deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Text Animations */
@keyframes textWiggle {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    25% { transform: rotate(-1deg) translateX(-1px); }
    75% { transform: rotate(1deg) translateX(1px); }
}

@keyframes textSlideLeft {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

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

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

@keyframes textShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

@keyframes textFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Slide 1: Subtle wiggle + glow */
.text-wiggle {
    animation: textWiggle 2s ease-in-out infinite, textGlow 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.15s);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 100, 0, 0.6);
}

/* Slide 2: Slide in + gentle bounce */
.text-slide-left {
    animation: textSlideLeft 1s ease-out, textBounce 2s ease-in-out infinite;
    animation-fill-mode: both;
    animation-delay: calc(var(--i, 0) * 0.2s);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.9), 0 0 25px rgba(0, 200, 255, 0.7);
}

/* Slide 3: Gentle bounce only (no shake) */
.text-bounce {
    animation: textBounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
    text-shadow: 0 0 12px rgba(255, 0, 255, 0.8), 0 0 22px rgba(200, 0, 255, 0.6);
}

/* Slide 4: Rotate + pulse */
.text-rotate {
    animation: textRotate 3s ease-in-out infinite, textPulse 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.25s);
    text-shadow: 0 0 18px rgba(0, 255, 0, 0.9), 0 0 28px rgba(100, 255, 100, 0.7);
}

/* Slide 5: Minimal shake + glow */
.text-shake {
    animation: textShake 1s ease-in-out infinite, textGlow 2.5s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.15s);
    text-shadow: 0 0 14px rgba(255, 100, 0, 0.8), 0 0 24px rgba(255, 150, 0, 0.6);
}

/* Slide 6: Fade + gentle rotate */
.text-fade {
    animation: textFade 3s ease-in-out infinite, textRotate 4s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
    text-shadow: 0 0 16px rgba(255, 215, 0, 0.8), 0 0 26px rgba(255, 200, 100, 0.6);
}

/* Extra Text Effects */
@keyframes textGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 100, 0, 0.6);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 50px rgba(255, 100, 0, 0.9), 0 0 70px rgba(255, 0, 0, 0.7);
        filter: brightness(1.5);
    }
}

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

/* Footer */
footer {
    background-color: #F5F5F5;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #CCCCCC;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.twitter-link {
    color: #0066CC;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.twitter-link:hover {
    color: #0052A3;
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
    font-family: 'Comic Sans MS', cursive;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #666666;
    font-family: 'Comic Sans MS', cursive;
}

.footer-warning {
    font-size: 0.85rem;
    color: #FF6600;
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive;
    margin-top: 10px;
    padding: 10px;
    background-color: #FFF5E6;
    border: 2px solid #FFCC99;
    border-radius: 8px;
}

.floating-emojis {
    font-size: 1.5rem;
    margin-top: 15px;
    animation: floatEmojis 3s ease-in-out infinite;
    letter-spacing: 5px;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #9945FF;
    color: #FFFFFF;
    border: 3px solid #7A35CC;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Comic Sans MS', cursive;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(153, 69, 255, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    background-color: #7A35CC;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(153, 69, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-nav {
        flex-direction: column;
        text-align: center;
    }

    .header-buttons {
        justify-content: center;
        width: 100%;
    }

    .header-btn {
        flex: 1;
        min-width: 150px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-emoji-img {
        width: 20rem;
        height: 20rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .slideshow-container {
        max-width: 100%;
        padding: 15px;
    }

    .slides-wrapper {
        height: 600px;
    }

    .slide-content {
        padding: 50px 30px;
    }

    .slide-reasons {
        min-height: 250px;
        gap: 16px;
    }

    .slide-reasons p {
        font-size: 1.2rem;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .emoji {
        width: 18rem;
        height: 18rem;
    }

    .slide-layout-6 .emoji-massive .emoji {
        width: 25rem;
        height: 25rem;
    }

    .slide-main-content {
        flex-direction: column !important;
        gap: 20px;
    }

    .slide-layout-1 .reasons-right,
    .slide-layout-2 .reasons-left {
        text-align: center !important;
    }

    .slide-layout-1 .reasons-right p,
    .slide-layout-2 .reasons-left p {
        text-align: center !important;
    }

    .slide-layout-4 .reasons-around {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .slide-layout-4 .text-right,
    .slide-layout-4 .text-left {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }

    .contract-address {
        flex-direction: column;
        align-items: stretch;
    }

    .contract-code {
        text-align: center;
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .hero-emoji-img {
        width: 18rem;
        height: 18rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .buy-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .emoji {
        width: 15rem;
        height: 15rem;
    }

    .slide-layout-6 .emoji-massive .emoji {
        width: 20rem;
        height: 20rem;
    }
}

/* Microsoft Emoji Integration */
/* Note: Replace emoji spans with actual Microsoft emoji images */
/* Example: <img src="assets/emojis/thumbs-up.png" alt="👍" class="emoji-img"> */

.emoji-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Slideshow Controls */
.slideshow-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.slide-counter {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.2rem;
    color: #666666;
    font-style: italic;
    padding: 8px 15px;
    background-color: #F0F0F0;
    border-radius: 8px;
    border: 2px dashed #CCCCCC;
}

#currentSlideNum {
    font-weight: bold;
    color: #9945FF;
    font-size: 1.4rem;
}

.play-pause-btn {
    background-color: #0066CC;
    color: #FFFFFF;
    border: 3px solid #0052A3;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Comic Sans MS', cursive;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.play-pause-btn:hover {
    background-color: #0052A3;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.play-pause-btn:active {
    transform: scale(0.95);
}

.play-pause-btn .play-icon,
.play-pause-btn .pause-icon {
    font-size: 1.8rem;
    line-height: 1;
}

#slideshowAudio {
    display: none;
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #CCCCCC;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background-color: #999999;
    transform: scale(1.2);
}

.indicator.active {
    background-color: #9945FF;
    width: 35px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(153, 69, 255, 0.4);
}

/* Print Styles (PowerPoint-like) */
@media print {
    .buy-section,
    footer,
    .slide-indicators {
        display: none;
    }

    .slide {
        display: block !important;
        page-break-after: always;
    }
}
