/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #00242b;
    overflow-x: hidden;
    margin: 0px;
    width: 100vw;
    height: 100vh;
}

/* Star Fall Animation */
.star-fall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.star-fall span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.015),
        0 0 0 8px rgba(255, 255, 255, 0.015), 0 0 20px rgba(255, 255, 255, 0.125);
    animation: star-fall-animate 5s linear infinite;
}

.star-fall span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

@keyframes star-fall-animate {
    0% {
        transform: rotate(315deg) translateX(0);
        opacity: 0.2;
    }
    70% {
        opacity: 0.2;
    }
    100% {
        transform: rotate(315deg) translateX(-1000px);
        opacity: 0;
    }
}

.star-fall span:nth-child(1) {
    top: 0;
    right: 0;
    left: initial;
    animation-delay: 0;
    animation-duration: 6s;
}

.star-fall span:nth-child(2) {
    top: 0;
    right: 80px;
    left: initial;
    animation-delay: 1.2s;
    animation-duration: 8s;
}

.star-fall span:nth-child(3) {
    top: 80px;
    right: 0px;
    left: initial;
    animation-delay: 2.4s;
    animation-duration: 7s;
}

.star-fall span:nth-child(4) {
    top: 0;
    right: 180px;
    left: initial;
    animation-delay: 3.6s;
    animation-duration: 6.5s;
}

.star-fall span:nth-child(5) {
    top: 0;
    right: 400px;
    left: initial;
    animation-delay: 4.8s;
    animation-duration: 8.5s;
}

.star-fall span:nth-child(6) {
    top: 0;
    right: 600px;
    left: initial;
    animation-delay: 6s;
    animation-duration: 9s;
}

.star-fall span:nth-child(7) {
    top: 300px;
    right: 0px;
    left: initial;
    animation-delay: 6s;
    animation-duration: 7.5s;
}

.star-fall span:nth-child(8) {
    top: 0px;
    right: 700px;
    left: initial;
    animation-delay: 8.4s;
    animation-duration: 6.5s;
}

.star-fall span:nth-child(9) {
    top: 0px;
    right: 1000px;
    left: initial;
    animation-delay: 4.5s;
    animation-duration: 9.5s;
}

.star-fall span:nth-child(10) {
    top: 0px;
    right: 1000px;
    left: initial;
    animation-delay: 16.5s;
    animation-duration: 9.5s;
}

#container {
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

/* Add background to header on mobile when scrolled */
@media (max-width: 768px) {
    header.scrolled {
        background-color: rgba(0, 36, 43, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(44, 206, 240, 0.3);
    }
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 769px) {
    .nav-center {
        margin-left: 2rem;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.logo:hover {
    color: #30d0f2;
    transform: scale(1.05);
}

.logo img {
    margin-right: 10px;
    transition: all 0.3s;
    cursor: pointer;
    animation: spin 10s linear infinite;
}

.logo img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    background-color: rgba(44, 206, 240, 0.1);
    border-radius: 20px;
    padding: 0.3rem;
    transition: all 0.3s ease;
}

nav.scrolled ul {
    background-color: rgba(0,36, 43, 5);
    box-shadow: 0 0 20px rgba(44, 206, 240, 0.4);
    border: 1px solid rgba(44, 206, 240, 0.3);
}

nav ul li {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}


nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    display: block;
}

nav ul li:hover a {
    color: #30d0f2;
    transform: scale(1.1);
}

nav ul li a.active {
    background-color: #2ccef0;
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(44, 206, 240, 0.5);
}

.ai-search-btn {
    background-color: #2ccef0;
    color: #fff;
    border: 2px solid #2ccef0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(44, 206, 240, 0.5);
}

.ai-search-btn:hover {
    background-color: #fff;
    color: #2ccef0;
    box-shadow: 0 0 15px rgba(44, 206, 240, 0.8);
    transform: scale(1.05);
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 2rem;
}

#vision,
#mission {
    min-height: 70vh;
}

#about {
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    min-height: 30vh;
    padding-bottom: 5rem;
}

#smart-contract {
    min-height: 30vh;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
}

.content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    position: relative;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-block;
    padding: 10px 5px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: bold;
}

.social-icon:hover {
    color: #00d4ff;
    transform: scale(1.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #30d0f2, #5d5cde);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #30d0f2, #5d5cde);
    border-radius: inherit;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #5d5cde, #30d0f2);
    transform: scale(1.05);
}

.search-engine {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2000;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #2ccef0;
    border-radius: 25px 0 0 25px;
    background-color: rgba(44, 206, 240, 0.1);
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
    background-color: rgba(44, 206, 240, 0.2);
    border-color: #2ccef0;
    box-shadow: 0 0 10px rgba(44, 206, 240, 0.4);
}

.search-btn {
    padding: 12px 25px;
    border: 2px solid #2ccef0;
    border-left: none;
    border-radius: 0 25px 25px 0;
    background-color: #2ccef0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(44, 206, 240, 0.5);
}

.search-btn:hover {
    background-color: #fff;
    color: #2ccef0;
    box-shadow: 0 0 15px rgba(44, 206, 240, 0.8);
    transform: scale(1.05);
}

.search-results {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 90%;
    background-color: rgba(44, 206, 240, 0.1);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 3000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.search-results.show {
    display: block;
}

.search-results::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.search-results h3 {
    margin-top: 0;
    color: #30d0f2;
    font-size: 18px;
}

.search-results p {
    margin-bottom: 10px;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(44, 206, 240, 0.1);
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(44, 206, 240, 0.3);
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(44, 206, 240, 0.5);
}

.contract-display {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(44, 206, 240, 0.2);
}

.contract-address-display {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    font-family: monospace;
    word-break: break-all;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.copy-result-btn {
    margin-top: 10px;
}

.search-content {
    margin-top: 20px;
}

#wave-canvas {
    position: fixed;
    bottom: -450px;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.7;
    pointer-events: none;
}

#wave1 {
    position: absolute;
    bottom: -450px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
}

#wave1 img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

#wave1 img:hover {
    transform: scale(1.1);
}

.search-results a {
    color: #2ccef0;
    text-decoration: none;
    transition: all 0.3s;
}

.search-results a:hover {
    color: #30d0f2;
    text-decoration: underline;
}

.contract-info {
    line-height: 1.8;
}

.contract-info h3 {
    color: #30d0f2;
    margin-bottom: 15px;
    font-size: 20px;
}

.contract-info .contract-content {
    color: #fff;
    line-height: 1.6;
}

.contract-info {
    text-align: center;
}

.contract-info .logo-section {
    margin-bottom: 20px;
}

.contract-info .info-row {
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(44, 206, 240, 0.2);
}

.contract-info .info-row:last-child {
    border-bottom: none;
}

.contract-info .links-section,
.contract-info .social-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(44, 206, 240, 0.3);
}

.contract-info strong {
    color: #30d0f2;
    font-weight: 600;
}

.contract-info .social-link {
    color: #2ccef0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 5px 0;
}

.contract-info .social-link:hover {
    color: #30d0f2;
    transform: scale(1.05);
}

.contract-info .contract-content a {
    color: #2ccef0;
    text-decoration: none;
    transition: all 0.3s;
}

.contract-info .contract-content a:hover {
    color: #30d0f2;
    text-decoration: underline;
}


.smart-contract-box {
    background-color: rgba(44, 206, 240, 0.1);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contract-address-box {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    font-family: monospace;
    word-break: break-all;
    text-align: center;
}

.btn {
    background: linear-gradient(135deg, #30d0f2, #5d5cde);
    color: #fff;
    border: 2px solid transparent;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(44, 206, 240, 0.5);
    text-decoration: none;
    background-clip: padding-box;
    position: relative;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #30d0f2, #5d5cde);
    border-radius: inherit;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.btn:hover {
    background: linear-gradient(135deg, #5d5cde, #30d0f2);
    color: #fff;
    box-shadow: 0 0 15px rgba(44, 206, 240, 0.8);
    transform: scale(1.05);
    text-decoration: none;
}

h1, h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

h1:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Gradient text for h2 elements */
h2 {
    background: linear-gradient(135deg, #2ccef0, #30d0f2, #5d5cde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hamburger menu */
.hamburger {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1001;
    position: relative;
}

/* Tokenomic Visualization Styles */
.tokenomic-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#tokenomic-scene-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.tokenomic-ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tokenomic-ui-overlay>* {
    pointer-events: auto;
}

.tokenomic-timeline-control {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 92, 222, 0.3);
    border-radius: 20px;
    padding: 20px;
}

.tokenomic-timeline-slider {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #5d5cde, #8b5cf6, #06b6d4);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    margin: 20px 0;
}

.tokenomic-timeline-thumb {
    position: absolute;
    top: -7px;
    width: 20px;
    height: 20px;
    background: #5d5cde;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 0 20px rgba(93, 92, 222, 0.6);
    transition: transform 0.2s ease;
}

.tokenomic-timeline-thumb:hover {
    transform: scale(1.2);
}

.tokenomic-timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #888;
    margin-top: 10px;
}

.tokenomic-data-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 92, 222, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 280px;
    max-width: 350px;
}

.tokenomic-metric-item {
    margin: 15px 0;
    padding: 10px;
    background: rgba(93, 92, 222, 0.1);
    border-radius: 8px;
    border-left: 3px solid #5d5cde;
}

.tokenomic-metric-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.tokenomic-metric-value {
    font-size: 18px;
    font-weight: bold;
    color: #5d5cde;
}

.tokenomic-info-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(93, 92, 222, 0.5);
    border-radius: 10px;
    padding: 15px;
    max-width: 300px;
    font-size: 14px;
    transform: translate(-50%, -100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 200;
}

.tokenomic-info-tooltip.visible {
    opacity: 1;
}

.tokenomic-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(93, 92, 222, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 200px;
}

.tokenomic-legend-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
}

.tokenomic-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.tokenomic-play-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5d5cde, #8b5cf6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(93, 92, 222, 0.4);
}

.tokenomic-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(93, 92, 222, 0.6);
}

/* About Box */
.about-box {
    background-color: rgba(44, 206, 240, 0.1);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-box h2 {
    color: #30d0f2;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-box p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Vision Section */
.vision-container {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-image {
    flex: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    perspective: 1500px;
}

.vision-image #scene {
    width: 200px;
    height: 200px;
    position: relative;
    cursor: grab;
    margin: 0 auto;
}

.vision-image #scene:active {
    cursor: grabbing;
}

.vision-image #cube {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
    transform: translateZ(-100px) rotateX(-15deg) rotateY(25deg);
}

.vision-image .face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(2, 12, 43, 0.75);
    border: 2px solid rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 28px rgba(0, 255, 255, 0.6) inset, 0 0 45px rgba(138, 255, 255, 0.6);
    backdrop-filter: blur(14px) brightness(75%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    user-select: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    text-shadow: 0 0 12px rgba(138, 255, 255, 0.6);
    color: #e0f8ff;
    font-family: 'Orbitron', sans-serif;
}

.vision-image .face[data-action]:hover {
    background: rgba(0, 255, 255, 0.18);
    box-shadow: 0 0 45px rgba(138, 255, 255, 0.6) inset, 0 0 70px rgba(138, 255, 255, 0.6), 0 0 100px rgba(255, 0, 255, 0.6);
}

.vision-image .face--front {
    transform: rotateY(0deg) translateZ(100px);
}

.vision-image .face--back {
    transform: rotateY(180deg) translateZ(100px);
}

.vision-image .face--right {
    transform: rotateY(90deg) translateZ(100px);
}

.vision-image .face--left {
    transform: rotateY(-90deg) translateZ(100px);
}

.vision-image .face--top {
    transform: rotateX(90deg) translateZ(100px);
}

.vision-image .face--bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

.vision-image svg {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.vision-image svg:hover {
    transform: scale(1.1);
}

.vision-text {
    flex: 1;
    padding: 20px;
}

.vision-text h2 {
    color: #30d0f2;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.vision-text p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vision-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-text li {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.vision-text li::before {
    content: "•";
    color: #30d0f2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Vision Section */
@media (max-width: 768px) {
    .vision-container {
        flex-direction: column;
        gap: 40px;
    }

    .vision-image,
    .vision-text {
        flex: none;
        width: 100%;
    }

    .vision-image {
        max-width: 300px;
        perspective: 1000px;
    }

    .vision-image #scene {
        width: 150px;
        height: 150px;
    }

    .vision-image #cube {
        transform: translateZ(-75px) rotateX(-15deg) rotateY(25deg);
    }

    .vision-image .face {
        width: 150px;
        height: 150px;
        font-size: 1.2rem;
    }

    .vision-image .face--front {
        transform: rotateY(0deg) translateZ(75px);
    }

    .vision-image .face--back {
        transform: rotateY(180deg) translateZ(75px);
    }

    .vision-image .face--right {
        transform: rotateY(90deg) translateZ(75px);
    }

    .vision-image .face--left {
        transform: rotateY(-90deg) translateZ(75px);
    }

    .vision-image .face--top {
        transform: rotateX(90deg) translateZ(75px);
    }

    .vision-image .face--bottom {
        transform: rotateX(-90deg) translateZ(75px);
    }

    .vision-text {
        padding: 0;
        text-align: center;
    }

    .vision-text h2 {
        font-size: 1.8rem;
    }

    .vision-text p {
        font-size: 1rem;
    }

    .vision-text li {
        font-size: 0.9rem;
    }
}

/* Mission Section */
.mission-container {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-text {
    flex: 1;
    padding: 20px;
}

.mission-text h2 {
    color: #30d0f2;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.mission-text p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mission-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-text li {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.mission-text li::before {
    content: "•";
    color: #30d0f2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.mission-image {
    flex: 1;
    text-align: center;
}

.mission-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 206, 240, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.mission-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 206, 240, 0.3);
}

/* Responsive Mission Section */
@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        gap: 20px;
    }

    .mission-text,
    .mission-image {
        flex: none;
        width: 100%;
    }

    .mission-text {
        padding: 0;
        text-align: center;
    }

    .mission-text h2 {
        font-size: 1.8rem;
    }

    .mission-text p {
        font-size: 1rem;
    }

    .mission-text li {
        font-size: 0.9rem;
    }
}

/* Tokenomics Grid */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Tokenomics Responsive */
@media (max-width: 768px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .tokenomics-box {
        padding: 15px;
        text-align: center;
    }

    .tokenomics-box h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .tokenomics-box p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .tokenomics-grid {
        gap: 10px;
        margin-top: 15px;
    }

    .tokenomics-box {
        padding: 12px;
    }

    .tokenomics-box h3 {
        font-size: 0.9rem;
    }

    .tokenomics-box p {
        font-size: 0.85rem;
    }
}

.tokenomics-box {
    background-color: rgba(44, 206, 240, 0.1);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tokenomics-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 206, 240, 0.2);
    border-color: rgba(44, 206, 240, 0.5);
}

.tokenomics-box h3 {
    color: #30d0f2;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.tokenomics-box p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* AI Intelligence Grid */
.ai-intelligence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* AI Intelligence Box Styles */
.ai-box {
    background-color: rgba(44, 206, 240, 0.1);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.ai-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #30d0f2;
    transition: transform 0.3s ease;
}

.ai-icon:hover {
    transform: scale(1.2);
}

.ai-learn-more-btn {
    background: linear-gradient(135deg, #30d0f2, #5d5cde);
    color: #fff;
    border: 2px solid transparent;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
    background-clip: padding-box;
    position: relative;
}

.ai-learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #30d0f2, #5d5cde);
    border-radius: inherit;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.ai-learn-more-btn:hover {
    background: linear-gradient(135deg, #5d5cde, #30d0f2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 206, 240, 0.4);
}

/* AI Modal Styles */
.ai-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-modal-overlay.show {
    opacity: 1;
}

.ai-modal {
    background: rgba(0, 36, 43, 0.95);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.ai-modal-overlay.show .ai-modal {
    transform: scale(1);
}

.ai-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(44, 206, 240, 0.2);
}

.ai-modal-header h2 {
    color: #30d0f2;
    margin: 0;
    font-size: 1.8rem;
}

.ai-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ai-modal-close:hover {
    background-color: rgba(44, 206, 240, 0.2);
    color: #30d0f2;
}

.ai-modal-content {
    padding: 30px;
    color: #fff;
    line-height: 1.6;
}

.ai-modal-content h2 {
    color: #30d0f2;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.ai-modal-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.ai-modal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.ai-modal-content li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.ai-modal-content strong {
    color: #30d0f2;
}

/* AI Modal Responsive */
@media (max-width: 768px) {
    .ai-modal {
        width: 95%;
        max-height: 90vh;
    }

    .ai-modal-header {
        padding: 15px 20px;
    }

    .ai-modal-header h2 {
        font-size: 1.5rem;
    }

    .ai-modal-content {
        padding: 20px;
    }

    .ai-modal-content h2 {
        font-size: 1.2rem;
    }
}

.ai-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 206, 240, 0.2);
    border-color: rgba(44, 206, 240, 0.5);
}

.ai-box h3 {
    color: #30d0f2;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.ai-box p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Community Box Styles */
.community-box {
    background-color: rgba(44, 206, 240, 0.1);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.community-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 206, 240, 0.2);
    border-color: rgba(44, 206, 240, 0.5);
}

.community-box .ai-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #30d0f2;
    transition: transform 0.3s ease;
}

.community-box .ai-icon:hover {
    transform: scale(1.2);
}

.community-box .ai-icon .social-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-box .ai-icon .social-icon svg {
    width: 100%;
    height: 100%;
}

.community-box h3 {
    color: #30d0f2;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.community-box p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* AI Intelligence Responsive */
@media (max-width: 768px) {
    .ai-intelligence-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .ai-box {
        padding: 15px;
        text-align: center;
    }

    .ai-box h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .ai-box p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .community-box {
        padding: 15px;
        text-align: center;
    }

    .community-box h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .community-box p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .ai-intelligence-grid {
        gap: 10px;
        margin-top: 15px;
    }

    .ai-box {
        padding: 12px;
    }

    .ai-box h3 {
        font-size: 0.9rem;
    }

    .ai-box p {
        font-size: 0.85rem;
    }

    .community-grid {
        gap: 10px;
        margin-top: 15px;
    }

    .community-box {
        padding: 12px;
    }

    .community-box h3 {
        font-size: 0.9rem;
    }

    .community-box p {
        font-size: 0.85rem;
    }
}

/* Roadmap Timeline */
.roadmap-timeline {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
}

.roadmap-timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #38bdf8, #a78bfa);
    transform: translateX(-50%);
}

.roadmap-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.roadmap-timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-timeline-icon {
    width: 50px;
    height: 50px;
    background: #1e293b;
    border: 3px solid #38bdf8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #38bdf8;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.roadmap-timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    width: 40%;
    position: relative;
}

.roadmap-timeline-content h3 {
    margin-bottom: 8px;
    color: #fbbf24;
}

.roadmap-timeline-content p {
    line-height: 1.5;
}

.roadmap-timeline-content .roadmap-date {
    font-size: 0.9rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 20px;
}

/* Alternate positioning */
.roadmap-timeline-item:nth-child(odd) .roadmap-timeline-content {
    right: -55%;
}

.roadmap-timeline-item:nth-child(even) .roadmap-timeline-content {
    left: 0;
}

/* Footer Styles */
#footer {
    margin-top: 80vh;
    z-index: 500;
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding: 5rem 2vw;
    position: relative;
    gap: 2rem;
}

#footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0) 5%,
        rgba(0, 0, 0, 0.3) 20%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.8) 40%,
        rgba(0, 0, 0, 1) 50%,
        rgb(0, 0, 0)
    );
    z-index: -7;
}

.footer-backdrop {
    z-index: -5;
    position: absolute;
    inset: 0;

    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);

    mask-image: linear-gradient(
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.5) 10%,
        rgba(0, 0, 0, 0.8) 20%,
        rgba(0, 0, 0, 1) 30%,
        rgb(0, 0, 0)
    );

    -webkit-mask-image: linear-gradient(
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.5) 10%,
        rgba(0, 0, 0, 0.8) 20%,
        rgba(0, 0, 0, 1) 30%,
        rgb(0, 0, 0)
    );
}

.footer-col {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.2rem 3.2rem;
    width: 28%;
}

.footer-col2,
.footer-col3 {
    background-color: rgba(44, 206, 240, 0.1);
    border: 1px solid rgba(44, 206, 240, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-col h3 {
    font-weight: 500;
    font-size: 2.4rem;
    margin: 0 0 0.5rem 0;
    color: #30d0f2;
}

.footer-col p {
    margin: 0.5rem 0;
    color: #fff;
    font-size: 1.2rem;
}

.footer-col p:first-child {
    margin-top: 0;
    font-weight: 600;
    color: #30d0f2;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #30d0f2;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    margin: 1rem 0;
}

.footer-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-link:hover .social-icon {
    transform: scale(1.2);
}

.footer-link .social-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-link .social-icon svg {
    width: 100%;
    height: 100%;
}

/* Enhanced Interactive List Styles */
.techwave_fn_interactive_list {
    margin: 60px auto;
    padding: 0 20px;
    max-width: 1400px;
    width: 100%;
}

.techwave_fn_interactive_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    justify-items: center;
    align-items: stretch;
}

.techwave_fn_interactive_list li {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 400px;
}

.techwave_fn_interactive_list .item {
    background: linear-gradient(135deg,
        rgba(44, 206, 240, 0.15) 0%,
        rgba(44, 206, 240, 0.08) 50%,
        rgba(44, 206, 240, 0.05) 100%);
    border: 2px solid rgba(44, 206, 240, 0.4);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(44, 206, 240, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.techwave_fn_interactive_list .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2ccef0, #30d0f2, #2ccef0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 10px 10px;
}

.techwave_fn_interactive_list .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(44, 206, 240, 0.05) 0%,
        rgba(48, 208, 242, 0.02) 50%,
        rgba(44, 206, 240, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    pointer-events: none;
}

.techwave_fn_interactive_list .item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(44, 206, 240, 0.3),
        0 0 40px rgba(44, 206, 240, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(44, 206, 240, 0.7);
}

.techwave_fn_interactive_list .item:hover::before {
    opacity: 1;
    left: 0;
}

.techwave_fn_interactive_list .item:hover::after {
    opacity: 1;
}

.techwave_fn_interactive_list .item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
    z-index: 2;
}

.techwave_fn_interactive_list .icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2ccef0 0%, #30d0f2 50%, #2ccef0 100%);
    border-radius: 24px;
    box-shadow:
        0 12px 32px rgba(44, 206, 240, 0.4),
        0 4px 16px rgba(44, 206, 240, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.techwave_fn_interactive_list .icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #2ccef0, #30d0f2, #2ccef0);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.techwave_fn_interactive_list .item:hover .icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow:
        0 20px 48px rgba(44, 206, 240, 0.5),
        0 8px 24px rgba(44, 206, 240, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.techwave_fn_interactive_list .item:hover .icon::before {
    opacity: 0.6;
}

.techwave_fn_interactive_list .icon svg {
    width: 44px;
    height: 44px;
    color: #0f0f0f;
    transition: all 0.3s ease;
}

.techwave_fn_interactive_list .item:hover .icon svg {
    color: #000;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.techwave_fn_interactive_list .title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 20px;
    color: #2ccef0;
    text-shadow:
        0 2px 8px rgba(44, 206, 240, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.techwave_fn_interactive_list .item:hover .title {
    color: #30d0f2;
    text-shadow:
        0 4px 16px rgba(44, 206, 240, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.techwave_fn_interactive_list .desc {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 28px;
    color: #f0f0f0;
    opacity: 0.95;
    max-width: 320px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.techwave_fn_interactive_list .item:hover .desc {
    color: #fff;
    opacity: 1;
    transform: translateY(-1px);
}

.techwave_fn_interactive_list .arrow {
    width: 28px;
    height: 28px;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.techwave_fn_interactive_list .item:hover .arrow {
    opacity: 1;
    transform: translateX(6px) scale(1.1);
}

/* Product Swiper Styles */
.product-swiper .swiper-slide img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-swiper .swiper-slide img:hover {
    transform: scale(1.1);
}

/* Product Swiper Mobile Styles */
@media (max-width: 768px) {
    .product-slider {
        overflow: hidden;
        position: relative;
    }

    .product-swiper {
        overflow: hidden;
    }

    .product-swiper .swiper-slide img {
        width: 100%;
        height: auto;
        max-width: 250px;
        margin: 0 auto;
        display: block;
        object-fit: contain;
    }

    .product-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 300px; /* Adjust height as needed */
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .techwave_fn_interactive_list {
        max-width: 1100px;
        padding: 0 15px;
        margin-bottom: 60px;
    }

    .techwave_fn_interactive_list ul {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .techwave_fn_interactive_list {
        margin: 40px auto 120px auto;
        padding: 0 10px;
        max-width: 600px;
    }

    .techwave_fn_interactive_list ul {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .techwave_fn_interactive_list .item {
        padding: 32px 24px;
        max-width: none;
    }

    .techwave_fn_interactive_list .icon {
        width: 72px;
        height: 72px;
        margin-bottom: 24px;
    }

    .techwave_fn_interactive_list .icon svg {
        width: 36px;
        height: 36px;
    }

    .techwave_fn_interactive_list .title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .techwave_fn_interactive_list .desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .techwave_fn_interactive_list .arrow {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .techwave_fn_interactive_list {
        margin: 30px auto 140px auto;
        padding: 0 8px;
    }

    .techwave_fn_interactive_list .item {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .techwave_fn_interactive_list .item::before {
        height: 2px;
    }

    .techwave_fn_interactive_list .icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .techwave_fn_interactive_list .icon svg {
        width: 32px;
        height: 32px;
    }

    .techwave_fn_interactive_list .title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .techwave_fn_interactive_list .desc {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #30d0f2, #5d5cde);
    border: 2px solid transparent;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(44, 206, 240, 0.3);
    background-clip: padding-box;
}

.back-to-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #30d0f2, #5d5cde);
    border-radius: inherit;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.back-to-top-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 25px rgba(44, 206, 240, 0.5);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn svg {
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover svg {
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-center {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        flex-direction: column;
        padding: 2rem 0;
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-center.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-center .nav-menu {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 1rem;
        width: 90vw;
        max-width: 400px;
    }

    .nav-center.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .nav-menu li {
        margin: 0;
    }

    .ai-search-btn {
        align-self: center;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
        align-items: center;
    }

    h1, h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .tokenomic-timeline-control {
        width: 95%;
        padding: 15px;
    }

    .tokenomic-data-panel {
        top: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 15px;
    }

    .tokenomic-legend {
        display: none;
    }

    /* Tokenomics Visualization Responsive */
    #tokenomic-scene-container {
        height: 60vh;
    }

    .tokenomic-data-panel {
        width: 90%;
        padding: 15px;
        margin: 10px auto;
    }

    .tokenomic-timeline-control {
        width: 95%;
        padding: 15px;
        bottom: 20px;
    }

    .tokenomic-timeline-labels {
        font-size: 8px;
    }

    /* Roadmap Responsive */
    .roadmap-timeline-line {
        left: 30px;
    }
    .roadmap-timeline-icon {
        left: 0;
        transform: translateX(0);
    }
    .roadmap-timeline-content {
        width: calc(100% - 80px);
        left: 75px !important;
    }

    /* Footer Responsive */
    footer {
        flex-direction: column;
        padding: 2rem 3vw;
        height: auto;
        min-height: 70vh;
    }

    .social-links .social-icon {
        width: 48px;
        height: 48px;
    }

    .footer-mobile-top {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-mobile-bottom {
        display: flex;
        justify-content: center;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 0;
        padding: 1.5rem;
        text-align: center;
    }

    .footer-col1 {
        text-align: center;
        margin: 0 auto;
        max-width: 400px;
    }

    .footer-mobile-top .footer-col {
        background-color: rgba(44, 206, 240, 0.08);
        border: 1px solid rgba(44, 206, 240, 0.2);
        border-radius: 12px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .footer-mobile-bottom .footer-col {
        background-color: rgba(44, 206, 240, 0.08);
        border: 1px solid rgba(44, 206, 240, 0.2);
        border-radius: 12px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        max-width: 100%;
    }

    .footer-col h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        color: #30d0f2;
    }

    .footer-col p {
        font-size: 0.95rem;
        margin: 0.6rem 0;
        line-height: 1.4;
    }

    .footer-social {
        margin: 1.2rem 0;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-link .social-icon {
        width: 50px;
        height: 50px;
    }

    /* Fix floating text and alignment in products section */
    #products .content {
        text-align: center;
        padding: 1rem;
        max-width: 100%;
        margin: 0 auto;
        float: none;
    }

    #products .content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
        float: none;
    }

    #products .content p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        float: none;
    }

    /* Ensure product slider container doesn't overflow */
    .product-slider {
        width: 100%;
        overflow: hidden;
        margin: 0 auto;
        float: none;
    }

    /* Back to Top Button Mobile */
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    nav ul li {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    h1, h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .social-links {
        display: flex;
        order: -1;
    }

    .social-links a:nth-child(4),
    .social-links a:nth-child(5),
    .social-links a:nth-child(6) {
        display: none;
    }

    #home .content {
        display: flex;
        flex-direction: column;
    }

    /* Back to Top Button Small Mobile */
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}