
:root {
    --primary-green: #7fba00;
    --dark-bg: #260265; /* Changed to a dark brown */
    --darker-brown: #12081a; /* Darker brown for contrast */
    --medium-brown: #3c085c; /* Medium brown for sections */
    --light-brown: #8a4ab8; /* Lighter brown for cards */
    --accent-brown: #8b5a2b; /* Accent brown color */
    --text-color: #f5f5f5;
    --gradient-start: #7fba00;
    --gradient-end: #ff8c00;
    --card-bg: rgba(58, 38, 28, 0.7); /* Brown card background */
    --hover-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
    background-image: 
        linear-gradient(to bottom, 
            var(--darker-brown), 
            var(--dark-bg) 30%, 
            var(--medium-brown) 70%, 
            var(--darker-brown));
}

/* Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(90, 58, 40, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 58, 40, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Colorful background overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 90, 43, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(127, 186, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 40% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(139, 90, 43, 0.15) 0%, transparent 30%);
    z-index: -1;
    pointer-events: none;
}

section {
    padding: 100px 10%;
    position: relative;
}

/* Section backgrounds */
#about, #tokenomics, #community {
    background-color: rgba(42, 26, 16, 0.7); /* Slightly darker brown */
}

#features, #roadmap {
    background-color: rgba(58, 36, 21, 0.5); /* Slightly lighter brown */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background-color: rgba(4, 3, 65, 0.1); /* Darker brown with transparency */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--hover-transition);
}

nav.scrolled {
    padding: 15px 10%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--hover-transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--hover-transition);
}

.logo:hover img {
    transform: rotate(10deg);
}

.logo-text {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: var(--hover-transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--hover-transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

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

.nav-links a.active {
    color: var(--primary-green);
}

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

.buy-btn {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--hover-transition);
    position: relative;
    overflow: hidden;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--hover-transition);
}

.buy-btn:hover {
    background-color: #6ca000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(127, 186, 0, 0.4);
}

.buy-btn:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    padding: 120px 10% 80px;
    gap: 50px;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(46, 2, 74, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(127, 186, 0, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    flex: 1;
}

.token-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(127, 186, 0, 0.1);
    border: 1px solid rgba(127, 186, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    gap: 8px;
    transition: var(--hover-transition);
}

.token-badge:hover {
    background-color: rgba(127, 186, 0, 0.2);
    transform: translateX(5px);
}

.token-badge i {
    color: var(--primary-green);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary-green);
    display: block;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(127, 186, 0, 0.2);
    z-index: -1;
    transition: var(--hover-transition);
}

.hero-title:hover .highlight::after {
    height: 20px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.gradient-btn {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    transition: var(--hover-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--gradient-end), var(--gradient-start));
    z-index: -1;
    opacity: 0;
    transition: var(--hover-transition);
}

.gradient-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(127, 186, 0, 0.3);
}

.gradient-btn:hover::before {
    opacity: 1;
}

.gradient-btn:hover i {
    transform: translateX(5px);
}

.gradient-btn i {
    transition: var(--hover-transition);
}

.contract-address {
    background-color: rgba(90, 58, 40, 0.2); /* Brown background */
    border-radius: 5px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    transition: var(--hover-transition);
    border: 1px solid transparent;
}

.contract-address:hover {
    background-color: rgba(90, 58, 40, 0.3);
    border-color: rgba(127, 186, 0, 0.3);
    transform: translateY(-2px);
}

.address-label {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 10px;
}

.address-value {
    font-family: monospace;
    font-size: 0.9rem;
}

.copy-btn {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--hover-transition);
}

.copy-btn:hover {
    background-color: #6ca000;
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    transition: var(--hover-transition);
}

.hero-image:hover {
    transform: translateY(-10px) rotate(2deg);
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--hover-transition);
}

.hero-image:hover img {
    box-shadow: 0 15px 40px rgba(127, 186, 0, 0.3);
}

/* About Section */
#about {
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(rgba(67, 18, 107, 0.1) 0%, transparent 10%),
        radial-gradient(rgba(56, 14, 86, 0.1) 0%, transparent 10%);
    z-index: -1;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--hover-transition);
}

.about-image:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 15px 40px rgba(127, 186, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--hover-transition);
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(90, 58, 40, 0.3); /* Brown background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(127, 186, 0, 0.05);
    animation: float 2s ease-in-out infinite;
}

.feature-item:nth-child(1) {
    animation-delay: 0s;
}

.feature-item:nth-child(2) {
    animation-delay: 2.25s;
}

.feature-item:nth-child(3) {
    animation-delay: 4.5s;
}

.feature-item:nth-child(4) {
    animation-delay: 6.75s;
}

.feature-item:hover {
    background-color: rgba(90, 58, 40, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 
                0 0 0 2px rgba(127, 186, 0, 0.2);
}

.feature-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    background-color: rgba(127, 186, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--hover-transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-green);
    color: white;
    transform: rotate(10deg);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Features Section */
#features {
    position: relative;
}

#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 40%, rgba(139, 90, 43, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(127, 186, 0, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: var(--hover-transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(127, 186, 0, 0.1);
    animation: float 2s ease-in-out infinite;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 
                0 0 0 2px rgba(127, 186, 0, 0.3);
    border-color: rgba(127, 186, 0, 0.3);
    background-color: rgba(90, 58, 40, 0.8); /* Darker on hover */
}

/* Stagger the float animation for different cards */
.feature-card:nth-child(2) {
    animation-delay: 1s;
}

.feature-card:nth-child(3) {
    animation-delay: 2s;
}

.feature-card:nth-child(4) {
    animation-delay: 3s;
}

.feature-card:nth-child(5) {
    animation-delay: 1.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 2.5s;
}

.feature-card-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: var(--hover-transition);
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Tokenomics Section */
#tokenomics {
    position: relative;
}

#tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 60% 30%, rgba(139, 90, 43, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(127, 186, 0, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tokenomics-chart {
    width: 100%;
    max-width: 600px;
    margin-bottom: 50px;
    position: relative;
}

.chart-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.pie-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-green) 0% 40%,
        #ff8c00 40% 60%,
        #e44d26 60% 75%,
        #4a90e2 75% 85%,
        var(--accent-brown) 85% 100%
    );
    position: relative;
    transition: var(--hover-transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pie-chart:hover {
    transform: scale(1.05) rotate(10deg);
    box-shadow: 0 15px 40px rgba(127, 186, 0, 0.4);
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: var(--hover-transition);
}

.pie-chart:hover .chart-center {
    background-color: var(--primary-green);
    color: white;
}

.tokenomics-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--hover-transition);
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(90, 58, 40, 0.3); /* Brown background */
}

.legend-item:hover {
    background-color: rgba(90, 58, 40, 0.5);
    transform: translateX(5px);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

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

.legend-percent {
    font-weight: bold;
    margin-left: auto;
}

.tokenomics-details {
    margin-top: 50px;
    width: 100%;
}

.tokenomics-table {
    width: 100%;
    border-collapse: collapse;
}

.tokenomics-table th,
.tokenomics-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tokenomics-table th {
    background-color: rgba(127, 186, 0, 0.1);
    color: var(--primary-green);
}

.tokenomics-table tr {
    transition: var(--hover-transition);
}

.tokenomics-table tr:hover {
    background-color: rgba(90, 58, 40, 0.3);
}

/* Roadmap Section */
#roadmap {
    position: relative;
}

#roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 90, 43, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(127, 186, 0, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.roadmap-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--gradient-start), var(--accent-brown));
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.roadmap-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    margin-left: 50%;
}

.roadmap-dot {
    position: absolute;
    right: -8px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-green);
    transition: var(--hover-transition);
}

.roadmap-item:nth-child(even) .roadmap-dot {
    right: auto;
    left: -8px;
}

.roadmap-item:hover .roadmap-dot {
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(127, 186, 0, 0.7);
}

.roadmap-content {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    transition: var(--hover-transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(127, 186, 0, 0.1);
    animation: float 2s ease-in-out infinite;
}

.roadmap-item:nth-child(1) .roadmap-content {
    animation-delay: 0s;
}

.roadmap-item:nth-child(2) .roadmap-content {
    animation-delay: 1.4s;
}

.roadmap-item:nth-child(3) .roadmap-content {
    animation-delay: 2.8s;
}

.roadmap-item:nth-child(4) .roadmap-content {
    animation-delay: 4.2s;
}

.roadmap-item:nth-child(5) .roadmap-content {
    animation-delay: 5.6s;
}

.roadmap-item:hover .roadmap-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 
                0 0 0 2px rgba(127, 186, 0, 0.3);
    border-color: rgba(127, 186, 0, 0.3);
    0,0,0.3), 
                0 0 0 2px rgba(127, 186, 0, 0.3);
    border-color: rgba(127, 186, 0, 0.3);
    background-color: rgba(90, 58, 40, 0.8); /* Darker on hover */
}

.roadmap-date {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(127, 186, 0, 0.2);
    color: var(--primary-green);
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--hover-transition);
}

.roadmap-item:hover .roadmap-date {
    background-color: var(--primary-green);
    color: white;
}

.roadmap-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.roadmap-description {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.roadmap-status {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.status-completed {
    color: var(--primary-green);
}

.status-progress {
    color: #ff8c00;
}

.status-upcoming {
    color: #4a90e2;
}

/* Community Section */
#community {
    position: relative;
}

#community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 30%, rgba(139, 90, 43, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(127, 186, 0, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.community-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    width: 100%;
}

.community-stat {
    text-align: center;
    transition: var(--hover-transition);
    padding: 20px;
    border-radius: 10px;
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(127, 186, 0, 0.1);
    animation: float 2s ease-in-out infinite;
}

.community-stat:nth-child(1) {
    animation-delay: 0s;
}

.community-stat:nth-child(2) {
    animation-delay: 2s;
}

.community-stat:nth-child(3) {
    animation-delay: 4s;
}

.community-stat:nth-child(4) {
    animation-delay: 6s;
}

.community-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 
                0 0 0 2px rgba(127, 186, 0, 0.3);
    border-color: rgba(127, 186, 0, 0.3);
    background-color: rgba(90, 58, 40, 0.8); /* Darker on hover */
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 10px;
    transition: var(--hover-transition);
}

.community-stat:hover .stat-number {
    text-shadow: 0 0 20px rgba(127, 186, 0, 0.7);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(90, 58, 40, 0.5); /* Brown background */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--hover-transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(127, 186, 0, 0.1);
    animation: float 2s ease-in-out infinite;
}

.social-link:nth-child(1) {
    animation-delay: 0s;
}

.social-link:nth-child(2) {
    animation-delay: 1s;
}

.social-link:nth-child(3) {
    animation-delay: 2s;
}

.social-link:nth-child(4) {
    animation-delay: 3s;
}

.social-link:nth-child(5) {
    animation-delay: 4s;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--gradient-start), var(--accent-brown));
    opacity: 0;
    transition: var(--hover-transition);
    z-index: -1;
}

.social-link:hover {
    color: white;
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 
                0 0 0 2px rgba(127, 186, 0, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.community-join {
    margin-top: 50px;
    text-align: center;
    max-width: 600px;
}

.community-join h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.community-join p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 80px 10%;
    text-align: center;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(139, 90, 43, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--hover-transition);
    padding: 30px;
    border-radius: 10px;
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(127, 186, 0, 0.1);
    animation: float 7s ease-in-out infinite;
}

.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 5s;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 
                0 0 0 2px rgba(127, 186, 0, 0.3);
    border-color: rgba(127, 186, 0, 0.3);
    background-color: rgba(90, 58, 40, 0.8); /* Darker on hover */
}

.stat-icon {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 20px;
    transition: var(--hover-transition);
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px rgba(127, 186, 0, 0.7);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-green);
    transition: var(--hover-transition);
}

.stat-item:hover .stat-value {
    text-shadow: 0 0 20px rgba(127, 186, 0, 0.7);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.7;
}

/* Footer */
footer {
    background-color: var(--darker-brown);
    padding: 50px 10% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 90, 43, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(127, 186, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-menu {
    list-style: none;
}

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

.footer-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--hover-transition);
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    left: 0;
    transition: var(--hover-transition);
}

.footer-menu a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.footer-menu a:hover::before {
    color: var(--primary-green);
}

.footer-newsletter {
    flex: 1;
    min-width: 300px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    background-color: rgba(90, 58, 40, 0.3); /* Brown background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
    color: var(--text-color);
    transition: var(--hover-transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: rgba(90, 58, 40, 0.5);
}

.newsletter-btn {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--hover-transition);
}

.newsletter-btn:hover {
    background-color: #6ca000;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--hover-transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-green);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    section {
        padding: 80px 5%;
    }
    
    .hero {
        flex-direction: column;
        padding: 100px 5% 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .roadmap-item, 
    .roadmap-item:nth-child(even) {
        width: 100%;
        padding-left: 30px;
        padding-right: 0;
        margin-left: 0;
        justify-content: flex-start;
    }
    
    .roadmap-line {
        left: 0;
    }
    
    .roadmap-dot, 
    .roadmap-item:nth-child(even) .roadmap-dot {
        left: -8px;
        right: auto;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--darker-brown);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        padding: 80px 40px;
        transition: var(--hover-transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-nav.active {
        right: 0;
    }
    
    .mobile-nav a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 1.2rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--hover-transition);
    }
    
    .mobile-nav a:hover {
        color: var(--primary-green);
        padding-left: 10px;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer;
        transition: var(--hover-transition);
    }
    
    .close-menu:hover {
        color: var(--primary-green);
        transform: rotate(90deg);
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: var(--hover-transition);
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contract-address {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .copy-btn {
        align-self: flex-end;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* Pause animations when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .roadmap-content,
    .community-stat,
    .feature-item,
    .social-link,
    .stat-item {
        animation: none;
    }
}
