/* Google Fonts Import with fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Local font face declaration */
@font-face {
    font-family: 'Fat Kitty Kat';
    src: url('./fonts/DK Fat Kitty Kat.otf') format('opentype');
    font-display: swap;
}

/* Ensure consistent font loading across all devices */
:root {
    --primary-font: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Price & Contract Info Styles */
.price-info {
    padding: 60px 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.current-price, .contract-address {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.current-price:hover, .contract-address:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.current-price h3, .contract-address h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price-change {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-change.negative {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.price-note, .ca-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 10px;
}

.ca-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

#contractAddress {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    text-align: center;
}

#contractAddress:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.copy-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

@media (max-width: 768px) {
    .price-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ca-container {
        flex-direction: column;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
}

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

body {
    font-family: var(--primary-font);
    line-height: 1.6;
    color: #ffffff;
    background: #a839c0;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

.logo {
    background: linear-gradient(135deg, #a839c0 0%, #c44dd6 50%, #9333ea 100%);
    padding: 8px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: logoShimmer 3s ease-in-out infinite;
}

.logo:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

@keyframes logoShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.logo h1 {
    font-family: 'Bonfire', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

.nav-links a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}



.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Bonfire', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button styles moved to Visual Polish section below */

/* Fluff Dog Interactive Mascot */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fluff-dog {
    position: relative;
    cursor: pointer;
    transition: transform 0.1s ease;
    animation: float 3s ease-in-out infinite;
    margin-top: 50px;
}

.fluff-dog .mascot-image {
    width: 350px;
    height: 350px;
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)) brightness(1.1);
    transition: all 0.1s ease;
}

.fluff-dog:active .mascot-image {
    transform: scale(0.95) rotate(-2deg);
}

/* Dog Expression Elements */
.dog-expressions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.expression-bubble {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    pointer-events: none;
    white-space: nowrap;
}

.expression-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.95);
}

.expression-bubble.show {
    opacity: 1;
    transform: scale(1);
}

.click-me-button {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: pulseButton 2s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.click-me-button:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

@keyframes pulseButton {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    }
}

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

.pet-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.3);
}

.pet-counter.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Enhanced Dog States */
.fluff-dog.happy .mascot-image {
    animation: bounce 0.6s ease-in-out;
    filter: drop-shadow(0 15px 30px rgba(139, 92, 246, 0.6)) brightness(1.1) hue-rotate(10deg);
}

.fluff-dog.excited .mascot-image {
    animation: wiggle 0.5s ease-in-out;
    filter: drop-shadow(0 20px 40px rgba(236, 72, 153, 0.6)) brightness(1.1) saturate(1.2);
}

.fluff-dog.sleepy .mascot-image {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2)) brightness(1.1);
    animation: slowFloat 4s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1.05);
    }
    40% {
        transform: translateY(-20px) scale(1.1);
    }
    60% {
        transform: translateY(-10px) scale(1.08);
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg) scale(1.05); }
    25% { transform: rotate(-5deg) scale(1.08); }
    75% { transform: rotate(5deg) scale(1.08); }
}

@keyframes slowFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.about {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
    padding: 120px 0 80px 0;
}

.about h2,
.tokenomics h2,
.roadmap h2,
.community h2 {
    font-family: 'Bonfire', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

/* Launch Status */
.launch-status {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.launch-status h3 {
    font-family: 'Bonfire', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.launch-status p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.progress-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.goal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.goal-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.goal-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

@media (max-width: 768px) {
    .progress-info {
        gap: 2rem;
    }
    
    .launch-status {
        padding: 1.5rem;
    }
    
    .launch-status h3 {
        font-size: 1.5rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    overflow: hidden;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    height: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-track {
    display: flex;
    width: calc(200% + 40px);
    animation: scroll-gallery 30s linear infinite;
    height: 100%;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

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

/* Mobile responsiveness for gallery */
@media (max-width: 768px) {
    .gallery-container {
        height: 200px;
    }
    
    .gallery-image {
        width: 200px;
        height: 200px;
        margin-right: 15px;
    }
    
    .gallery-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        height: 150px;
    }
    
    .gallery-image {
        width: 150px;
        height: 150px;
        margin-right: 10px;
    }
    
    .gallery-track {
        animation-duration: 20s;
    }
}

/* Tokenomics */
.tokenomics {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    padding: 4rem 0;
}

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

.tokenomics-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
}

.tokenomics-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tokenomics-item h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.tokenomics-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.security-note {
    background: rgba(162, 210, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(162, 210, 255, 0.3);
}

.security-note p {
    color: white;
    font-size: 1.1rem;
}

/* Roadmap */
.roadmap {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    padding: 4rem 0;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.roadmap-phase {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease;
}

.roadmap-phase:hover {
    transform: translateY(-5px);
}

.roadmap-phase.completed {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    color: white;
    border: 3px solid #8b5cf6;
}

.roadmap-phase.completed h3,
.roadmap-phase.completed h4 {
    color: white;
}

.roadmap-phase.completed p {
    color: rgba(255, 255, 255, 0.9);
}

.roadmap-phase.current {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: pulse 2s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
    color: white;
    border: 3px solid #8b5cf6;
}

.roadmap-phase.current h3,
.roadmap-phase.current h4 {
    color: white;
}

.roadmap-phase.current p {
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    }
}

.phase-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.roadmap-phase h3 {
    font-family: 'Bonfire', cursive;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.roadmap-phase h4 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.roadmap-phase p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Animated Cartoon Roadmap */
.cartoon-timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartoon-timeline + .cartoon-timeline {
    margin-top: 40px;
    padding-top: 20px;
}

.cartoon-timeline::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 4px;
    background: linear-gradient(to right, #8b5cf6, #ec4899, #22c55e, #f59e0b, #ef4444);
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    z-index: 1;
}

.cartoon-milestone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex: 1;
}

.milestone-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cartoon-milestone.first-milestone .milestone-dot {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
    animation: pulse-dot 2s ease-in-out infinite;
}

.cartoon-milestone.future .milestone-dot {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    box-shadow: 0 0 15px rgba(107, 114, 128, 0.4);
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 35px rgba(139, 92, 246, 1);
    }
}

.milestone-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(162, 210, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 180px;
    text-align: center;
    transition: all 0.3s ease;
}

.milestone-content:hover {
    transform: translateY(-5px);
    border-color: rgba(162, 210, 255, 0.6);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

.cartoon-milestone.first-milestone .milestone-content {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border: 2px solid #8b5cf6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.cartoon-milestone.future .milestone-content {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 2px solid rgba(34, 197, 94, 0.5);
}

.milestone-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
}

.cartoon-milestone h3 {
    font-family: 'Bonfire', cursive;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.cartoon-milestone p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.milestone-status {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cartoon-milestone.future .milestone-status {
    background: linear-gradient(135deg, #22c55e, #3b82f6);
}

.cartoon-note {
    background: rgba(162, 210, 255, 0.1);
    border: 2px solid rgba(162, 210, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.cartoon-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* Fluff Index */
.fluff-index {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    padding: 4rem 0;
    text-align: center;
}

.fluff-index h2 {
    font-family: 'Bonfire', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.fluff-index > .container > p {
    font-size: 1.1rem;
    color: white;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.fluff-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.metric-card {
    background: linear-gradient(135deg, #f7f5f3 0%, #e8f4f8 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metric-card h3 {
    font-family: 'Bonfire', cursive;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 10px;
    transition: width 2s ease;
    animation: fillAnimation 2s ease-in-out;
}

@keyframes fillAnimation {
    0% {
        width: 0%;
    }
}

.metric-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.fluff-index-summary {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    color: white;
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.3);
}

.index-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.score-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-value {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.score-status {
    font-size: 1.3rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.index-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.index-note {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.index-note p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.index-note ul {
    margin: 0;
    padding-left: 1.2rem;
    list-style: none;
}

.index-note li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
}

.index-note li:before {
    content: '•';
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: -1rem;
}

.fluff-timestamp {
    margin-top: 15px;
    text-align: center;
    opacity: 0.8;
    font-style: italic;
}

.fluff-timestamp small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
}



@media (max-width: 768px) {
    .fluff-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .fluff-index-summary {
        padding: 2rem 1.5rem;
    }
    
    .score-value {
        font-size: 3rem;
    }
    
    .score-status {
        font-size: 1.1rem;
    }
    

     
     .contract-address code {
         max-width: 100%;
         font-size: 0.8em;
         padding: 8px 12px;
     }
     

}

/* Security Features Styles - REMOVED */

/* Community */
.community {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    padding: 4rem 0;
    text-align: center;
}

.community p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Trading Section */
.trading-section {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.trading-section h3 {
    font-family: 'Bonfire', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    text-align: center;
}

.trading-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.moonshot-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    border: 2px solid transparent;
}

.moonshot-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
}

.moonshot-btn:active {
    transform: translateY(-1px);
}

.moonshot-icon {
    font-size: 1.3rem;
}

.external-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: #8b5cf6;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon.telegram:hover {
    background: #0088cc;
    color: white;
}

.social-icon.twitter:hover {
    background: #1da1f2;
    color: white;
}



/* Footer */
.footer {
    background: rgba(168, 57, 192, 0.9);
    backdrop-filter: blur(15px);
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 20px rgba(139, 92, 246, 0.3);
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Ensure consistent fonts on mobile */
    body {
        font-family: 'Quicksand', sans-serif;
    }
    
    .logo {
        padding: 6px 16px;
    }
    
    .logo h1 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.8rem;
        letter-spacing: 0.5px;
        font-weight: 700;
    }
    
    .nav {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-family: 'Quicksand', sans-serif;
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    /* Improve button touch targets for mobile */
    .btn {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 1rem;
        font-family: 'Quicksand', sans-serif;
        font-weight: 600;
    }
    
    .fluff-dog .mascot-image {
        width: 200px;
        height: 200px;
    }

    .fluff-dog {
        margin-top: 20px;
    }
    
    .about {
        padding: 80px 15px 60px 15px;
    }
    
    .about h2 {
        font-family: 'Quicksand', sans-serif;
        font-size: 2rem;
    }
    
    .tokenomics {
        padding: 60px 15px;
    }
    
    .tokenomics h2 {
        font-family: 'Quicksand', sans-serif;
        font-size: 2rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tokenomics-item h3 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.3rem;
    }
    
    .roadmap {
        padding: 60px 15px;
    }
    
    .roadmap h2 {
        font-family: 'Quicksand', sans-serif;
        font-size: 2rem;
    }
    
    .roadmap-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cartoon-timeline {
        flex-direction: column;
        max-width: 100%;
        padding: 20px 0;
        align-items: stretch;
    }
    
    .cartoon-timeline::before {
        left: 30px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
        background: linear-gradient(to bottom, #8b5cf6, #ec4899, #10b981, #f59e0b, #ef4444);
        transform: none;
    }
    
    .cartoon-milestone {
        flex-direction: row;
        align-items: center;
        margin: 30px 0;
        flex: none;
    }
    
    .milestone-dot {
        position: absolute;
        left: 30px;
        transform: translateX(-50%);
        width: 20px;
        height: 20px;
        margin-bottom: 0;
    }
    
    .milestone-content {
        margin-left: 60px;
        max-width: calc(100% - 80px);
        text-align: left;
        padding: 15px;
    }
    
    .milestone-content h3 {
        font-size: 1em;
    }
    
    .milestone-content p {
        font-size: 0.85em;
    }
    
    .milestone-status {
        font-size: 0.7em;
        padding: 3px 8px;
    }
    
    .cartoon-milestone h3 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.2rem;
    }
    
    .cartoon-milestone h4 {
        font-size: 1rem;
    }
    
    .trading-section {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .trading-section h3 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.6rem;
    }
    
    .roadmap-phase h3 {
        font-family: 'Quicksand', sans-serif;
    }
    
    .fluff-index h2 {
        font-family: 'Quicksand', sans-serif;
    }
    
    .launch-status h3 {
        font-family: 'Quicksand', sans-serif;
    }
    
    .metric-card h3 {
        font-family: 'Quicksand', sans-serif;
    }
    
    .metric-card h3 {
        font-family: 'Quicksand', sans-serif;
    }
    
    .launch-status h3 {
        font-family: 'Quicksand', sans-serif;
    }

    .moonshot-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        gap: 12px;
        min-height: 48px;
        font-family: 'Quicksand', sans-serif;
        font-weight: 600;
    }
    
    .social-icons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-icon {
        min-height: 48px;
        padding: 12px 24px;
        font-family: 'Quicksand', sans-serif;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    /* Ensure fonts are consistent on small mobile devices */
    body {
        font-family: 'Quicksand', sans-serif;
        font-size: 14px;
    }
    
    .nav {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-family: 'Quicksand', sans-serif;
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-family: 'Quicksand', sans-serif;
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        font-family: 'Quicksand', sans-serif;
        font-weight: 600;
        min-height: 44px;
    }
    
    .fluff-dog {
        transform: scale(0.6);
    }
    
    /* Ensure all headings use consistent fonts */
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Quicksand', sans-serif;
    }
    
    .logo h1 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
    }
    
    /* Calculator section mobile fonts */
    .calculator-section h2 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.8rem;
    }
    
    /* Community section mobile fonts */
    .community h2 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.8rem;
    }
    
    .roadmap-phase h3 {
        font-family: 'Quicksand', sans-serif;
    }
    
    .fluff-index h2 {
        font-family: 'Quicksand', sans-serif;
    }
    
    /* Price info mobile fonts */
    .price-info h3 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.2rem;
    }
}

/* Floating Fluff Particles */
.fluff-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.fluff-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(236, 72, 153, 0.4) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp linear infinite;
}

.fluff-particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) translateX(var(--drift, 0px)) rotate(180deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(var(--drift, 0px)) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

/* Visual Polish - Pulsing Glows and Enhanced Animations */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: pulseGlow 3s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
}

.btn-secondary {
    background: white;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    color: white;
    transform: translateY(-3px) scale(1.05);
    border-color: #8b5cf6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Pulsing Glow Animation */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.1);
    }
    50% {
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.3);
    }
}

/* Enhanced Card Animations */
.metric-card, .tokenomics-item, .roadmap-item {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.metric-card::before, .tokenomics-item::before, .roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.metric-card:hover::before, .tokenomics-item:hover::before, .roadmap-item:hover::before {
    opacity: 1;
}

.metric-card:hover, .tokenomics-item:hover, .roadmap-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2), 0 0 20px rgba(139, 92, 246, 0.1);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Enhanced Section Transitions */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b5cf6, #ec4899, transparent);
    animation: sectionGlow 4s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.fluff-dog {
    animation: float 3s ease-in-out infinite;
}

/* ===== FLUFF CALCULATOR STYLES ===== */
.calculator-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #a839c0 0%, #c44dd6 25%, #9333ea 50%, #c44dd6 75%, #a839c0 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.calculator-input {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.calculator-input h3 {
    font-family: 'Bonfire', cursive;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.calculate-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.calculator-results {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.calculator-results h3 {
    font-family: 'Bonfire', cursive;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.result-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.result-card.highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 50%, rgba(139, 92, 246, 0.2) 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.result-icon {
    font-size: 2rem;
    margin-right: 1rem;
    min-width: 50px;
    text-align: center;
}

.result-content {
    flex: 1;
}

.result-label {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.result-value {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.result-percentage {
    color: #10b981;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.fluff-meter {
    margin: 2rem 0;
    text-align: center;
}

.meter-label {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.meter-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    height: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    border-radius: 25px;
    width: 0%;
    transition: width 1s ease-out;
    position: relative;
}

.meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

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

.meter-text {
    color: #fbbf24;
    font-weight: 600;
    font-size: 1.1rem;
}

.disclaimer {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 2rem;
}

.disclaimer p {
    color: #fca5a5;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .calculator-input,
    .calculator-results {
        padding: 20px 15px;
    }
    
    .calculator-input h3,
    .calculator-results h3 {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.4rem;
    }
    
    .calculator-input label {
        font-family: 'Quicksand', sans-serif;
        font-weight: 600;
    }
    
    .calculator-input input {
        font-family: 'Quicksand', sans-serif;
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .result-card {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .result-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .result-label {
        font-family: 'Quicksand', sans-serif;
        font-size: 0.85rem;
    }
    
    .result-value {
        font-family: 'Quicksand', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
    }
    
    .result-percentage {
        font-family: 'Quicksand', sans-serif;
        font-weight: 600;
    }
    
    .meter-label {
        font-family: 'Quicksand', sans-serif;
        font-size: 1rem;
    }
    
    .meter-text {
        font-family: 'Quicksand', sans-serif;
        font-weight: 600;
    }
 }

.result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
}

.result.show {
    display: block;
    animation: slideIn 0.5s ease;
}

.result h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

/* ===== GAMES SECTION STYLES ===== */