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

body {
    font-family: 'Baloo 2', cursive;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a0033 0%, #330066 25%, #4d0080 50%, #660099 75%, #8000cc 100%);
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 18px; /* Increased from default 16px */
}

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

.floating-coin {
    position: absolute;
    font-size: 2rem;
    color: #ffd700;
    font-weight: bold;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.coin-1 { top: 10%; left: 10%; animation-delay: 0s; }
.coin-2 { top: 20%; right: 15%; animation-delay: 1s; }
.coin-3 { top: 60%; left: 20%; animation-delay: 2s; }
.coin-4 { top: 80%; right: 25%; animation-delay: 3s; }
.coin-5 { top: 40%; left: 80%; animation-delay: 4s; }
.coin-6 { top: 70%; right: 10%; animation-delay: 5s; }

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo .logo-text {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem; /* Increased from default */
}

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

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

.hero-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.mad-text {
    color: #ffd700;
    text-shadow: 0 0 30px #ffd700;
    display: block;
    font-size: 5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px #ffd700; }
    to { text-shadow: 0 0 50px #ffd700, 0 0 60px #ffd700; }
}

.subtitle {
    color: #ff6b9d;
    font-size: 2.5rem;
    display: block;
}

.hero-description {
    font-size: 1.4rem; /* Increased from 1.2rem */
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.8;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 1.2rem; /* Increased from 1.1rem */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a0033;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b9d;
}

.btn-secondary:hover {
    background: #ff6b9d;
    transform: translateY(-3px);
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: bounce 3s ease-in-out infinite;
}

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

/* Contract Address Section */
.contract-section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.contract-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contract-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.contract-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contract-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin: 0;
}

.contract-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contract-status {
    text-align: center;
}

.status-text {
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem; /* Increased from 1.1rem */
    font-weight: 600;
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 157, 0.3);
    display: inline-block;
}

.contract-address-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contract-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem; /* Increased from 1rem */
    font-weight: 500;
    padding: 0.5rem;
    outline: none;
    text-align: center;
    cursor: default;
}

.contract-input::selection {
    background: rgba(255, 215, 0, 0.3);
}

.copy-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a0033;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 1.1rem; /* Increased from 1rem */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    min-width: 100px;
    justify-content: center;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

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

.copy-btn.copied {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #ffffff;
}

.copy-btn.copied .copy-text {
    display: none;
}

.copy-btn.copied::after {
    content: "Copied!";
}

.copy-icon {
    font-size: 1.1rem;
}

.copy-btn.copied .copy-icon {
    display: none;
}

.copy-btn.copied::before {
    content: "✓";
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.section-subtitle {
    font-size: 1.5rem;
    color: #ff6b9d;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-description {
    font-size: 1.3rem; /* Increased from 1.1rem */
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

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

.feature-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.1rem; /* Increased from default */
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.total-supply {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    max-width: 400px;
    margin: 2rem auto 0;
}

.supply-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.supply-amount {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2.5rem;
    color: #ff6b9d;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    margin: 0;
}

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

.tokenomics-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff6b9d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.tokenomics-card:hover::before {
    opacity: 1;
}

.tokenomics-card.liquidity {
    border-color: rgba(0, 191, 255, 0.3);
}

.tokenomics-card.liquidity:hover {
    border-color: #00bfff;
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

.tokenomics-card.community {
    border-color: rgba(255, 107, 157, 0.3);
}

.tokenomics-card.community:hover {
    border-color: #ff6b9d;
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.tokenomics-card.marketing {
    border-color: rgba(255, 165, 0, 0.3);
}

.tokenomics-card.marketing:hover {
    border-color: #ffa500;
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}

.tokenomics-card.dev {
    border-color: rgba(138, 43, 226, 0.3);
}

.tokenomics-card.dev:hover {
    border-color: #8a2be2;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.card-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #ffd700;
    margin: 0;
}

.tokenomics-list {
    list-style: none;
    padding: 0;
}

.tokenomics-list li {
    padding: 0.75rem 0;
    color: #e0e0e0;
    font-size: 1.1rem; /* Increased from 1rem */
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.tokenomics-list li::before {
    content: '•';
    color: #ffd700;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.key-highlights {
    margin-top: 4rem;
    text-align: center;
}

.highlights-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text {
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    font-size: 1.1rem; /* Added explicit font size */
}

/* Roadmap Section */
.roadmap-section {
    padding: 6rem 0;
}

.roadmap-timeline {
    display: grid;
    gap: 3rem;
}

.phase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.phase-card.completed {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a0033;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    font-weight: bold;
}

.phase-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.phase-status {
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-list {
    list-style: none;
}

.phase-list li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.1rem; /* Increased from default */
}

.phase-list li.completed {
    color: #00ff88;
}

/* Community Section */
.community-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.community-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    color: #ffd700;
}

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

.community-link span {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem; /* Increased from 1.2rem */
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.footer-logo .logo-text {
    font-family: 'Luckiest Guy', cursive;
    font-size: 2rem;
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700;
}

.footer-text {
    margin: 1rem 0;
    color: #e0e0e0;
    font-size: 1.1rem; /* Increased from default */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a9c7e;
}

.linke {
    color: rgb(255, 255, 255);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 0, 51, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .mad-text {
        font-size: 4rem;
    }

    .subtitle {
        font-size: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .phase-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .community-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Contract Section Mobile */
    .contract-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }

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

    .contract-address-container {
        flex-direction: column;
        gap: 1rem;
    }

    .contract-input {
        text-align: center;
        font-size: 0.9rem;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    /* Tokenomics Section Mobile */
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tokenomics-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .supply-amount {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .mad-text {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .community-links {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.feature-card,
.phase-card,
.community-link {
    animation: fadeInUp 0.8s ease-out;
}

