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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1625;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --accent-yellow: #ffd700;
    --accent-lime: #aaff00;
    --accent-green: #00ff88;
    --gradient: linear-gradient(135deg, #ffd700 0%, #aaff00 50%, #00ff88 100%);
    --gradient-reverse: linear-gradient(135deg, #00ff88 0%, #aaff00 50%, #ffd700 100%);
    --shield-gradient: linear-gradient(135deg, #1a3a2e 0%, #2d5a4e 50%, #1a3a2e 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(170, 255, 0, 0.1);
    padding: 1rem 0;
}

.mobile-nav.active {
    z-index: 10000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-lime);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

.btn.btn-nav {
    padding: 0.45rem 0.9rem !important;
    font-size: 0.8rem !important;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px !important;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent !important;
    white-space: nowrap;
    background: var(--shield-gradient);
    color: var(--text-primary);
    border-color: var(--accent-lime);
    box-shadow: 0 0 10px rgba(170, 255, 0, 0.2);
    margin-left: 1rem;
}

.btn.btn-nav:hover {
    box-shadow: 0 0 15px rgba(170, 255, 0, 0.4), 0 0 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-1px);
    border-color: var(--accent-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    align-items: center;
    flex-shrink: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--accent-lime);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    background: rgba(15, 22, 37, 0.6);
    border: 1px solid rgba(170, 255, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--accent-lime);
    border-color: var(--accent-lime);
    background: rgba(170, 255, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(170, 255, 0, 0.2);
}

.mobile-nav-btn {
    margin-top: 0.5rem;
    background: var(--gradient);
    color: var(--bg-primary);
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    border: none;
}

.mobile-nav-btn:hover {
    box-shadow: 0 0 25px rgba(170, 255, 0, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(170, 255, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    text-align: left;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(170, 255, 0, 0.1);
    border: 1px solid rgba(170, 255, 0, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-lime);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-lime);
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-social {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-lime);
}

.social-icon {
    font-weight: 700;
    color: var(--text-primary);
}

.hero-right {
    position: relative;
    z-index: 1;
}

.feature-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.feature-card-stacked {
    background: rgba(15, 22, 37, 0.8);
    border: 1px solid rgba(170, 255, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
    width: 320px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-stacked:nth-child(1) {
    transform: translateX(-20px);
}

.feature-card-stacked:nth-child(2) {
    transform: translateX(-10px);
}

.feature-card-stacked:nth-child(3) {
    transform: translateX(0);
}

.feature-card-stacked:hover {
    border-color: var(--accent-lime);
    background: rgba(170, 255, 0, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(170, 255, 0, 0.15);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bg-primary);
    font-weight: bold;
}

.feature-card-stacked h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-card-stacked p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 0 20px rgba(170, 255, 0, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(170, 255, 0, 0.5), 0 0 60px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(170, 255, 0, 0.5);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(170, 255, 0, 0.1);
    border-color: var(--accent-lime);
    box-shadow: 0 0 20px rgba(170, 255, 0, 0.3);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.section:nth-child(even) {
    background-color: var(--bg-secondary);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(170, 255, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section:hover::before {
    opacity: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.overview-text-center {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.text-center {
    text-align: center;
}

.section-text.highlight {
    color: var(--accent-lime);
    font-weight: 500;
    font-size: 1.2rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-lime);
    font-weight: bold;
}

.nested-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.nested-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.nested-list li::before {
    content: '•';
    color: var(--accent-green);
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    padding: 2.5rem 2rem;
    background: rgba(15, 22, 37, 0.6);
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

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

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    background: rgba(170, 255, 0, 0.08);
    border-color: var(--accent-lime);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(170, 255, 0, 0.25);
}

.benefit-item h3 {
    color: var(--accent-lime);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: rgba(15, 22, 37, 0.6);
    border: 1px solid rgba(170, 255, 0, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

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

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

.feature-card:hover {
    border-color: var(--accent-lime);
    background: rgba(170, 255, 0, 0.08);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(170, 255, 0, 0.25);
}

.feature-card h3 {
    color: var(--accent-lime);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--text-primary);
}

/* Token Utility */
.utility-section {
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background: rgba(15, 22, 37, 0.6);
    border-left: 4px solid var(--accent-lime);
    border-radius: 12px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.utility-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: rgba(170, 255, 0, 0.05);
    transition: width 0.4s ease;
}

.utility-section:hover::before {
    width: 100%;
}

.utility-section:hover {
    border-left-color: var(--accent-green);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(170, 255, 0, 0.15);
}

.utility-center {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
}

.utility-center:hover {
    transform: translateY(-5px);
}

.premium-tier-info {
    background: rgba(170, 255, 0, 0.08);
    border-left-color: var(--accent-green);
}

.premium-tier-info .section-text strong {
    color: var(--accent-lime);
    font-weight: 700;
}

.utility-title {
    color: var(--accent-lime);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.subsection-title {
    color: var(--accent-lime);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

/* Tokenomics */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tokenomics-card {
    background: rgba(15, 22, 37, 0.6);
    border: 1px solid rgba(170, 255, 0, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.tokenomics-card:hover {
    border-color: var(--accent-lime);
    background: rgba(170, 255, 0, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(170, 255, 0, 0.2);
}

.tokenomics-card.highlight-card {
    border-color: var(--accent-lime);
    background: rgba(170, 255, 0, 0.08);
}

.tokenomics-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(170, 255, 0, 0.3));
}

.tokenomics-card h3 {
    color: var(--accent-lime);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tokenomics-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.tokenomics-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomics-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

.tokenomics-details {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.detail-section {
    animation: fadeInUp 0.6s ease;
}

.distribution-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.distribution-item {
    position: relative;
}

.distribution-bar {
    height: 40px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease;
}

.distribution-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.distribution-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.distribution-percent {
    font-weight: 700;
    color: var(--accent-lime);
    font-size: 1.1rem;
}

.distribution-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.security-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 22, 37, 0.6);
    border: 1px solid rgba(170, 255, 0, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.security-feature-item:hover {
    border-color: var(--accent-lime);
    background: rgba(170, 255, 0, 0.05);
    transform: translateX(5px);
}

.security-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.security-feature-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.security-feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Roadmap */
.roadmap-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-lime) 0%, var(--accent-green) 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.phase {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    animation: fadeInUp 0.6s ease;
}

.phase-left {
    flex-direction: row;
}

.phase-right {
    flex-direction: row-reverse;
}

.phase-content {
    width: 45%;
    padding: 2.5rem;
    background: rgba(15, 22, 37, 0.8);
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.phase-content:hover {
    border-color: var(--accent-lime);
    background: rgba(170, 255, 0, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(170, 255, 0, 0.2);
}

.phase-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--bg-primary);
    border: 3px solid var(--bg-primary);
}

.phase-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(170, 255, 0, 0.3));
}

.phase-title {
    color: var(--text-primary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.phase-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-list li {
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 0.6rem 0;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(170, 255, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.phase-list li:last-child {
    border-bottom: none;
}

.phase-list li:hover {
    color: var(--accent-lime);
    padding-left: 2.5rem;
}

.phase-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: bold;
    line-height: 20px;
}

.timeline-node {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    border: 4px solid var(--bg-primary);
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(170, 255, 0, 0.5);
}

/* Security */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.security-grid-center {
    max-width: 1000px;
    margin: 3rem auto;
    justify-items: center;
}

.security-item {
    padding: 2rem 1.5rem;
    background: rgba(15, 22, 37, 0.6);
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: 12px;
    text-align: center;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.6s ease;
    overflow: hidden;
}

.security-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.security-item:hover::after {
    transform: scaleX(1);
}

.security-item:hover {
    background: rgba(170, 255, 0, 0.08);
    border-color: var(--accent-lime);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(170, 255, 0, 0.2);
    color: var(--text-primary);
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    animation: fadeInUp 0.6s ease;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(15, 22, 37, 0.6);
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--accent-lime);
    background: rgba(170, 255, 0, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-method h3 {
    color: var(--accent-lime);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.contact-link:hover {
    color: var(--accent-lime);
}

.contact-form-container {
    animation: fadeInUp 0.6s ease;
}

.contact-form {
    background: rgba(15, 22, 37, 0.6);
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 10px 30px rgba(170, 255, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--accent-lime);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-lime);
    background: rgba(170, 255, 0, 0.05);
    box-shadow: 0 0 15px rgba(170, 255, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0;
    border-top: 1px solid rgba(170, 255, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-lime);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .feature-cards-stack {
        align-items: center;
    }

    .feature-card-stacked {
        width: 100%;
        max-width: 400px;
    }

    .feature-card-stacked:nth-child(1),
    .feature-card-stacked:nth-child(2),
    .feature-card-stacked:nth-child(3) {
        transform: translateX(0);
    }

    .tokenomics-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile Styles - Only affects mobile devices */
@media (max-width: 768px) {
    /* Hide desktop nav on mobile */
    .nav-right {
        display: none;
    }

    /* Make sure nav-content properly spaces items */
    .nav-content {
        position: relative;
        min-height: 50px;
        align-items: center;
        justify-content: space-between !important;
        width: 100%;
        gap: 0;
    }

    /* Ensure logo stays on the left edge */
    .logo {
        margin-right: auto !important;
        flex-shrink: 0;
        margin-left: 0 !important;
    }
    
    /* Show hamburger menu on the right edge */
    .hamburger {
        display: flex !important;
        position: relative !important;
        z-index: 1002 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        align-items: center;
        flex-shrink: 0;
        margin-left: auto !important;
        margin-right: 0 !important;
    }
    
    /* Ensure hamburger is clickable */
    .hamburger span {
        pointer-events: none;
    }
    
    /* Ensure navbar has proper height */
    .navbar {
        min-height: 60px;
        display: flex;
        align-items: center;
    }

    /* Make sure logo doesn't overlap */
    .logo {
        flex-shrink: 0;
    }

    /* Show mobile nav when active */
    .mobile-nav {
        display: flex;
    }

    /* Ensure navbar is above mobile nav when closed */
    .navbar {
        z-index: 1003;
        position: relative;
    }

    /* Container padding for mobile */
    .container {
        padding: 0 15px;
    }

    /* Hero adjustments */
    .hero {
        min-height: 70vh;
        padding: 3rem 0;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn {
        text-align: center;
        width: 100%;
    }

    /* Section adjustments */
    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .section-text {
        font-size: 1rem;
    }

    /* Feature cards */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Benefits grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    /* Tokenomics */
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tokenomics-card {
        padding: 2rem 1.5rem;
    }

    /* Utility sections */
    .utility-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    /* Roadmap */
    .roadmap-timeline {
        padding: 0 1rem;
    }

    .timeline-line {
        left: 20px;
    }

    .phase {
        flex-direction: column !important;
        margin-bottom: 3rem;
    }

    .phase-left,
    .phase-right {
        flex-direction: column;
    }

    .phase-content {
        width: 100%;
        margin-left: 50px;
        padding: 2rem 1.5rem;
    }

    .timeline-node {
        left: 20px;
    }

    /* Security grid */
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .security-item {
        padding: 1.5rem 1rem;
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

    /* Feature cards stack */
    .feature-cards-stack {
        gap: 1rem;
    }

    .feature-card-stacked {
        width: 100%;
        padding: 1.5rem;
    }

    .feature-card-stacked:nth-child(1),
    .feature-card-stacked:nth-child(2),
    .feature-card-stacked:nth-child(3) {
        transform: translateX(0);
    }

    /* Tokenomics details */
    .tokenomics-details {
        flex-direction: column;
    }

    .security-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Hero badge */
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    /* Logo text */
    .logo-text {
        font-size: 1.2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Show logo when it exists */
#logo-img[src="logo.png"]:not([src=""]) {
    display: block;
}

