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

body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Arial Rounded MT Bold', cursive, sans-serif;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 25%, #fab1a0 50%, #ff7675 75%, #fd79a8 100%);
    background-attachment: fixed;
    color: #2d3436;
    overflow-x: hidden;
    position: relative;
}

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

/* Animated Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.floating-element.flower:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.floating-element.flower:nth-child(2) { left: 80%; top: 40%; animation-delay: 1s; }
.floating-element.flower:nth-child(3) { left: 15%; top: 70%; animation-delay: 2s; }
.floating-element.flower:nth-child(4) { left: 70%; top: 80%; animation-delay: 3s; }
.floating-element.paw:nth-child(5) { left: 50%; top: 15%; animation-delay: 0.5s; }
.floating-element.paw:nth-child(6) { left: 30%; top: 50%; animation-delay: 1.5s; }
.floating-element.paw:nth-child(7) { left: 85%; top: 65%; animation-delay: 2.5s; }
.floating-element.flower:nth-child(8) { left: 40%; top: 85%; animation-delay: 1.2s; }
.floating-element.flower:nth-child(9) { left: 90%; top: 25%; animation-delay: 2.8s; }
.floating-element.paw:nth-child(10) { left: 60%; top: 55%; animation-delay: 3.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b9d, #feca57, #48dbfb, #ff9ff3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #ff6b9d;
    transform: translateY(-2px);
}

.btn-nav {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-nav:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: bounce-in 1s ease;
}

.woof {
    display: block;
    background: linear-gradient(45deg, #ff6b9d, #feca57, #48dbfb, #ff9ff3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
    position: relative;
}

.woof::before {
    content: 'Wooflower';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-text-stroke: 3px white;
    -webkit-text-fill-color: transparent;
}

.emoji-bounce {
    display: inline-block;
    font-size: 4rem;
    animation: bounce 2s ease infinite;
}

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

@keyframes bounce-in {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

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

.tagline {
    font-size: 1.4rem;
    color: #2d3436;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #00b894, #55efc4);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.5);
}

.ticker {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ticker-label {
    font-weight: bold;
    color: #ff6b9d;
    font-size: 1.2rem;
}

.ticker-separator {
    color: #dfe6e9;
}

.ticker-text {
    color: #636e72;
    font-size: 0.95rem;
}

.contract-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.contract-label {
    font-weight: bold;
    color: #6c5ce7;
    font-size: 1rem;
}

.contract-text {
    color: #636e72;
    font-size: 0.95rem;
    font-style: italic;
}

.copy-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    transition: all 0.3s;
    border-radius: 8px;
}

.copy-btn:hover {
    background: rgba(108, 92, 231, 0.1);
    transform: scale(1.2);
}

.copy-btn:active {
    transform: scale(0.9);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.4), transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.main-dog {
    max-width: 500px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: wiggle 3s ease infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

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

/* Sections */
section {
    position: relative;
    padding: 5rem 0;
    z-index: 1;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b9d, #6c5ce7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* About Section */
.about {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.about-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    color: #2d3436;
    font-weight: 600;
}

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

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

.about-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffeaa7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.about-card p {
    color: #636e72;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Tokenomics Section */
.tokenomics {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

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

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

.token-card:hover {
    transform: translateY(-10px) scale(1.05);
}

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

.token-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.token-card p {
    color: #636e72;
    font-size: 1rem;
}

.tokenomics-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
}

.flower-center {
    position: relative;
    width: 400px;
    height: 400px;
}

.flower-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.petal {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.petal-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.petal-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #55efc4, #00b894);
}

.petal-3 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #fdcb6e, #e17055);
}

.petal-4 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff7675, #d63031);
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #feca57, #ff6b9d, #6c5ce7, #00b894);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.roadmap-marker {
    font-size: 3rem;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.roadmap-content {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    flex: 1;
    margin: 0 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.roadmap-content:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.roadmap-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.roadmap-content ul {
    list-style: none;
    padding: 0;
}

.roadmap-content li {
    padding: 0.5rem 0;
    color: #636e72;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.roadmap-content li::before {
    content: '🌸';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

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

.photo-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    position: relative;
}

.photo-card:hover {
    transform: translateY(-15px) rotate(3deg) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.photo-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: all 0.4s;
}

.photo-card:hover img {
    transform: scale(1.1);
}

/* Community Section */
.community {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

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

.social-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.social-card.twitter:hover {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.social-card.telegram:hover {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.social-card.discord:hover {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    color: white;
}

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

.social-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.social-card:hover h3,
.social-card:hover p {
    color: white;
}

.social-card p {
    color: #636e72;
    font-size: 1.1rem;
}

.meme-gallery {
    margin-top: 5rem;
}

.gallery-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #2d3436;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

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

.meme-placeholder {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 3px dashed #dfe6e9;
    transition: all 0.3s;
    cursor: pointer;
}

.meme-placeholder:hover {
    border-color: #ff6b9d;
    transform: scale(1.05);
}

.meme-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.meme-placeholder p {
    color: #636e72;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(45, 52, 54, 0.95);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #b2bec3;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #ff6b9d;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #b2bec3;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

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

    .roadmap-timeline::before {
        left: 40px;
    }

    .roadmap-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 100px;
    }

    .roadmap-marker {
        position: absolute;
        left: 0;
    }

    .roadmap-content {
        margin: 0;
        margin-top: 1rem;
    }

    .flower-center {
        width: 300px;
        height: 300px;
    }

    .petal {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }
}