@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap');
:root {
    --primary-color: #12436C;
    --secondary-color: #12436CE5;
    --dark-bg: #000;
    --glow-color: #12436C;
}

body {
    background: var(--dark-bg);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Aclonica', sans-serif;
    background-image: url('../images/hero.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.navbar {
    background: transparent;
    padding: 4px 0;
    z-index: 10;
    position: fixed;
    display: block;
    top: 0;
    width: 100%;
}

.navbar-scroll{
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-brand {
    font-size: 2.5rem;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
    position: relative;
}

.navbar-brand img{
    width: 100px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    margin: 0 15px;
    padding: 10px 0 !important;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-active{
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.btn-buy {
    background-image: url('../images/button-top.svg');
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: none;
    background-size: cover;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-dex {
    background-image: url('../images/button-hero.svg');
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: none;
    background-size: cover;
    min-width: 200px;
    text-align: center;
}

.btn-dex:hover {
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }
    
    .btn-buy {
        margin-top: 10px;
        text-align: center;
    }
}

/* Loader styles */
 .loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    animation: float 15s infinite linear;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
}

.cloud1 {
    width: 120px;
    height: 50px;
    top: 15%;
    left: -120px;
    animation-delay: 0s;
}

.cloud1:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud1:after {
    width: 70px;
    height: 50px;
    top: -20px;
    right: 15px;
}

.cloud2 {
    width: 100px;
    height: 40px;
    top: 70%;
    left: -100px;
    animation-delay: -8s;
}

.cloud2:before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 20px;
}

.cloud2:after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 20px;
}

@keyframes float {
    0% {
        transform: translateX(-150px);
    }
    100% {
        transform: translateX(calc(100vw + 150px));
    }
}

.loader-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.logo-container {
    position: relative;
    margin-bottom: 40px;
    animation: logoFloat 3s infinite ease-in-out;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 4px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #FFD93D, #FF6B6B);
    background-size: 400% 400%;
    animation: gradientSpin 2s linear infinite;
    z-index: 1;
}

.logo-ring::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, #87CEEB 0%, #98FB98 50%, #F0E68C 100%);
    border-radius: 50%;
    z-index: -1;
}

.trio-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    animation: 
        bounce 2s infinite ease-in-out,
        rotate 8s infinite linear,
        pulse 1.5s infinite alternate;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.7));
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #FFD93D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.loading-section {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.loading-section img{
    width: 250px;
}

.trio-text {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #FFD93D, #FF6B6B);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.loading-text {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    animation: textPulse 2s infinite;
}

.loading-dots {
    display: inline-block;
    animation: dots 1.5s infinite;
}

.progress-container {
    width: 250px;
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FFD93D);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: progress 3s infinite ease-in-out, shimmer 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.percentage {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    animation: countUp 3s infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes gradientSpin {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.7));
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1));
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes dots {
    0%, 20% {
        color: rgba(44, 62, 80, 0);
        text-shadow: .25em 0 0 rgba(44, 62, 80, 0),
                    .5em 0 0 rgba(44, 62, 80, 0);
    }
    40% {
        color: #2c3e50;
        text-shadow: .25em 0 0 rgba(44, 62, 80, 0),
                    .5em 0 0 rgba(44, 62, 80, 0);
    }
    60% {
        text-shadow: .25em 0 0 #2c3e50,
                    .5em 0 0 rgba(44, 62, 80, 0);
    }
    80%, 100% {
        text-shadow: .25em 0 0 #2c3e50,
                    .5em 0 0 #2c3e50;
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes countUp {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sparkle effects */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #FFD93D, #FF6B6B);
    border-radius: 50%;
    animation: sparkle 2.5s infinite ease-in-out;
}

.sparkle:nth-child(1) { top: 25%; left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 35%; right: 20%; animation-delay: 0.7s; }
.sparkle:nth-child(3) { bottom: 45%; left: 25%; animation-delay: 1.4s; }
.sparkle:nth-child(4) { bottom: 25%; right: 30%; animation-delay: 2.1s; }
.sparkle:nth-child(5) { top: 60%; left: 10%; animation-delay: 0.3s; }
.sparkle:nth-child(6) { bottom: 60%; right: 15%; animation-delay: 1.8s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Floating elements */
.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #4ECDC4, #FFD93D);
    border-radius: 50%;
    animation: floatAround 6s infinite ease-in-out;
    opacity: 0.6;
}

.floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 4s; }

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    33% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
    }
    66% {
        transform: translateY(10px) translateX(-10px) scale(0.9);
    }
}


/* Keyframe animations */
@keyframes bounce {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    .loader {
        width: 120px;
        height: 120px;
    }
    
    .loading-text {
        font-size: 20px;
    }
}

.hero{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 15px;
}

section{
    height: 100%;
}

.hero h1 {
    color: #fff;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
}

.hero h3 {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0px;
}

.hero hr{
    border: 1px solid #fff;
    opacity: 1;
    margin: 5px;
}

.img-click img{
    cursor: pointer;
    width: 60px;
}

.btn-garamararam{
    border-radius: 13px;
    background-color: var(--primary-color);
    border: 3px solid #fff;
    font-size: 20px;
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    position: relative;
    display: inline-block;
}

.btn-garamararam:hover{
    background-color: #fff;
    color: var(--primary-color);
}

.hero h4{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
}

.btn-copy-transparent{
    position: relative;
    background: transparent;
    color: #fff;
    border: 0px;
}

.hero .hero-img{
    width: 300px;
    display: block;
    position: relative;
}

.hero-icon{
    width: 350px;
    /* margin: 0px auto; */
    display: block;
    position: relative;
    margin-right: 30px;
}


.about, .tokenomic, .how-to-buy, .roadmap, .gallery{
    padding: 100px 0px 100px;
}

.roadmap{
    padding-bottom: 0px;
}

.join-community{
    padding: 90px 0px;
}

.about h1, .title-text{
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.about p, .about ul li{
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
}

.about h3, .gallery h3{
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0px;
}

.text-primary{
    color: var(--primary-color) !important;
}

.tokenomic img{
    margin: 0px auto;
    display: block;
}

.tokenomic p{
    font-size: 36px;
}

.tokenomic .btn-tokenomic{
    border: 2px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-size: 23px;
    padding: 5px 20px;
    text-align: center;
    width: fit-content;
}

.tokenomic svg{
    width: 100%;
}

.w-fit{
    width: fit-content;
}

.card-content{
    border: 5px solid #fff;
    padding: 20px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    border-radius: 30px;
    background-color: var(--secondary-color);
}

.card-content h2{
    font-size: 29px;
    color: #fff;
    margin-bottom: 5px;
}

.card-content .phase{
    font-size: 27px;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.card-content .sub-title{
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.card-content .text-bottom{
    font-size: 24px;
    color: #fff;
    margin-bottom: 0px;
    text-align: center;
}

.card-content ul li{
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.card-content p{
    font-size: 18px;
    color: #fff;
    margin-bottom: 0px;
}

.card-content h4{
    font-size: 29px;
    color: #fff;
    margin-bottom: 20px;
}

.border-left-right{
    border-left: 2px solid #ffff;
    border-right: 2px solid #ffff;
}

.ml-4{
    margin-left: 1.5rem!important
}

.gallery-list {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}


.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .gallery-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

footer{
    background-color: transparent;
    padding: 10px 0px;
}

footer p{
    color: #fff;
    margin-bottom: 0px;
    font-size: 18px;
}

.container-fluid{
    padding-right: calc(5rem * .5);
    padding-left: calc(5rem * .5);
}

@media(max-width:1024px){
    .hero{
        height: 100%;
        padding: 50px 0px;
    }
}

@media(max-width:992px){
    .container-fluid {
        padding-right: calc(1.5rem * .5);
        padding-left: calc(1.5rem * .5);
    }
    .navbar{
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .navbar-collapse{
        padding-bottom: 10px;
        text-align: center;
    }

    .hero{
        height: 100%;
        padding: 120px 0px 50px;
    }

    .hero .hero-img{
        margin-bottom: 30px;
    }

    .hero .hero-icon{
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero .pt-4{
        padding-top: 0px !important;
    }

    .about img{
        margin: 0px auto;
        margin-bottom: 40px;
        display: block;
    }

    .about h1{
        font-size: 30px;
    }

    .tokenomic img{
        margin-bottom: 40px;
    }

    .tokenomic p, .card-content p{
        font-size: 17px;
    }

    .tokenomic h4{
        margin-top: 40px;
    }

    .title-text{
        font-size: 30px;
    }

    .about p, .about ul li{
        text-align: justify;
    }

    .about, .tokenomic, .how-to-buy, .roadmap {
        padding: 50px 0px 50px;
    }
}

@media(max-width:767px){
    .hero{
        height: 100%;
    }

    .hero .hero-img{
        margin-bottom: 30px;
        width: 150px;
    }

    .hero-icon{
        width: 90% !important;
        margin-right: 0px;
        margin: 0px auto;
    }

    .hero h1 {
        color: #fff;
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .hero h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .btn-dex{
        min-width: 100px;
    }

    .border-left-right{
        border-left: 0px solid #ffff;
        border-right: 0px solid #ffff;
        border-bottom: 2px solid #ffff;
        border-top: 2px solid #ffff;
    }

    .roadmap .col-12{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}