@import url("https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@100;300;400;900&display=swap");
@import url("https://fonts.cdnfonts.com/css/shining-monday");

:root {
    --primary-orange: rgb(255, 140, 0);
    --primary-cyan: rgb(0, 255, 255);
    --primary-yellow: rgb(255, 215, 0);
    --white: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    background: url("banner-w.png") no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    /* This ensures the body takes up at least the full viewport height */
    color: white;
    overflow-x: hidden;
}

/* Create overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-orange);
    opacity: 0.74;
    z-index: 0;
}

.full-container {
    position: relative;
    /* This ensures the content stays above the overlay */
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 1280px;
    margin: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}

header .logo-container h1,
.content-one h2 {
    font-family: "Shining Monday", sans-serif;
}

header .logo-container h1,
.title-con h2,
.content-one h2 {
    font-size: 8vh;
    text-shadow: -5px -5px 0 var(--primary-cyan), 5px -5px 0 var(--primary-cyan),
        -5px 5px 0 var(--primary-cyan), 5px 5px 0 var(--primary-cyan),
        -5px 0 0 var(--primary-cyan), 5px 0 0 var(--primary-cyan),
        0 -5px 0 var(--primary-cyan), 0 5px 0 var(--primary-cyan);
}

li a,
a,
h1,
h2,
p {
    font-family: "Londrina Solid", sans-serif;
}

.menu-container nav ul {
    list-style: none;
}

.menu-container nav ul li a {
    color: var(--white);
    text-decoration: none;
    margin: 0px 20px;
    font-size: 22px;
    position: relative;
    transition: color 0.3s ease;
}

.menu-container nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-cyan);
    transition: width 0.3s ease;
}

.menu-container nav ul li a:hover::after {
    width: 100%;
}

.btn-container a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    background-color: var(--primary-cyan);
    border: 2px solid var(--white);
    border-radius: 6px;
}

.first-section {
    position: relative;
    width: 100vw;
    /* Full viewport width */
    margin-left: calc(-50vw + 50%);
    /* Centers the section */
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(180deg, #ff8c00bf 0%, #ff69b400 100%);
    padding: 20px;
}

.first-section>* {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.content-one {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 50px 0px;
}

.content-one img {
    max-width: 300px;
}

.furby-content {
    padding-left: 20px;
    max-width: 500px;
    width: 100%;
}

.furby-content p {
    font-size: 30px;
}

.description-one {
    text-align: center;
    text-transform: uppercase;
    padding:30px 0px;
    font-size: 22px;
}

.furby-content input {
    border: 4px solid #fff;
    border-radius: 12px;
    padding: 4px 12px;
    font-family: "Londrina Solid";
    margin: 14px 0px;
    background-color: transparent;
    color: #fff;
}

.furby-content input::placeholder {
    color: #fff;
    font-size: 16px;
}

.furby-img {
    filter: drop-shadow(0 0 20px var(--primary-cyan));
    position: relative;
}

.furby-img img {
    height: auto;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.second-section {
    padding: 120px 20px 20px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 255, 255, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.37);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 4.5vh;
    margin-bottom: 20px;
    text-shadow: -3px -3px 0 var(--primary-cyan),
        3px -3px 0 var(--primary-cyan),
        -3px 3px 0 var(--primary-cyan),
        3px 3px 0 var(--primary-cyan);
}

.about-content p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 400px;
    filter: drop-shadow(0 0 20px var(--primary-cyan));
    border-radius: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon i {
    font-size: 24px;
}

.social-icon span {
    font-family: "Londrina Solid", sans-serif;
    font-size: 20px;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
    background: var(--primary-cyan);
}

.tokenomics-section {
    padding: 140px 20px 60px 20px;
}

.tokenomics-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.2);
}

.tokenomics-container h2 {
    font-size: 5vh;
    margin-bottom: 60px;
    text-shadow: -3px -3px 0 var(--primary-cyan),
        3px -3px 0 var(--primary-cyan),
        -3px 3px 0 var(--primary-cyan),
        3px 3px 0 var(--primary-cyan);
}

.tokenomics-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 80px;
    margin-bottom: 60px;
}

.title-con {
    display: flex;
    align-items: center;
}

.title-con .line {
    width: 100%;
    height: 4px;
    background-color: #fff;
    margin: 0px 20px;
}

.title-con p {
    font-size: 26px;
}

.chart-container {
    flex: 1;
    max-width: 400px;
    padding: 20px;
    position: relative;
}

.pie-chart {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.pie-chart:hover {
    transform: scale(1.05);
}

.distribution-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    padding: 20px;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.distribution-item:hover {
    transform: translateX(10px);
    background: rgba(0, 255, 255, 0.1);
}

.percentage {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    font-family: "Londrina Solid", sans-serif;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.label {
    font-size: 36px;
    color: var(--white);
    font-family: "Londrina Solid", sans-serif;
}

.contract-info {
    display: flex;
    justify-content: center;    
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.info-pill {
    background: var(--primary-cyan);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-family: "Londrina Solid", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.info-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .info-center {
        font-size: 9vw;
    }
    .tokenomics-content {
        flex-direction: column;
        gap: 40px;
    }

    .distribution-list {
        text-align: center;
    }

    .distribution-item {
        justify-content: center;
    }

    .chart-container {
        max-width: unset;
        margin: 0 auto;
    }
}

.how-to-buy-section {
    padding: 140px 20px 60px 20px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 255, 255, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(0, 255, 255, 0.5);
}

.step-number {
    background: var(--primary-cyan);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Londrina Solid", sans-serif;
    font-size: 24px;
    margin: 0 auto 20px;
    border: 2px solid var(--white);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    background-color: var(--white);
    color: var(--primary-cyan);
}

.step-item h3 {
    font-family: "Londrina Solid", sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.step-item p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--white);
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}


.info-center {
    margin-top: 100px;
    text-align: center;
    font-size: 6vw;
    font-family: 'Shining monday';
    text-shadow: -3px -3px 0 var(--primary-cyan),
        3px -3px 0 var(--primary-cyan),
        -3px 3px 0 var(--primary-cyan),
        3px 3px 0 var(--primary-cyan);
}

.footer {
    padding: 20px;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 255, 255, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Londrina Solid", sans-serif;
    font-size: 18px;
}

.footer-info i {
    color: var(--primary-cyan);
}

.copyright {
    text-align: center;
    font-size: 16px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.stars-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle infinite;
}

@keyframes twinkle {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Lightsaber hover effect for buttons */
.btn-container a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-container a:hover {
    background: rgba(255, 255, 255, 0.2);
    animation: lightsaber 0.5s ease-out;
}

@keyframes lightsaber {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.roadmap-section {
    padding: 140px 20px 60px 20px;
}

.roadmap-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.roadmap-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 255, 255, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(0, 255, 255, 0.5);
}

.phase {
    background: var(--primary-cyan);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Londrina Solid", sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--white);
}

.phase-text {
    font-size: 12px;
    font-family: "Londrina Solid", sans-serif;
    background-color: var(--primary-yellow);
    color: black;
    padding:4px;
    border-radius: 10px;
}

.roadmap-content h3 {
    font-family: "Londrina Solid", sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content ul li {
    font-family: "Londrina Solid", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    position: relative;
    padding-left: 25px;
}

.roadmap-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .roadmap-container {
        grid-template-columns: 1fr;
    }
}

/* Simplified Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Simplified mobile menu button animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-container {
    z-index: 99 !important;
    opacity: 1 !important;
}


.mobile-btn-container {
    display: none;
}

/* Simplified mobile menu */
@media (max-width: 992px) {
    .menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-orange);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 99;
    }

    .menu-container.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .menu-container nav ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .menu-container nav ul li a {
        font-size: 24px;
        margin: 10px 0;
    }

    /* Hero section */
    .content-one {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 0;
    }

    .furby-content {
        margin-top: 30px;
    }

    .furby-content h2 {
        font-size: 6vh;
    }

    /* About section */
    .about-container {
        flex-direction: column;
        padding: 20px;
    }

    .about-image img {
        max-width: 100%;
    }

    /* Title containers */
    .title-con {
        flex-direction: column;
        gap: 10px;
    }

    .title-con h2 {
        font-size: 6vh;
    }

    .title-con .line {
        width: 80%;
        margin: 10px auto;
    }

    /* Tokenomics */
    .tokenomics-content {
        flex-direction: column;
        gap: 40px;
    }

    .distribution-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contract-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Social links */
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    /* General spacing */
    .second-section,
    .how-to-buy-section,
    .tokenomics-section,
    .roadmap-section {
        padding: 60px 20px;
    }

    /* Mobile menu button container */
    .mobile-btn-container {
        display: block;
        margin-top: 30px;
        text-align: center;
    }

    .mobile-btn-container a {
        color: var(--white);
        text-decoration: none;
        padding: 12px 30px;
        background-color: var(--primary-cyan);
        border: 2px solid var(--white);
        border-radius: 6px;
        font-size: 20px;
        transition: all 0.3s ease;
    }

    .mobile-btn-container a:hover {
        background: rgba(255, 255, 255, 0.2);
        animation: lightsaber 0.5s ease-out;
    }

    /* Hide desktop button on mobile */
    .btn-container {
        display: none;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    header .logo-container h1 {
        font-size: 6vh;
    }

    .furby-content h2 {
        font-size: 5vh;
    }

    .furby-content p {
        font-size: 24px;
    }

    .description-one {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 3.5vh;
    }

    .about-content p {
        font-size: 18px;
    }

    .step-item {
        padding: 20px;
    }

    .step-item h3 {
        font-size: 24px;
    }

    .step-item p {
        font-size: 16px;
    }

    .info-center {
        font-size: 8vw;
    }
}

/* Loader styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    animation: float 2s ease-in-out infinite;
}

.loader-text {
    color: var(--white);
    font-family: "Londrina Solid", sans-serif;
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.8;
    animation: glow 1.5s ease-in-out infinite alternate;
}

.lightsaber {
    position: relative;
    width: 200px;
    margin: 0 auto;
}

.lightsaber-handle {
    width: 30px;
    height: 8px;
    background: silver;
    margin: 0 auto;
    position: relative;
    border-radius: 4px;
    background: linear-gradient(to right, #666, #999, #666);
}

.lightsaber-blade {
    width: 0%;
    height: 4px;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 30px;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-cyan),
                0 0 20px var(--primary-cyan),
                0 0 30px var(--primary-cyan);
    animation: extend 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--primary-cyan);
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--primary-cyan);
    }
}

@keyframes extend {
    0% {
        width: 0%;
        opacity: 0;
    }
    50% {
        width: 100%;
        opacity: 1;
    }
    100% {
        width: 0%;
        opacity: 0;
    }
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}