/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00f5ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-content {
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.contract-section {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.contract-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.contract-label {
    display: block;
    font-size: 0.9rem;
    color: #00f5ff;
    margin-bottom: 0.5rem;
}

.contract-address-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contract-address {
    font-family: monospace;
    font-size: 0.9rem;
    color: #fff;
    word-break: break-all;
    flex: 1;
}

.copy-btn {
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Enhanced Button Styles */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover .btn-glow {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 245, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
}

.btn-whitepaper {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-whitepaper:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.token-info {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.token-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #00f5ff;
    text-transform: uppercase;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Enhanced Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover::before {
    opacity: 1;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #00f5ff;
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
}

.rotate-3d {
    animation: rotate3d 10s linear infinite;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.floating-card:hover .card-shine {
    left: 100%;
}

.floating-card i {
    font-size: 1.8rem;
    color: #00f5ff;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.floating-card:hover i {
    color: #ff00ff;
    transform: scale(1.2);
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 2px solid rgba(0, 245, 255, 0.3);
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 15%;
    right: 25%;
    animation-duration: 15s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 20%;
    transform: rotate(45deg);
    animation-duration: 25s;
    animation-direction: reverse;
}

.shape-3 {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(255, 0, 255, 0.3);
    top: 30%;
    right: 10%;
    animation-duration: 18s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    bottom: 20%;
    left: 10%;
    animation-duration: 22s;
    animation-direction: reverse;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 4.5s;
}

/* Enhanced Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite alternate;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 245, 255, 0.05) 25%, rgba(0, 245, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 245, 255, 0.05) 75%, rgba(0, 245, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 0, 255, 0.05) 25%, rgba(255, 0, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 0, 255, 0.05) 75%, rgba(255, 0, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    animation: matrix-move 20s linear infinite;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: grid-move 15s linear infinite;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Enhanced Section Headers */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    animation: text-glow 3s ease-in-out infinite alternate;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 2px;
    animation: border-glow 2s ease-in-out infinite alternate;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(0, 245, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    animation: floating-orbs 12s ease-in-out infinite alternate;
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(0, 245, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 245, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 0, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 0, 255, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    animation: pattern-move 20s linear infinite;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: #fff;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: #fff;
    opacity: 0.8;
}

/* Vision Mission */
.vision-mission {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 127, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
    animation: vision-glow 15s ease-in-out infinite alternate;
    z-index: 1;
}

.vision-mission::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 245, 255, 0.02) 2px,
            rgba(0, 245, 255, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 255, 0.02) 2px,
            rgba(255, 0, 255, 0.02) 4px
        );
    animation: grid-pulse 8s ease-in-out infinite;
    z-index: 1;
}

.vision-mission .container {
    position: relative;
    z-index: 2;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vm-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.vm-card p {
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(255, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(0, 255, 127, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.06) 0%, transparent 30%);
    animation: feature-float 18s ease-in-out infinite;
    z-index: 1;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 245, 255, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.03) 2px, transparent 2px);
    background-size: 80px 80px;
    animation: dot-drift 25s linear infinite;
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Enhanced Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    border-color: #00f5ff;
    box-shadow: 
        0 25px 50px rgba(0, 245, 255, 0.25),
        0 0 50px rgba(0, 245, 255, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover .feature-icon::before {
    left: 100%;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.4);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #fff;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: #00f5ff;
    transform: translateY(-2px);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Roadmap Section */
.roadmap-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(0, 245, 255, 0.05) 0%, transparent 30%, rgba(255, 0, 255, 0.05) 70%, transparent 100%),
        linear-gradient(-45deg, rgba(255, 69, 0, 0.03) 0%, transparent 50%, rgba(0, 255, 127, 0.03) 100%);
    animation: roadmap-sweep 20s ease-in-out infinite alternate;
    z-index: 1;
}

.roadmap-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 245, 255, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 0, 255, 0.02) 1px, transparent 1px);
    background-size: 120px 120px;
    animation: roadmap-grid 30s linear infinite;
    z-index: 1;
}

.roadmap-section .container {
    position: relative;
    z-index: 2;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00f5ff, #ff00ff);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00f5ff;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    color: #fff;
}

.timeline-content li {
    padding: 0.5rem 0;
    opacity: 0.9;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff00ff;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 40% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 100%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 50%, rgba(255, 0, 255, 0.06) 0%, transparent 50%);
    animation: token-glow 16s ease-in-out infinite alternate;
    z-index: 1;
}

.tokenomics-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(0, 245, 255, 0.02) 15deg,
            transparent 30deg,
            rgba(255, 0, 255, 0.02) 45deg,
            transparent 60deg
        );
    background-size: 200px 200px;
    animation: conic-spin 40s linear infinite;
    z-index: 1;
}

.tokenomics-section .container {
    position: relative;
    z-index: 2;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.token-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item .label {
    font-size: 0.9rem;
    color: #00f5ff;
    text-transform: uppercase;
}

.info-item .value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.utility-grid h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
}

.utility-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.utility-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.utility-item:hover {
    border-color: #00f5ff;
    transform: translateX(5px);
}

.utility-item i {
    color: #ff00ff;
    font-size: 1.2rem;
}

.utility-item span {
    color: #fff;
    font-weight: 500;
}

/* Utility Platforms */
.utility-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.utility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(138, 43, 226, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(255, 69, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.06) 0%, transparent 30%);
    animation: utility-pulse 14s ease-in-out infinite alternate;
    z-index: 1;
}

.utility-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(0, 245, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(0, 245, 255, 0.02) 87.5%, rgba(0, 245, 255, 0.02)),
        linear-gradient(150deg, rgba(255, 0, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(255, 0, 255, 0.02) 87.5%, rgba(255, 0, 255, 0.02));
    background-size: 100px 100px;
    animation: utility-slide 22s linear infinite;
    z-index: 1;
}

.utility-section .container {
    position: relative;
    z-index: 2;
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.utility-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.utility-card:hover {
    transform: translateY(-5px);
    border-color: #ff00ff;
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.2);
}

.utility-card i {
    font-size: 2rem;
    color: #00f5ff;
    margin-bottom: 1rem;
}

.utility-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.utility-card p {
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(0, 255, 127, 0.06) 0%, transparent 30%);
    animation: contact-wave 12s ease-in-out infinite alternate;
    z-index: 1;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-radial-gradient(
            circle at 50% 50%,
            transparent 0px,
            transparent 40px,
            rgba(0, 245, 255, 0.02) 40px,
            rgba(0, 245, 255, 0.02) 42px,
            transparent 42px,
            transparent 80px
        );
    animation: ripple-effect 18s ease-in-out infinite;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #00f5ff;
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.2);
}

.social-link i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: #fff;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: #fff;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(2deg);
    }
    66% {
        transform: translateY(-25px) rotate(-2deg);
    }
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(5deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(-5deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(0deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    }
    33% {
        background: 
            radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    }
    66% {
        background: 
            radial-gradient(circle at 40% 60%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 60% 40%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    }
    100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    }
}

@keyframes matrix-move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50px);
    }
}

@keyframes grid-move {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-100px) translateY(-100px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 245, 255, 0.6);
    }
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 245, 255, 0.8), 0 0 30px rgba(255, 0, 255, 0.4);
    }
}

/* New Background Animations */
@keyframes floating-orbs {
    0% {
        background: 
            radial-gradient(circle at 30% 70%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 70% 30%, rgba(0, 245, 255, 0.12) 0%, transparent 60%),
            radial-gradient(circle at 30% 70%, rgba(255, 0, 255, 0.12) 0%, transparent 60%);
    }
    100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    }
}

@keyframes pattern-move {
    0% {
        background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    }
    100% {
        background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px;
    }
}

@keyframes vision-glow {
    0% {
        background: 
            radial-gradient(ellipse at 20% 20%, rgba(0, 255, 127, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(ellipse at 80% 80%, rgba(0, 255, 127, 0.15) 0%, transparent 60%),
            radial-gradient(ellipse at 20% 20%, rgba(255, 69, 0, 0.15) 0%, transparent 60%),
            radial-gradient(ellipse at 50% 50%, rgba(138, 43, 226, 0.12) 0%, transparent 60%);
    }
    100% {
        background: 
            radial-gradient(ellipse at 50% 10%, rgba(0, 255, 127, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 90%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 10% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
    }
}

@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes feature-float {
    0% {
        background: 
            radial-gradient(circle at 10% 10%, rgba(255, 0, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 90% 90%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 50% 20%, rgba(0, 255, 127, 0.06) 0%, transparent 30%),
            radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.06) 0%, transparent 30%);
    }
    33% {
        background: 
            radial-gradient(circle at 90% 90%, rgba(255, 0, 255, 0.12) 0%, transparent 45%),
            radial-gradient(circle at 10% 10%, rgba(0, 245, 255, 0.12) 0%, transparent 45%),
            radial-gradient(circle at 20% 80%, rgba(0, 255, 127, 0.08) 0%, transparent 35%),
            radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.08) 0%, transparent 35%);
    }
    66% {
        background: 
            radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 25% 75%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 75% 25%, rgba(0, 255, 127, 0.06) 0%, transparent 30%),
            radial-gradient(circle at 10% 90%, rgba(255, 69, 0, 0.06) 0%, transparent 30%);
    }
    100% {
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 60% 10%, rgba(0, 255, 127, 0.06) 0%, transparent 30%),
            radial-gradient(circle at 40% 90%, rgba(255, 69, 0, 0.06) 0%, transparent 30%);
    }
}

@keyframes dot-drift {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 80px 80px, -80px -80px;
    }
}

@keyframes roadmap-sweep {
    0% {
        background: 
            linear-gradient(45deg, rgba(0, 245, 255, 0.05) 0%, transparent 30%, rgba(255, 0, 255, 0.05) 70%, transparent 100%),
            linear-gradient(-45deg, rgba(255, 69, 0, 0.03) 0%, transparent 50%, rgba(0, 255, 127, 0.03) 100%);
    }
    50% {
        background: 
            linear-gradient(135deg, rgba(0, 245, 255, 0.08) 0%, transparent 40%, rgba(255, 0, 255, 0.08) 60%, transparent 100%),
            linear-gradient(45deg, rgba(255, 69, 0, 0.05) 0%, transparent 60%, rgba(0, 255, 127, 0.05) 100%);
    }
    100% {
        background: 
            linear-gradient(225deg, rgba(0, 245, 255, 0.05) 0%, transparent 30%, rgba(255, 0, 255, 0.05) 70%, transparent 100%),
            linear-gradient(135deg, rgba(255, 69, 0, 0.03) 0%, transparent 50%, rgba(0, 255, 127, 0.03) 100%);
    }
}

@keyframes roadmap-grid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 120px 120px;
    }
}

@keyframes token-glow {
    0% {
        background: 
            radial-gradient(ellipse at 40% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 60% 100%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 0% 50%, rgba(255, 0, 255, 0.06) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(ellipse at 60% 100%, rgba(255, 215, 0, 0.12) 0%, transparent 60%),
            radial-gradient(ellipse at 40% 0%, rgba(0, 245, 255, 0.12) 0%, transparent 60%),
            radial-gradient(ellipse at 100% 50%, rgba(255, 0, 255, 0.08) 0%, transparent 60%);
    }
    100% {
        background: 
            radial-gradient(ellipse at 0% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 100% 50%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 0%, rgba(255, 0, 255, 0.06) 0%, transparent 50%);
    }
}

@keyframes conic-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes utility-pulse {
    0% {
        background: 
            radial-gradient(circle at 15% 15%, rgba(138, 43, 226, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 85% 85%, rgba(255, 69, 0, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.06) 0%, transparent 30%);
    }
    50% {
        background: 
            radial-gradient(circle at 85% 85%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 15% 15%, rgba(255, 69, 0, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.10) 0%, transparent 40%);
    }
    100% {
        background: 
            radial-gradient(circle at 50% 85%, rgba(138, 43, 226, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 50% 15%, rgba(255, 69, 0, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 15% 50%, rgba(0, 245, 255, 0.06) 0%, transparent 30%);
    }
}

@keyframes utility-slide {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 100px 100px, -100px -100px;
    }
}

@keyframes contact-wave {
    0% {
        background: 
            radial-gradient(circle at 25% 25%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 50% 10%, rgba(0, 255, 127, 0.06) 0%, transparent 30%);
    }
    33% {
        background: 
            radial-gradient(circle at 75% 75%, rgba(0, 245, 255, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 25% 25%, rgba(255, 0, 255, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 50% 90%, rgba(0, 255, 127, 0.08) 0%, transparent 40%);
    }
    66% {
        background: 
            radial-gradient(circle at 10% 90%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 90% 10%, rgba(255, 0, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.06) 0%, transparent 30%);
    }
    100% {
        background: 
            radial-gradient(circle at 50% 25%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 50% 75%, rgba(255, 0, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 25% 50%, rgba(0, 255, 127, 0.06) 0%, transparent 30%);
    }
}

@keyframes ripple-effect {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.3;
    }
}

/* Copy Success Animation */
.copy-success {
    animation: copySuccess 0.3s ease;
}

@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); background: #4CAF50; }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .token-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 2rem;
        margin-right: 0;
        padding-left: 2rem;
        padding-right: 1rem;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .token-info-grid {
        grid-template-columns: 1fr;
    }
    
    .utility-items {
        grid-template-columns: 1fr;
    }
}


/* Updated Tokenomics Section with Image */
.tokenomics-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 40% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 100%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 50%, rgba(255, 0, 255, 0.06) 0%, transparent 50%);
    animation: token-glow 16s ease-in-out infinite alternate;
    z-index: 1;
}

.tokenomics-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(0, 245, 255, 0.02) 15deg,
            transparent 30deg,
            rgba(255, 0, 255, 0.02) 45deg,
            transparent 60deg
        );
    background-size: 200px 200px;
    animation: conic-spin 40s linear infinite;
    z-index: 1;
}

.tokenomics-section .container {
    position: relative;
    z-index: 2;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Updated token details section */
.token-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.token-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    border-color: #00f5ff;
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.15);
}

.info-item .label {
    font-size: 0.9rem;
    color: #00f5ff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-item .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

/* Tokenomics Image Styles */
.tokenomics-image {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tokenomics-image:hover::before {
    opacity: 1;
}

.tokenomics-image:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00f5ff;
    box-shadow: 
        0 25px 50px rgba(0, 245, 255, 0.25),
        0 0 50px rgba(0, 245, 255, 0.15);
}

.distribution-chart {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.distribution-chart:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.2);
}

.image-caption {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #00f5ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right side utility section */
.utility-section-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.utility-grid h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.utility-grid h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 2px;
}

.utility-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.utility-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.utility-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.utility-item:hover::before {
    transform: scaleY(1);
}

.utility-item:hover {
    border-color: #00f5ff;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.2);
}

.utility-item i {
    color: #ff00ff;
    font-size: 1.5rem;
    min-width: 24px;
    transition: all 0.3s ease;
}

.utility-item:hover i {
    color: #00f5ff;
    transform: scale(1.2);
}

.utility-item span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.utility-item:hover span {
    color: #00f5ff;
}

/* Enhanced responsiveness */
@media (max-width: 1024px) {
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .token-details {
        gap: 2rem;
    }
    
    .distribution-chart {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .tokenomics-section {
        padding: 4rem 0;
    }
    
    .token-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tokenomics-image {
        padding: 1.5rem;
    }
    
    .distribution-chart {
        max-width: 280px;
    }
    
    .utility-items {
        gap: 1rem;
    }
    
    .utility-item {
        padding: 1rem;
    }
    
    .utility-grid h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tokenomics-content {
        gap: 2rem;
    }
    
    .token-details {
        gap: 1.5rem;
    }
    
    .tokenomics-image {
        padding: 1rem;
    }
    
    .distribution-chart {
        max-width: 100%;
    }
    
    .image-caption {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .utility-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .utility-item i {
        font-size: 1.8rem;
    }
}