/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f7931a, #ffffff, #09eab4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(247, 147, 26, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(247, 147, 26, 0.5));
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #f7931a, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #09eab4;
    text-shadow: 0 0 10px rgba(9, 234, 180, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #f7931a, #09eab4);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.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;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 3s linear infinite;
}

.galaxy-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(13, 87, 155, 0.3) 0%, 
        rgba(44, 36, 67, 0.2) 30%, 
        rgba(0, 0, 0, 0.8) 70%, 
        #000 100%);
    animation: galaxyPulse 8s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes galaxyPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(247, 147, 26, 0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f7931a 0%, #ffffff 50%, #09eab4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(247, 147, 26, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(247, 147, 26, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(247, 147, 26, 0.8)); }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #09eab4;
    text-shadow: 0 0 10px rgba(9, 234, 180, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #f7931a, #ff6b35);
    color: #fff;
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 147, 26, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #09eab4;
    border: 2px solid #09eab4;
    box-shadow: 0 10px 30px rgba(9, 234, 180, 0.2);
}

.btn-secondary:hover {
    background: #09eab4;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(9, 234, 180, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7931a;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #09eab4;
    border-bottom: 2px solid #09eab4;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(247, 147, 26, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 80% 50%, rgba(9, 234, 180, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(247, 147, 26, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f7931a;
}

.about-card p {
    color: #ccc;
    line-height: 1.8;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chart-container {
    display: flex;
    justify-content: center;
}

.chart {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(247, 147, 26, 0.3);
}

.diamond-hands-chart {
    background: conic-gradient(
        from 0deg,
        #f7931a 0deg 360deg
    );
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.chart-center {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #000 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(247, 147, 26, 0.5);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.chart-label {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    color: #f7931a;
    text-shadow: 0 0 20px rgba(247, 147, 26, 0.5);
    line-height: 1.2;
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 147, 26, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(247, 147, 26, 0.3);
}

.diamond-hands-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(247, 147, 26, 0.2);
}

.diamond-hands-item:hover {
    background: rgba(247, 147, 26, 0.1);
    border-color: rgba(247, 147, 26, 0.4);
    transform: translateX(15px);
}

.diamond-hands-item:hover .detail-icon {
    background: rgba(247, 147, 26, 0.2);
    border-color: rgba(247, 147, 26, 0.5);
    transform: scale(1.1);
}

.detail-info h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.detail-info p {
    color: #ccc;
    font-size: 0.9rem;
}

/* KOLs Section */
.kols {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a1a 100%);
    position: relative;
}

.kols::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23f7931a" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23f7931a" opacity="0.1"/></svg>');
    animation: sparkle 10s linear infinite;
}

.kols-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.kol-tab {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kol-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.kol-tab:hover::before {
    left: 100%;
}

.kol-tab.active {
    background: linear-gradient(135deg, #f7931a, #ff6b35);
    border-color: #f7931a;
    box-shadow: 0 0 30px rgba(247, 147, 26, 0.4);
}

.kols-content {
    position: relative;
    min-height: 400px;
}

.kols-category {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
}

.kols-category.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.kols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-items: center;
}

.kol-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.kol-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kol-card:hover::before {
    opacity: 1;
}

.diamond-kol {
    border-color: rgba(247, 147, 26, 0.3);
    background: rgba(247, 147, 26, 0.05);
}

.diamond-kol:hover {
    border-color: rgba(247, 147, 26, 0.6);
    background: rgba(247, 147, 26, 0.1);
    box-shadow: 0 10px 40px rgba(247, 147, 26, 0.2);
    transform: translateY(-10px);
}

.paper-kol {
    border-color: rgba(156, 163, 175, 0.3);
    background: rgba(156, 163, 175, 0.05);
}

.paper-kol:hover {
    border-color: rgba(156, 163, 175, 0.6);
    background: rgba(156, 163, 175, 0.1);
    box-shadow: 0 10px 40px rgba(156, 163, 175, 0.2);
    transform: translateY(-10px);
}

.kol-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    z-index: 2;
}

.diamond-badge {
    background: linear-gradient(135deg, #f7931a, #ff6b35);
    color: #000;
    box-shadow: 0 0 20px rgba(247, 147, 26, 0.5);
}

.paper-badge {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    color: #fff;
    box-shadow: 0 0 20px rgba(156, 163, 175, 0.5);
}

.kol-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    border: 3px solid;
    position: relative;
    overflow: hidden;
}

.diamond-avatar {
    background: linear-gradient(135deg, #f7931a, #ff6b35);
    border-color: #f7931a;
    color: #000;
    box-shadow: 0 0 30px rgba(247, 147, 26, 0.4);
}

.paper-avatar {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    border-color: #9ca3af;
    color: #fff;
    box-shadow: 0 0 30px rgba(156, 163, 175, 0.4);
}

.kol-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid;
    transition: all 0.3s ease;
}

.kol-image.diamond-avatar {
    border-color: #f7931a;
    box-shadow: 0 0 30px rgba(247, 147, 26, 0.4);
}

.kol-image.paper-avatar {
    border-color: #9ca3af;
    box-shadow: 0 0 30px rgba(156, 163, 175, 0.4);
    filter: grayscale(20%) brightness(0.9);
}

.kol-image.paper-avatar:hover {
    filter: grayscale(40%) brightness(0.8);
    box-shadow: 0 0 40px rgba(156, 163, 175, 0.6);
}

.kol-image.diamond-avatar:hover {
    box-shadow: 0 0 50px rgba(247, 147, 26, 0.6);
    transform: scale(1.05);
}

.kol-info {
    text-align: center;
    z-index: 2;
    position: relative;
}

.kol-username {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    margin-bottom: 10px;
}

.diamond-kol .kol-username {
    color: #f7931a;
}

.paper-kol .kol-username {
    color: #9ca3af;
}

.kol-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

.kol-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.stat {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .kols-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .kol-tab {
        width: 100%;
        max-width: 300px;
    }
    
    .kols-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kol-card {
        max-width: none;
    }
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #f7931a, #09eab4);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 50px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #f7931a;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(247, 147, 26, 0.5);
}

.timeline-item.completed .timeline-marker {
    background: #09eab4;
    box-shadow: 0 0 20px rgba(9, 234, 180, 0.5);
}

.timeline-item.active .timeline-marker {
    background: #f7931a;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(247, 147, 26, 0.5); }
    50% { box-shadow: 0 0 30px rgba(247, 147, 26, 0.8); }
    100% { box-shadow: 0 0 20px rgba(247, 147, 26, 0.5); }
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.timeline-content h4 {
    color: #f7931a;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.timeline-date {
    color: #09eab4;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.community-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.community-card:hover::before {
    left: 100%;
}

.community-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 147, 26, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.community-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.community-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f7931a;
}

.community-card p {
    color: #ccc;
    margin-bottom: 1rem;
}

.followers {
    color: #09eab4;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #f7931a;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(247, 147, 26, 0.5));
}

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #f7931a;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #09eab4;
}

.contract-address span {
    color: #09eab4;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 10px;
    background: rgba(9, 234, 180, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(9, 234, 180, 0.2);
    word-break: break-all;
}

.contract-address span:hover {
    background: rgba(9, 234, 180, 0.2);
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 100%;
    }

    .community-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-img {
        width: 150px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .chart {
        width: 250px;
        height: 250px;
    }

    .chart-center {
        width: 160px;
        height: 160px;
    }

    .chart-label {
        font-size: 1rem;
    }
}
