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

html {
    overflow: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Arial", sans-serif;
    overflow: hidden;
    background: #1a1a2e;
    color: #ffffff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-logo img {
    height: 50px;
    width: auto;
    cursor: pointer;
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 25px;
    background-color: #1a1a2e;
}

.navbar-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.navbar-links li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.navbar-links li a.active {
    background: rgba(107, 142, 35, 0.6);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.section-container {
    height: calc(100vh - 70px);
    margin-top: 70px;
    overflow: hidden;
    position: relative;
    clip-path: inset(0 0 0 0);
}

.section-container.rocket-launching {
    overflow: visible;
    clip-path: none;
}

.section {
    height: calc(100vh - 70px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.section.active {
    opacity: 1;
    visibility: visible;
}

.section-content {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.section-content h1 {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.section-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-content p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.tagline {
    font-size: 2rem !important;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* Social Links */
.social-links {
    position: absolute;
    top: 10px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.social-link img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.social-link:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

/* Hero Section Content */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem 3rem;
    gap: 2rem;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    padding-top: 3rem;
}

.hero-characters {
    position: relative;
    width: 100vw;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

#hero {
    overflow: visible;
}

.hero-rocket {
    position: absolute;
    width: 200px;
    height: auto;
    z-index: 10;
}

.hero-rocket.blast-off {
    animation: rocketBlastOff 2s ease-in forwards;
}

.hero-character {
    position: absolute;
    width: 160px;
    height: auto;
    opacity: 0;
    z-index: 5;
}

.hero-farter {
    left: 0;
    bottom: 0;
    transform: scale(0.1) translateY(-200px);
}

.hero-farter.visible {
    animation: characterDrop 1s ease-out forwards;
}

.hero-butt {
    left: 35%;
    bottom: 20%;
    transform: scale(0.1) translateY(-200px);
}

.hero-butt.visible {
    animation: characterDrop 1s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-cloud {
    right: 35%;
    bottom: 20%;
    transform: scale(0.1) translateY(-200px);
}

.hero-cloud.visible {
    animation: characterDrop 1s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-potato {
    right: 0;
    bottom: 0;
    transform: scale(0.1) translateY(-200px);
}

.hero-potato.visible {
    animation: characterDrop 1s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes fartorDrop {
    0% {
        opacity: 1;
        transform: scaleX(-1) scale(0.1) translateY(-200px);
    }
    100% {
        opacity: 1;
        transform: scaleX(-1) scale(1) translateY(0);
    }
}

@keyframes characterDrop {
    0% {
        opacity: 1;
        transform: scale(0.1) translateY(-200px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes rocketShake {
    0%,
    100% {
        transform: translateX(0) translateY(0);
    }
    10% {
        transform: translateX(-3px) translateY(0) rotate(-1deg);
    }
    20% {
        transform: translateX(3px) translateY(0) rotate(1deg);
    }
    30% {
        transform: translateX(-3px) translateY(0) rotate(-1deg);
    }
    40% {
        transform: translateX(3px) translateY(0) rotate(1deg);
    }
    50% {
        transform: translateX(-2px) translateY(0) rotate(-0.5deg);
    }
    60% {
        transform: translateX(2px) translateY(0) rotate(0.5deg);
    }
    70% {
        transform: translateX(-2px) translateY(0) rotate(-0.5deg);
    }
    80% {
        transform: translateX(2px) translateY(0) rotate(0.5deg);
    }
    90% {
        transform: translateX(-1px) translateY(0);
    }
}

@keyframes rocketBlastOff {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-150vh);
    }
}

.hero-rocket.shaking {
    animation: rocketShake 0.5s ease-in-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    background-image: url("img/Aux-Rectangle.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem;
}

.hero-cta {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contract-address {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.contract-label {
    font-weight: bold;
    font-size: 1rem;
    opacity: 0.9;
}

.contract-code {
    font-family: monospace;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem 0.6rem;
    border-radius: 5px;
    word-break: break-all;
}

.copy-button {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: white;
    font-size: 0.85rem;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.copy-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.copy-button:active {
    transform: scale(0.95);
}

.copy-button.copied {
    background: rgba(74, 222, 128, 0.4);
    border-color: rgba(74, 222, 128, 0.6);
}

/* Game Section */
.game-container {
    width: 100%;
    max-width: 900px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.game-title {
    font-size: 1.5rem;
    margin: 0;
}

.game-score {
    font-size: 1.3rem;
    font-weight: bold;
}

.game-arena {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 300px;
}

.game-sky {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: #b6e5f1;
}

.game-city {
    position: absolute;
    bottom: 40%;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 1;
    background: url("img/Aux-City.png") repeat-x bottom center;
    background-size: auto 100%;
}

.game-road {
    position: absolute;
    bottom: 12%;
    left: 0;
    right: 0;
    height: 28%;
    background: #444;
}

.road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #fff 0px,
        #fff 30px,
        transparent 30px,
        transparent 60px
    );
    transform: translateY(-50%);
}

.game-sidewalk {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12%;
    background: #8b8b8b;
    border-top: 4px solid #666;
}

.game-characters {
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: -15px;
    z-index: 10;
}

.game-character {
    width: 120px;
    height: auto;
    opacity: 0;
}

.game-poot {
    transform: scaleX(-1) translateX(300px);
}

.game-poot.walk-in {
    animation: pootWalkIn 1s ease-out forwards;
}

.girlpoot-container {
    position: relative;
    opacity: 0;
    transform: translateX(300px);
}

.girlpoot-container .game-girlpoot {
    opacity: 1;
}

.girlpoot-container.walk-in {
    animation: girlPootWalkIn 1s ease-out forwards;
}

.girlpoot-container.walk-out {
    animation: girlPootWalkOut 1s ease-in forwards;
}

.speech-bubble {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #fff;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    z-index: 20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fff;
}

.speech-bubble.show {
    animation: speechBubblePop 1.5s ease-out forwards;
}

@keyframes speechBubblePop {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    15% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
    25% {
        transform: translateX(-50%) scale(0.9);
    }
    35% {
        transform: translateX(-50%) scale(1.05);
    }
    50%,
    70% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
}

.game-girlpoot.walk-out {
    animation: girlPootWalkOut 1s ease-in forwards;
}

@keyframes pootWalkIn {
    0% {
        opacity: 0;
        transform: scaleX(-1) translateX(300px);
    }
    100% {
        opacity: 1;
        transform: scaleX(-1) translateX(0);
    }
}

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

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

.game-cars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.game-car {
    position: absolute;
    bottom: 20%;
    width: 120px;
    height: 60px;
    background: #e74c3c;
    border-radius: 10px 10px 5px 5px;
    z-index: 5;
}

.game-car.lane-top {
    bottom: 28%;
    z-index: 15;
}

.game-car.lane-bottom {
    bottom: 16%;
    z-index: 5;
}

.game-car::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 20px;
    width: 80px;
    height: 25px;
    background: #c0392b;
    border-radius: 10px 10px 0 0;
}

.game-car::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 15px;
    width: 25px;
    height: 25px;
    background: #333;
    border-radius: 50%;
    box-shadow: 65px 0 0 #333;
}

.game-car.car-blue {
    background: #3498db;
}

.game-car.car-blue::before {
    background: #2980b9;
}

.game-car.car-green {
    background: #27ae60;
}

.game-car.car-green::before {
    background: #1e8449;
}

.game-car.car-yellow {
    background: #f1c40f;
}

.game-car.car-yellow::before {
    background: #d4ac0d;
}

.game-poot-cloud {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%) scaleX(-1);
    width: 120px;
    height: auto;
    opacity: 0;
    z-index: 8;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.game-poot-cloud.active {
    opacity: 1;
    animation: pootPulse 0.3s ease-in-out infinite;
}

@keyframes pootPulse {
    0%,
    100% {
        transform: translateX(-50%) scaleX(-1) scale(1);
    }
    50% {
        transform: translateX(-50%) scaleX(-1) scale(1.2);
    }
}

.game-controls {
    padding: 1rem;
    text-align: center;
}

/* Fartometer */
.fartometer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.fartometer-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
}

.fartometer-bar {
    width: 200px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.fartometer-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #8bc34a 0%,
        #ffeb3b 50%,
        #ff5722 80%,
        #f44336 100%
    );
    border-radius: 8px;
    transition: width 0.1s ease;
}

.fartometer-skull {
    font-size: 1.5rem;
    opacity: 0.5;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.fartometer-skull.danger {
    opacity: 1;
    animation: skullPulse 0.5s ease-in-out infinite;
}

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

.poot-button {
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.1s ease,
        box-shadow 0.1s ease;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.poot-button:hover {
    transform: scale(1.05);
}

.poot-button:active,
.poot-button.pressed {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.game-instructions {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Game Over Dialog */
.game-over-dialog {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.game-over-dialog.active {
    display: flex;
}

.game-over-content {
    background: linear-gradient(135deg, #4a1c6b 0%, #6b2d8a 100%);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-over-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-over-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.play-again-button {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-again-button:hover {
    transform: scale(1.05);
}

/* Section Colors */
#hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 50%, #6b8e23 100%);
}

#game {
    background: linear-gradient(135deg, #4a1c6b 0%, #6b2d8a 50%, #8b3da8 100%);
}

#about {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem 3rem;
    gap: 3rem;
}

.about-image {
    flex: 0 0 auto;
}

.about-image img {
    width: 300px;
    height: auto;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-text ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text ul li::before {
    content: "💨";
    position: absolute;
    left: 0;
}

.coming-soon-banner {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

#hall-of-fame {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #ffd700 100%);
    color: #1a1a2e;
}

#library {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #3b82a0 100%);
}

#pootmap {
    background: linear-gradient(135deg, #0d4d4d 0%, #1a6b6b 50%, #2d8a8a 100%);
}

.roadmap-carousel {
    display: block;
}

.roadmap-arrow {
    display: none;
}

.roadmap-phase {
    display: block;
}

.roadmap-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.roadmap-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.roadmap-phases {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.roadmap-phase {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.roadmap-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phase-1 {
    border-color: #4ade80;
}

.phase-2 {
    border-color: #facc15;
}

.phase-3 {
    border-color: #60a5fa;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.phase-icon {
    font-size: 2rem;
}

.phase-header h3 {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.phase-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-items li {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-items li:last-child {
    border-bottom: none;
}

.phase-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
}

#pootonomics {
    background: linear-gradient(135deg, #4a3728 0%, #6b5344 50%, #8b7355 100%);
}

.pootonomics-container {
    width: 100%;
    max-width: 1100px;
    padding: 2rem;
    text-align: center;
}

.pootonomics-title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pootonomics-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pootonomics-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pootonomics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pootonomics-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.pootonomics-value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ffd700 0%, #ffec8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pootonomics-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0.5rem 0;
}

.pootonomics-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.pootonomics-supply {
    font-size: 1.8rem;
    font-weight: 900;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffec8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#join {
    background: linear-gradient(135deg, #5c1a1a 0%, #8b2d2d 50%, #a84040 100%);
}

.join-container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

.join-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.join-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.join-cta {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.buy-now-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1a1a2e;
    background: linear-gradient(135deg, #ffd700 0%, #ffec8b 50%, #ffd700 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.buy-now-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

#how-to-buy {
    background: linear-gradient(135deg, #1a5c1a 0%, #2d8b2d 50%, #40a840 100%);
}

/* Navigation Dots */
.section-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 1000;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-links {
        gap: 15px;
    }

    .navbar-links li a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0 20px;
    }

    .navbar-logo img {
        height: 40px;
    }

    .navbar-drawer {
        position: fixed;
        top: 60px;
        right: 0;
        bottom: 0;
        width: 250px;
        background-color: #1a1a2e;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .navbar-drawer.active {
        transform: translateX(0);
    }

    .navbar-links {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 30px 25px;
        gap: 5px;
    }

    .navbar-links li {
        width: 100%;
    }

    .navbar-links li a {
        display: block;
        width: 100%;
        font-size: 1.1rem;
        padding: 12px 15px;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .navbar-links li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .section-container {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }

    .section {
        height: calc(100vh - 60px);
    }

    .section-content h1 {
        font-size: 3.5rem;
    }

    .section-content h2 {
        font-size: 2.5rem;
    }

    .section-content p {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 1.3rem !important;
    }

    .social-links {
        top: 10px;
        right: 15px;
        gap: 10px;
    }

    .social-link img {
        width: 36px;
        height: 36px;
    }

    .hero-container {
        flex-direction: column;
        padding: 1rem;
        padding-top: 60px;
        gap: 1rem;
        text-align: center;
        height: 100%;
        justify-content: center;
        overflow: visible;
    }

    .hero-text {
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero-characters {
        height: 220px;
        width: 100vw;
    }

    .hero-rocket {
        width: 120px;
    }

    .hero-character {
        width: 100px;
    }

    .hero-butt {
        left: 30%;
        bottom: 15%;
    }

    .hero-cloud {
        right: 30%;
        bottom: 15%;
    }

    .hero-potato {
        right: 0;
        bottom: 0;
    }

    .hero-farter {
        left: 0;
        bottom: 0;
    }

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

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

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

    .contract-address {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .contract-code {
        font-size: 0.7rem;
    }

    .copy-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .about-container {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }

    .about-image img {
        width: 200px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p,
    .about-text ul li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-text ul li {
        text-align: left;
    }

    .roadmap-container {
        padding: 1rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .roadmap-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .roadmap-carousel {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .roadmap-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition:
            background 0.2s ease,
            transform 0.2s ease;
        z-index: 10;
    }

    .roadmap-arrow:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    .roadmap-arrow:active {
        transform: scale(0.95);
    }

    .roadmap-phases {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        flex: 1;
        position: relative;
    }

    .roadmap-phase {
        min-width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 1.25rem;
        border-radius: 15px;
        box-sizing: border-box;
        display: none;
    }

    .roadmap-phase.active {
        display: block;
    }

    .phase-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        gap: 0.5rem;
    }

    .phase-icon {
        font-size: 1.8rem;
    }

    .phase-header h3 {
        font-size: 1.1rem;
    }

    .phase-items li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
        padding-left: 1.5rem;
        line-height: 1.5;
    }

    .phase-items li::before {
        font-size: 0.9rem;
    }

    .pootonomics-container {
        padding: 1rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pootonomics-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .pootonomics-cards {
        flex-direction: row;
        align-items: stretch;
        gap: 0.75rem;
        flex-wrap: nowrap;
    }

    .pootonomics-card {
        min-width: 0;
        flex: 1;
        max-width: none;
        padding: 1rem 0.75rem;
        border-radius: 12px;
        border-width: 2px;
    }

    .pootonomics-icon {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }

    .pootonomics-value {
        font-size: 2rem;
    }

    .pootonomics-card h3 {
        font-size: 0.7rem;
        margin: 0.25rem 0;
    }

    .pootonomics-card p {
        font-size: 0.65rem;
    }

    .pootonomics-supply {
        font-size: 0.9rem;
    }

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

    .join-description,
    .join-cta {
        font-size: 1.1rem;
    }

    .buy-now-button {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }
}
