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

:root {
    --yellow: #FFD700;
    --bright-yellow: #FFED4E;
    --dark-yellow: #FFA500;
    --red: #FF0055;
    --dark-red: #CC0044;
    --blue: #00D4FF;
    --purple: #9D00FF;
    --black: #000000;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bright-yellow);
    color: var(--black);
    overflow-x: hidden;
}

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

/* Ticker Tape */
.ticker-tape {
    background: var(--red);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 4px solid var(--black);
    border-bottom: 4px solid var(--black);
}

.ticker-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 2px;
}

.ticker-content span {
    display: inline-block;
    padding-right: 100px;
}

.ticker-reverse .ticker-content {
    animation: scroll-reverse 30s linear infinite;
}

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

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

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🚀';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    top: 50px;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '💎';
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    bottom: 50px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mega-title {
    font-family: 'Bangers', cursive;
    font-size: 5rem;
    line-height: 1.1;
    color: var(--black);
    text-shadow: 6px 6px 0 var(--white),
                 8px 8px 0 var(--red);
    margin-bottom: 30px;
    letter-spacing: 3px;
    animation: pulse 2s ease-in-out infinite;
}

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

.subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
    line-height: 1.4;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    border: 4px solid var(--black);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 6px 6px 0 var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--black);
}

.btn:active {
    transform: translate(6px, 6px);
    box-shadow: 0 0 0 var(--black);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-secondary {
    background: var(--blue);
    color: var(--black);
}

.btn-tertiary {
    background: var(--purple);
    color: var(--white);
}

.btn-huge {
    font-size: 1.5rem;
    padding: 25px 50px;
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 5px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--bright-yellow);
}

.contract-address {
    background: var(--white);
    border: 4px solid var(--black);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 4px 4px 0 var(--black);
    max-width: 600px;
}

.contract-address label {
    font-weight: 900;
    font-size: 1.1rem;
}

.contract-address input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: monospace;
    font-size: 0.9rem;
    outline: none;
}

.copy-btn {
    background: var(--black);
    color: var(--bright-yellow);
    border: none;
    padding: 10px 20px;
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--red);
    color: var(--white);
}

/* Bull Character */
.bull-character {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    animation: bounce 3s ease-in-out infinite;
}

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

.bull-emoji {
    font-size: 300px;
    filter: drop-shadow(10px 10px 0 var(--black));
    animation: rotate 20s linear infinite;
}

.bull-image {
    width: 400px;
    height: auto;
    filter: drop-shadow(10px 10px 0 var(--black));
    animation: rotate 20s linear infinite;
}

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

.money-float, .rocket-float {
    position: absolute;
    font-size: 60px;
    animation: float 4s ease-in-out infinite;
}

.rocket-img {
    width: 80px;
    height: auto;
}

.money-float:nth-child(2) {
    top: 10%;
    left: 10%;
    animation-delay: 0.5s;
}

.money-float:nth-child(3) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.rocket-float {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.5s;
}

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

/* Manifesto Section */
.manifesto {
    padding: 100px 0;
    background: var(--white);
    border-top: 6px solid var(--black);
    border-bottom: 6px solid var(--black);
}

.manifesto-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.manifesto-mascot {
    width: 200px;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

.section-title {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 0;
    color: var(--black);
    text-shadow: 4px 4px 0 var(--red);
    letter-spacing: 2px;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.manifesto-card {
    background: var(--bright-yellow);
    border: 5px solid var(--black);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 8px 8px 0 var(--black);
    transition: all 0.3s ease;
}

.manifesto-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 13px 13px 0 var(--black);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.manifesto-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--black);
}

.manifesto-card p {
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 600;
}

.manifesto-quote {
    background: var(--black);
    color: var(--bright-yellow);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    border: 5px solid var(--black);
    box-shadow: 8px 8px 0 var(--red);
}

.manifesto-quote strong {
    color: var(--red);
    font-size: 2.2rem;
}

/* Roadmap Section - Game Level Style */
.roadmap {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bright-yellow) 0%, #FFED8E 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
    flex-wrap: wrap;
}

.roadmap-title-wrapper {
    flex: 1;
    min-width: 300px;
}

.roadmap-title-wrapper .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.roadmap-mascot {
    width: 250px;
    height: auto;
    animation: bounce 3s ease-in-out infinite;
}

.roadmap-subtitle {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 0;
    font-weight: 700;
    font-style: italic;
    color: var(--black);
}

.roadmap-game {
    position: relative;
    height: 700px;
    margin-bottom: 60px;
}

/* Game Path */
.game-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.game-path path {
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -35;
    }
}

/* Start and End Flags */
.game-start, .game-end {
    position: absolute;
    z-index: 5;
}

.flag {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    background: var(--red);
    color: var(--white);
    padding: 15px 30px;
    border: 5px solid var(--black);
    border-radius: 50px;
    box-shadow: 6px 6px 0 var(--black);
    animation: wave 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-icon {
    width: 35px;
    height: auto;
}

.flag.trophy {
    background: var(--blue);
    animation: spin-glow 3s ease-in-out infinite;
}

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

@keyframes spin-glow {
    0%, 100% {
        transform: scale(1) rotate(-5deg);
        box-shadow: 6px 6px 0 var(--black);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 10px 10px 20px rgba(0, 212, 255, 0.5), 6px 6px 0 var(--black);
    }
}

/* Game Levels */
.game-level {
    position: absolute;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.level-node {
    width: 120px;
    height: 120px;
    background: var(--white);
    border: 6px solid var(--black);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 0 var(--black), 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.game-level:hover .level-node {
    transform: translateY(-10px);
    box-shadow: 0 15px 0 var(--black), 0 15px 30px rgba(0, 0, 0, 0.4);
}

.game-level:hover .level-info {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.level-icon {
    font-size: 3rem;
    margin-bottom: 5px;
    animation: bounce 2s ease-in-out infinite;
}

.level-icon-img {
    width: 60px;
    height: auto;
    margin-bottom: 5px;
    animation: bounce 2s ease-in-out infinite;
}

.level-1 .level-icon,
.level-1 .level-icon-img {
    animation-delay: 0s;
}

.level-2 .level-icon,
.level-2 .level-icon-img {
    animation-delay: 0.3s;
}

.level-3 .level-icon,
.level-3 .level-icon-img {
    animation-delay: 0.6s;
}

.level-4 .level-icon,
.level-4 .level-icon-img {
    animation-delay: 0.9s;
}

.level-badge {
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    background: var(--red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    border: 3px solid var(--black);
    position: absolute;
    top: -15px;
    letter-spacing: 1px;
}

/* Pulse Effect */
.node-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid var(--red);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Level Info Card */
.level-info {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    border: 5px solid var(--black);
    border-radius: 15px;
    padding: 20px;
    width: 220px;
    box-shadow: 6px 6px 0 var(--black);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

.level-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--black);
    text-transform: uppercase;
}

.level-desc {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--black);
    font-weight: 600;
}

/* Connector dots */
.level-connector {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--black);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Floating coins */
.coin-float {
    position: absolute;
    font-size: 2rem;
    animation: float-coin 3s ease-in-out infinite;
    opacity: 0.4;
    z-index: 2;
}

.coin-float:nth-child(5) {
    animation-delay: 0.5s;
}

.coin-float:nth-child(6) {
    animation-delay: 1s;
}

.coin-float:nth-child(7) {
    animation-delay: 1.5s;
}

.coin-float:nth-child(8) {
    animation-delay: 2s;
}

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

.roadmap-disclaimer {
    background: var(--black);
    color: var(--bright-yellow);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 5px solid var(--black);
    box-shadow: 8px 8px 0 var(--red);
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-disclaimer p {
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: var(--red);
    border-top: 6px solid var(--black);
    border-bottom: 6px solid var(--black);
    text-align: center;
}

.cta-title {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    color: var(--white);
    text-shadow: 6px 6px 0 var(--black);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.cta-buttons-final {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--bright-yellow);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-quote {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    color: var(--bright-yellow);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--red);
    transform: scale(1.1);
}

.social-link:hover .social-icon {
    transform: rotate(10deg);
}

.footer-links a {
    color: var(--bright-yellow);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--red);
    transform: scale(1.1);
}

.footer-copyright {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mega-title {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }

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

    .contract-address {
        margin: 0 auto;
    }

    .bull-character {
        height: 350px;
    }

    .bull-emoji {
        font-size: 200px;
    }

    .bull-image {
        width: 300px;
    }

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

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

    .roadmap-game {
        height: 900px;
    }

    .game-level {
        transform: translate(-50%, -50%) scale(0.9);
    }

    .level-info {
        width: 200px;
    }
}

@media (max-width: 640px) {
    .roadmap-game {
        height: 1100px;
    }

    .game-level {
        transform: translate(-50%, -50%) scale(0.8);
    }

    .level-node {
        width: 100px;
        height: 100px;
    }

    .level-icon {
        font-size: 2.5rem;
    }

    .level-badge {
        font-size: 0.85rem;
        padding: 4px 12px;
    }

    .level-info {
        width: 180px;
        padding: 15px;
        top: 120px;
    }

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

    .level-desc {
        font-size: 0.85rem;
    }

    .flag {
        font-size: 1.3rem;
        padding: 10px 20px;
    }

    .coin-float {
        font-size: 1.5rem;
    }

    .roadmap-disclaimer p {
        font-size: 1rem;
    }
    .mega-title {
        font-size: 2.5rem;
        text-shadow: 4px 4px 0 var(--white),
                     6px 6px 0 var(--red);
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .btn-huge {
        font-size: 1.2rem;
        padding: 20px 35px;
    }

    .ticker-content {
        font-size: 1rem;
    }

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

    .manifesto-card h3 {
        font-size: 1.4rem;
    }

    .manifesto-quote {
        font-size: 1.4rem;
    }

    .manifesto-quote strong {
        font-size: 1.8rem;
    }

    .footer-quote {
        font-size: 1.8rem;
    }

    .contract-address {
        flex-direction: column;
        text-align: center;
    }

    .contract-address input {
        text-align: center;
    }
}
