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

/* Ensure all text elements are in foreground */
h1, h2, h3, h4, h5, h6, p, span, a, button, .btn, .nav-link, .social-link, .brand-text, .hero-title, .hero-subtitle, .section-title, .gradient-text {
    position: relative !important;
    z-index: 99999 !important;
}

/* Ensure all links are clickable */
a, .social-link, .nav-link {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 100000 !important;
}

/* Force all content containers to be in foreground */
.container, .hero-content, .about-content, .tokenomics-grid, .roadmap-timeline, .community-content, .features-grid, .footer-content {
    position: relative !important;
    z-index: 99998 !important;
}

/* Force all cards and components to be in foreground */
.feature, .tokenomics-card, .roadmap-phase, .feature-card, .stat, .hero-buttons, .contract-info {
    position: relative !important;
    z-index: 99999 !important;
}

/* Ensure no elements block click events on links */
* {
    pointer-events: auto !important;
}

/* Special handling for background elements */
body::before, .about::before, .tokenomics::before, .roadmap::before, .community::before, .features-section::before, .cta::before, .footer::before {
    pointer-events: none !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0d1a0d 0%, #1a0d0d 25%, #0d1a0d 50%, #1a0d0d 75%, #0d1a0d 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 20, 60, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 139, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 100, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(178, 34, 34, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 9998 !important;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100000 !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    pointer-events: auto !important;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 100000 !important;
    pointer-events: auto !important;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 9999 !important;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #dc143c, #228b22, #006400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 12;
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 9999 !important;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 12;
}

.nav-link:hover {
    color: #e0e0e0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.nav-social {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 100000 !important;
    pointer-events: auto !important;
}

.social-link {
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 100000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.social-link:hover {
    color: #e0e0e0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9997 !important;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 9998 !important;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

.gradient-text {
    background: linear-gradient(45deg, #dc143c, #b22222, #228b22, #006400, #2d5016, #dc143c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    position: relative;
    z-index: 5;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 3;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 4;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 5;
}

.btn-primary {
    background: linear-gradient(45deg, #dc143c, #b22222, #228b22, #006400);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6), 0 0 30px rgba(34, 139, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.9), 0 0 40px rgba(34, 139, 34, 0.6);
    background: linear-gradient(45deg, #b22222, #dc143c, #228b22, #006400);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    text-shadow: none;
}

.btn-secondary {
    transition: all 0.3s ease;
}

/* Disabled button styles */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.contract-info {
    background: rgba(13, 26, 13, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 139, 34, 0.4);
    box-shadow: 0 0 20px rgba(34, 139, 34, 0.4), 0 0 15px rgba(220, 20, 60, 0.3);
    position: relative;
    z-index: 4;
}

.contract-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

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

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1a0d 0%, #1a0d0d 100%);
    position: relative;
    z-index: 9997 !important;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(220, 20, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -100;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 9998 !important;
}

.about-text p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 3;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0d1a0d 0%, #1a0d0d 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 2px solid rgba(34, 139, 34, 0.5);
    box-shadow: 0 0 20px rgba(34, 139, 34, 0.4), 0 0 10px rgba(220, 20, 60, 0.3);
    position: relative;
    z-index: 4;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(34, 139, 34, 0.7), 0 0 20px rgba(220, 20, 60, 0.5);
    border-color: rgba(34, 139, 34, 0.8);
}

.feature i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.feature p {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Tokenomics Section */
.tokenomics {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0d0d 0%, #0d1a0d 100%);
    color: white;
    position: relative;
    z-index: 9997 !important;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -100;
}

.tokenomics .section-title {
    color: white;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.tokenomics-card {
    background: rgba(13, 26, 13, 0.6);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 139, 34, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(34, 139, 34, 0.3), 0 0 10px rgba(220, 20, 60, 0.2);
    position: relative;
    z-index: 4;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(34, 139, 34, 0.6), 0 0 15px rgba(220, 20, 60, 0.4);
    border-color: rgba(34, 139, 34, 0.8);
}

.tokenomics-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.tokenomics-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.tokenomics-desc {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Roadmap Section */
.roadmap {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1a0d 0%, #1a0d0d 100%);
    position: relative;
    z-index: 9997 !important;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(34, 139, 34, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -100;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.roadmap-item {
    position: relative;
}

.roadmap-phase {
    background: rgba(13, 26, 13, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid #228b22;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(34, 139, 34, 0.3), 0 0 10px rgba(220, 20, 60, 0.2);
    border: 1px solid rgba(34, 139, 34, 0.3);
    position: relative;
    z-index: 4;
}

.roadmap-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(34, 139, 34, 0.6), 0 0 15px rgba(220, 20, 60, 0.4);
    border-color: rgba(34, 139, 34, 0.8);
    border-left-color: #dc143c;
}

.roadmap-phase h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.roadmap-phase p {
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Community Section */
.community {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0d0d 0%, #0d1a0d 100%);
    color: white;
    position: relative;
    z-index: 9997 !important;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(220, 20, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -100;
}

.community .section-title {
    color: white;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.community-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.community-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    background: rgba(13, 26, 13, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 139, 34, 0.4);
    box-shadow: 0 0 15px rgba(34, 139, 34, 0.3), 0 0 10px rgba(220, 20, 60, 0.2);
    position: relative;
    z-index: 4;
}

.stat h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.community-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1a0d 0%, #1a0d0d 100%);
    position: relative;
    z-index: 9997 !important;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(34, 139, 34, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -100;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.feature-card {
    background: rgba(13, 26, 13, 0.6);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 139, 34, 0.4);
    box-shadow: 0 0 15px rgba(34, 139, 34, 0.3), 0 0 10px rgba(220, 20, 60, 0.2);
    position: relative;
    z-index: 4;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(34, 139, 34, 0.6), 0 0 15px rgba(220, 20, 60, 0.4);
    border-color: rgba(34, 139, 34, 0.8);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.feature-card i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.feature-card p {
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0d0d 0%, #0d1a0d 100%);
    color: white;
    text-align: center;
    position: relative;
    z-index: 9997 !important;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(34, 139, 34, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -100;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    z-index: 9997 !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -100;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.footer-brand {
    text-align: center;
    position: relative;
    z-index: 4;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 4;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.footer-section a:hover {
    color: #e0e0e0;
}

.footer-section p {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* Neon Effects */
@keyframes neon-pulse {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
    }
    50% { 
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

@keyframes neon-glow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.3), 0 0 35px rgba(255, 255, 255, 0.2);
    }
}

.hero-title {
    animation: neon-pulse 2s ease-in-out infinite;
}

.btn-primary {
    animation: christmas-glow 2s ease-in-out infinite;
}

@keyframes christmas-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.6), 0 0 30px rgba(34, 139, 34, 0.4);
    }
    50% { 
        box-shadow: 0 0 30px rgba(220, 20, 60, 0.9), 0 0 40px rgba(34, 139, 34, 0.7), 0 0 50px rgba(0, 100, 0, 0.5);
    }
}

.feature-card:hover,
.tokenomics-card:hover,
.roadmap-phase:hover {
    animation: neon-glow 1.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

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

    .footer-links {
        grid-template-columns: 1fr;
    }

    .community-stats {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 10px 20px;
    }

    .btn-large {
        padding: 14px 28px;
    }
}
