body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    overflow-x: hidden;
}
.gradient-bg {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}
.hero-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/*.hero-bg {
    background-image: url('./assets/images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}*/

.hero-bg {
    position: relative;
    background-image:
            linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
            url('./assets/images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.coin {
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    backdrop-filter: blur(5px);
}
.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    margin: 15% auto;
    padding: 30px;
    border-radius: 15px;
    width: 80%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.tokenomics-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tokenomics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.roadmap-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}
.roadmap-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ff6b6b;
}
.roadmap-item:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    width: 1px;
    height: calc(100% + 10px);
    background: rgba(255, 255, 255, 0.2);
}
.roadmap-item:last-child:after {
    display: none;
}
.presale-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(48, 51, 107, 0.2));
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-link {
    position: relative;
}
.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ff6b6b;
    transition: width 0.3s ease;
}
.nav-link:hover:after {
    width: 100%;
}
.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border-radius: 5px;
    width: 65%;
}
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
}



/* Confetti styles ............................................................................................*/
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #f00;
    top: 0;
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
    border-radius: 5px;
}

.confetti:nth-child(1) {
    left: 10%;
    background-color: #f00;
    animation: confetti-fall 5s linear 0s infinite;
}

.confetti:nth-child(2) {
    left: 20%;
    background-color: #0f0;
    animation: confetti-fall 5s linear 0.5s infinite;
}

.confetti:nth-child(3) {
    left: 30%;
    background-color: #00f;
    animation: confetti-fall 5s linear 1s infinite;
}

.confetti:nth-child(4) {
    left: 40%;
    background-color: #ff0;
    animation: confetti-fall 5s linear 1.5s infinite;
}

.confetti:nth-child(5) {
    left: 50%;
    background-color: #f0f;
    animation: confetti-fall 5s linear 2s infinite;
}

.confetti:nth-child(6) {
    left: 60%;
    background-color: #0ff;
    animation: confetti-fall 5s linear 2.5s infinite;
}

.confetti:nth-child(7) {
    left: 70%;
    background-color: #f90;
    animation: confetti-fall 5s linear 3s infinite;
}

.confetti:nth-child(8) {
    left: 80%;
    background-color: #9f0;
    animation: confetti-fall 5s linear 3.5s infinite;
}

.confetti:nth-child(9) {
    left: 90%;
    background-color: #09f;
    animation: confetti-fall 5s linear 4s infinite;
}

.confetti:nth-child(10) {
    left: 95%;
    background-color: #90f;
    animation: confetti-fall 5s linear 4.5s infinite;
}

@keyframes confetti-fall {
    0% {
        top: -10px;
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
    100% {
        top: 100vh;
        opacity: 0;
        transform: translateX(20px) rotate(360deg);
    }
}


/*.confetti {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    opacity: 0;*/
/*    z-index: 9999;*/
/*    pointer-events: none;*/
/*    transform-origin: center;*/
/*    transform-style: preserve-3d; !* enables true 3D rotation *!*/
/*    backface-visibility: hidden;  !* hides the backside for realism *!*/
/*}*/

/*@keyframes confetti-fall {*/
/*    0% {*/
/*        top: -10px;*/
/*        opacity: 1;*/
/*        transform: translateX(0) rotateX(0deg) rotateY(0deg);*/
/*    }*/
/*    100% {*/
/*        top: 100vh;*/
/*        opacity: 0;*/
/*        transform: translateX(60px) rotateX(720deg) rotateY(720deg);*/
/*    }*/
/*}*/

/*!* Additional 3D spinning animation *!*/
/*@keyframes coin-spin {*/
/*    0% {*/
/*        transform: rotateY(0deg) rotateX(0deg);*/
/*    }*/
/*    50% {*/
/*        transform: rotateY(180deg) rotateX(20deg);*/
/*    }*/
/*    100% {*/
/*        transform: rotateY(360deg) rotateX(0deg);*/
/*    }*/
/*}*/



