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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 968px) {
    .logo img {
        width: 80%;
    }
}

.pumpkin-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.8));
}

.logo-text {
    color: #ff8c00;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 50%;
}

@media (max-width: 968px) {
    .nav {
        justify-content: end;
    }
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff8c00;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    font-size: 18px;
    text-decoration: none;
}

.btn-primary {
    will-change: transform;
    transform: translateZ(0);
}

.btn-primary:hover,
.btn-primary.hover-glow {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

@media (max-width: 968px) {
    .btn-primary {
        font-size: 12px;
        padding: 10px 15px;
    }
}

.btn-secondary.hover-glow {
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 968px) {
    .btn-secondary {
        font-size: 12px;
        padding: 10px 15px;
    }
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-start-chat {
    padding-right: 60px;
}

.pumpkin-icon-small {
    font-size: 16px;
    right: 6px;
    top: -8px;
    position: absolute;
}

.pumpkin-icon-small img {
    width: 50px;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 968px) {
    .pumpkin-icon-small {
        right: -8px;
    }
    .pumpkin-icon-small img {
        width: 60%;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

@media (max-width: 968px) {
    .hero {
        padding-top: 150px;
    }
}

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

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    min-height: 600px;
}

@media (max-width: 480px) {
    .hero-visual {
        min-height: 400px;
    }
}

.hero-visual .pumpkin-throne {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: transform, opacity;
    animation: none; /* Override float animation for slider */
}

.hero-visual .pumpkin-throne .pumpkin-face {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual .pumpkin-throne.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
    animation: float 3s ease-in-out infinite; /* Re-enable float for active slide */
}

.hero-visual .pumpkin-throne.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.pumpkin-throne {
    position: relative;
    font-size: 200px;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.6));
    animation: float 3s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

.pumpkin-crown {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.pumpkin-face {
    font-size: 200px;
}

.pumpkin-face img {
    width: 80%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 480px) {
    .pumpkin-face img {
        width: 80%;
    }
}

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

.hero-visual .carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

@media (max-width: 968px) {
    .hero-visual .carousel-controls {
        justify-content: space-between;
        width: 100%;
        bottom: 50%;
    }
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 10px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    animation: particles 10s ease-in-out infinite;
    will-change: opacity;
    transform: translateZ(0);
    contain: layout style paint;
}

@keyframes particles {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Partnerships */
.partnerships {
    padding: 80px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.partners-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.partners-controls .carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-controls .carousel-btn:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #ff8c00;
}

.partners-controls .carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.section-title {
    font-size: 38px;
    font-weight: bold;
    color: #FFFEFE;
    margin-bottom: 50px;
    text-align: center;
}

.partners-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

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

@keyframes marquee-mobile {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1000%);
    }
}

.partners-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
    flex: 0 0 auto;
    min-width: 0;
}

.partner-logo {
    will-change: transform;
    transform: translateZ(0);
}

.partner-icon {
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.partner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 234px;
}

.partner-logo span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Features */
.features {
    padding: 100px 0;
    position: relative;
}

.features .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.feature-box:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: #ff8c00;
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Fortune Telling */
.fortune-telling {
    padding: 120px 0;
    position: relative;
}

.fortune-telling .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fortune-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.pumpkin-party {
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.6));
    animation: float 3s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

@media (max-width: 968px) {
    .pumpkin-party .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px !important;
    }
    .section-subtitle {
        font-size: 16px !important;
    }
    .pumpkin-party .btn-primary {
        font-size: 12px !important;
    }
    .fortune-content-text-first {
        font-size: 20px !important;
    }
    .fortune-content-text-second {
        font-size: 20px !important;
    }
    .fortune-content-text-third {
        font-size: 20px !important;
    }
}

.pumpkin-crown-small {
    position: absolute;
    top: 20px;
    font-size: 50px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.pumpkin-hat {
    position: absolute;
    top: -30px;
    font-size: 40px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -10px, 0) rotate(5deg); }
}

.section-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.fortune-content-text-first {
    font-size: 32px;
    color: #D9D9D9;
    margin-bottom: 20px;
    line-height: 1.8;
}

.fortune-content-text-second {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.8;
}

.fortune-content-text-third {
    font-size: 32px;
    color: #D9D9D9;
    margin-bottom: 20px;
    line-height: 1.8;
}

.fortune-content .btn-primary {
    margin-top: 30px;
}

/* Fortune Content Vertical Marquee */
.fortune-content {
    position: relative;
    height: 400px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.fortune-marquee-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fortune-marquee-track {
    display: flex;
    flex-direction: column;
    animation: fortune-marquee-vertical 20s linear infinite;
    will-change: transform;
}

.fortune-marquee-item {
    flex-shrink: 0;
    width: 100%;
}

@keyframes fortune-marquee-vertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 968px) {
    .fortune-content-text-first,
    .fortune-content-text-second,
    .fortune-content-text-third {
        text-align: center;
    }
    
    .fortune-content {
        height: 350px;
    }
}

/* Power Protocol */
.power-protocol {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.power-protocol .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-content: flex-start;
}

.protocol-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cosmic-pumpkin {
    position: relative;
    transform: translateZ(0);
}

.cosmic-pumpkin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cosmic-pumpkin::before,
.cosmic-pumpkin::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 3s ease-out infinite;
}

.cosmic-pumpkin::after {
    animation-delay: 1.5s;
}

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

@keyframes ripple {
    0% {
        transform: translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
        opacity: 1;
    }
    100% {
        transform: translate3d(-50%, -50%, 0) scale3d(1.5, 1.5, 1);
        opacity: 0;
    }
}

.protocol-content {
    text-align: right;
}

.protocol-content .section-title {
    text-align: right;
    margin-bottom: 0px;
}

.protocol-content p {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 18px;
    text-align: right;
}

@media (max-width: 968px) {
    .protocol-content .section-title,
    .protocol-content,
    .protocol-content p {
        text-align: center;
    }
}

/* Three Steps */
.three-steps {
    padding: 120px 0;
}

.three-steps .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.step-box:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: #ff8c00;
    transform: translate3d(0, -10px, 0);
}

.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.5));
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #ff8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    color: #000;
}

.step-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ff8c00;
}

.step-box p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Explore Section */
#tokenomics {
    max-width: 1280px;
    margin: 0 auto;
}
.overview-title {
    color: #FF4D00;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
    margin-bottom: 28px;
}

.overview-content {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    margin-bottom: 100px;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.tokenomics-img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.tokenomics-img img {
    display: initial;
    max-width: 100%;
    height: auto;
}

.tokenomics-absolute-column {
    position: relative;
    padding: 50px 0;
}

.tokenomics-absolute-column-1 {
    position: absolute;
    top: 20px;
    left: 48%;
    display: flex;
}

.tokenomics-absolute-column-1 .tokenomics-absolute-column-percent {
    position: relative;
    top: -4px;
    width: 71px;
    font-size: 33px;
}

.tokenomics-absolute-column-1 .tokenomics-absolute-column-percent img {
    width: 100%;
}

.tokenomics-absolute-column-1 .tokenomics-absolute-column-line {
    top: 12px;
    position: relative;
    margin: 0 10px;
}

.tokenomics-absolute-column-1 .tokenomics-absolute-column-title {
    width: 100%;
    color: #33E865;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    margin-bottom: 5px;
}

.tokenomics-absolute-column-title-container {
    width: 60%;
}

.tokenomics-absolute-column-2 {
    position: absolute;
    top: 25%;
    right: 0;
    width: 29%;
}

.tokenomics-absolute-column-2 .tokenomics-absolute-column-content-container {
    display: flex;
}

.tokenomics-absolute-column-2 .tokenomics-absolute-column-percent {
    position: relative;
    top: 7px;
    margin-bottom: 10px;
    width: 71px;
    font-size: 33px;
}

.tokenomics-absolute-column-2 .tokenomics-absolute-column-percent img {
    width: 100%;
    height: 28px;
}

.tokenomics-absolute-column-2 .tokenomics-absolute-column-line {
    top: 12px;
    position: relative;
    width: 70px;
    height: 15px;
    margin-right: 10px;
}

.tokenomics-absolute-column-2 .tokenomics-absolute-column-title {
    width: 100%;
    color: #F07000;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    margin-bottom: 5px;
}

.tokenomics-absolute-column-3 {
    position: absolute;
    top: 65%;
    right: 0;
    width: 29%;
}

.tokenomics-absolute-column-3 .tokenomics-absolute-column-percent {
    position: relative;
    top: 7px;
    margin-bottom: 20px;
    width: 71px;
    font-size: 33px;
}

.tokenomics-absolute-column-3 .tokenomics-absolute-column-percent img {
    width: 100%;
}

.tokenomics-absolute-column-3 .tokenomics-absolute-column-content-container {
    display: flex;
}

.tokenomics-absolute-column-3 .tokenomics-absolute-column-line {
    top: 12px;
    position: relative;
    width: 70px;
    height: 15px;
    margin-right: 10px;
}

.tokenomics-absolute-column-3 .tokenomics-absolute-column-title {
    width: 100%;
    color: #D92C47;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    margin-bottom: 5px;
}

.tokenomics-absolute-column-4 {
    position: absolute;
    top: 65%;
    left: 0%;
    width: 29%;
}

.tokenomics-absolute-column-4 .tokenomics-absolute-column-percent {
    position: relative;
    top: 7px;
    margin-bottom: 20px;
    width: 100%;
    text-align: right;
    font-size: 33px;
}

.tokenomics-absolute-column-4 .tokenomics-absolute-column-percent img {
    width: 71px;
    height: 28px;
    display: initial;
}

.tokenomics-absolute-column-4 .tokenomics-absolute-column-content-container {
    display: flex;
}

.tokenomics-absolute-column-4 .tokenomics-absolute-column-line {
    top: 12px;
    position: relative;
    width: 70px;
    height: 15px;
    margin-right: 10px;
}

.tokenomics-absolute-column-4 .tokenomics-absolute-column-title {
    width: 100%;
    color: #F58DE4;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    margin-bottom: 5px;
    text-align: right;
    margin-right: 10px;
}

.tokenomics-absolute-column-4 .tokenomics-absolute-column-content {
    text-align: center;
}

.tokenomics-absolute-column-5 {
    position: absolute;
    top: 25%;
    left: 0;
    width: 29%;
    display: flex;
}

.tokenomics-absolute-column-5 .tokenomics-absolute-column-percent {
    position: relative;
    top: 7px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 33px;
}

.tokenomics-absolute-column-5 .tokenomics-absolute-column-percent img {
    width: 71px;
    display: initial;
}

.tokenomics-absolute-column-5 .tokenomics-absolute-column-content-left-container {
    top: 62px;
    position: relative;
}

.tokenomics-absolute-column-5 .tokenomics-absolute-column-content-container {
    display: flex;
}

.tokenomics-absolute-column-5 .tokenomics-absolute-column-line {
    top: 12px;
    position: relative;
    width: 70px;
    height: 15px;
    margin-right: 10px;
}

.tokenomics-absolute-column-5 .tokenomics-absolute-column-title {
    width: 100%;
    color: #E5BC15;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    margin-bottom: 5px;
    margin-right: 10px;
    text-align: right;
    padding-right: 10px;
}

.tokenomics-ticker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 50px;
    background: rgba(253, 253, 253, 0.06);
    padding: 25px 100px;
    width: 75%;
    margin: 0 auto;
}

.tokenomics-ticker-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin: 0 auto;
}

.tokenomics-ticker-left {
    width: 100px;
    margin-right: 20px;
}

.tokenomics-ticker-left img {
    width: 100%;
}

.tokenomics-ticker-right {
    width: 100%;
}

.tokenomics-ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 10px;
}   

/* FAQs */
.faqs {
    padding: 120px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #ff8c00;
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.faq-arrow {
    font-size: 14px;
    color: #ff8c00;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Ritual Section */
.ritual-section {
    padding: 80px 0;
    background: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    width: 80%;
    margin: 0 auto;
    border-radius: 16px;
    padding: 50px;
}

.ritual-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ritual-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.ritual-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.ritual-buttons {
    display: flex;
    gap: 20px;
}

.ritual-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

@media (max-width: 480px) {
    .ritual-section {
        width: 90%;
        padding: 25px;
    }
    .ritual-section .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ritual-content h2 {
        font-size: 24px !important;
    }
    .ritual-content p {
        font-size: 16px !important;
    }
    .ritual-buttons {
        flex-direction: column;
    }
    .ritual-buttons button {
        font-size: 12px !important;
        justify-content: center;
        padding-right: 0px;
    }
}

.pumpkin-3d {
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.6));
    animation: float 3s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

.speech-bubble {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    animation: bounce 2s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

@media (max-width: 480px) {
    .pumpkin-3d {
        text-align: center;
    }
    .pumpkin-3d img {
        width: 80% !important;
    }
    .speech-bubble img {
        width: 80% !important;
        left: 10px;
    }
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: rgba(0, 0, 0, 0.5);
}

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

.footer-text {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-icon {
    will-change: transform;
    transform: translateZ(0);
}

.social-icon:hover {
    background: rgba(255, 140, 0, 0.3);
    transform: translate3d(0, -3px, 0);
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff8c00;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 480px) {
    .footer-copyright {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .fortune-telling .container,
    .power-protocol .container,
    .ritual-section .container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .partners-marquee-track {
        gap: 30px;
    }
    
    .partner-logo {
        flex: 0 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-track {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        display: none;
    }
    
    .partners-marquee-track {
        gap: 20px;
        animation: marquee-mobile 40s linear infinite;
    }
    
    .partner-logo {
        flex: 0 0 auto;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-buttons button {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .hero .container {
        gap: 20px;
    }
}

/* Wishlist Page */
.wishlist-page {
    background: radial-gradient(circle at top, rgba(255, 140, 0, 0.15), transparent 55%),
                radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.2), transparent 45%),
                #000;
    min-height: 100vh;
}

/* Online Count Badge */
.online-count-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #FF6B00 0%, #FF8C00 50%, #FFA500 100%);
    color: white;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.online-count-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.people-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.count-number {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.count-text {
    font-weight: 400;
    font-size: 14px;
}

@media (max-width: 640px) {
    .online-count-badge {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .people-icon {
        width: 16px;
        height: 16px;
    }
    
    .count-number {
        font-size: 13px;
    }
    
    .count-text {
        font-size: 12px;
    }
}

.header-transparent {
    background: transparent;
}

.wishlist-main {
    padding-top: 140px;
}

@media (max-width: 480px) {
    .wishlist-main {
        padding-top: 50px;
    }
}

.wishlist-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 140px;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    filter: blur(30px);
    opacity: 0.7;
    pointer-events: none;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 60px;
    align-items: center;
}

.wishlist-copy {
    margin-bottom: 50px;
}

.wishlist-copy h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
}

.wishlist-copy p {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.wishlist-kicker {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 15px;
    color: #ff8c00;
    text-align: center;
}

.wishlist-subhead {
    font-size: 20px;
    margin-bottom: 30px;
}

.wishlist-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.wishlist-perks li::before {
    content: '✦';
    color: #ff8c00;
    margin-right: 8px;
}

.joined-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    font-weight: 500;
}

.wishlist-form-wrapper {
    position: relative;
}

.floating-orb {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.8), transparent 70%);
    filter: blur(5px);
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.orb-left {
    top: -40px;
    left: -60px;
}

.orb-right {
    bottom: -30px;
    right: -40px;
    animation-delay: 2s;
}

.waitlist-card {
    background: rgba(8, 8, 8, 0.9);
    border-radius: 30px;
    padding: 40px 40px 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    height: 650px;
}

.card-headline {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    top: -150px;
    position: relative;
}

.card-mascot {
    width: 200px;
    height: 100%;
}

.card-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    top: -150px;
    position: relative;
}

.waitlist-form input,
.waitlist-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 16px;
    transition: border 0.2s, box-shadow 0.2s;
}

.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1; /* Ensure consistency across browsers */
}

.waitlist-form textarea {
    min-height: 110px;
    resize: vertical;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
    outline: none;
}

.waitlist-form button {
    justify-content: center;
}

.input-label {
    font-size: 16px;
    color: #ff8c00;
}

.privacy-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    margin-top: 8px;
    text-align: center;
}

.form-status {
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.4;
}

.form-status.success {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.form-status.error {
    background: rgba(255, 77, 77, 0.12);
    border: 1px solid rgba(255, 77, 77, 0.3);
    color: #ff4d4d;
}

.wishlist-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    margin-top: 40px;
}

.wishlist-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 480px) {
    .wishlist-footer .container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .wishlist-footer .footer-right {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    width: 56px;
}

.footer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.wishlist-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(2px 2px at 20% 20%, rgba(255, 255, 255, 0.25), transparent),
                      radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.2), transparent),
                      radial-gradient(1.5px 1.5px at 40% 80%, rgba(255, 255, 255, 0.2), transparent);
    z-index: 0;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .wishlist-copy h1 {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .waitlist-card {
        padding: 30px;
    }

    .wishlist-copy h1 {
        font-size: 38px;
    }
}

@media (max-width: 1200px) {
    .tokenomics-absolute-column-1 {
      position: relative;
      width: 100%; 
      top: 0;
      left: 0;
      right: 0;
      display: block;
      margin-bottom: 60px;
    }
    .tokenomics-absolute-column-2 {
      position: relative;
      width: 100%;
      top: 0;
      left: 0;
      right: 0;
      display: block;
      margin-bottom: 60px;
    }
    .tokenomics-absolute-column-3 {
      position: relative;
      width: 100%;
      top: 0;
      left: 0;
      right: 0;
      display: block;
      margin-bottom: 60px;
    }
    .tokenomics-absolute-column-4 {
      position: relative;
      width: 100%;
      top: 0;
      left: 0;
      right: 0;
      display: block;
      margin-bottom: 60px;
    }
    .tokenomics-absolute-column-5 {
      position: relative;
      width: 100%;
      top: 0;
      left: 0;
      right: 0;
      display: block;
      margin-bottom: 60px;
      display: flex;
      flex-direction: column-reverse;
    }
  
    .overview-content {
      margin-bottom: 0;
    }
  
    .tokenomics-absolute-column-title-container {
      width: 90%;
    }
  
    .tokenomics-absolute-column-percent {
      margin-bottom: 30px !important;
      top: 0 !important;
      text-align: left !important;
    }
  
    .tokenomics-absolute-column-title {
      text-align: left !important;
    }
  
    .tokenomics-absolute-column-line {
      display: none;
    }
  
    .tokenomics-ticker-content {
      width: 90%;
      padding: 25px;
    }

    .tokenomics-absolute-column-4 .tokenomics-absolute-column-content {
        text-align: left;
    }
  
    .tokenomics-ticker-container {
      display: block;
    }
  
    .tokenomics-ticker-left {
      width: 100px;
      margin-right: 0;
      margin: 0 auto;
    }

    .tokenomics-absolute-column-5 .tokenomics-absolute-column-content-left-container {
        top: 0 !important;
    }
  }
  