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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

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

.nav-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: #22c55e;
}

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

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

.nav-link:hover {
    color: #22c55e;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.camo-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    animation: camoShift 10s ease-in-out infinite;
}

@keyframes camoShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.pixel-soldiers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.soldier {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.soldier-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.soldier-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.soldier-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 100px 20px 0;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #a3a3a3;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pump-text {
    color: #22c55e;
    font-weight: 700;
}

.people-text {
    color: #f59e0b;
    font-weight: 700;
}

.btn-hero {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    text-decoration: none;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

/* Contract Address */
.contract-address {
    margin-top: 2rem;
    text-align: center;
}

.contract-label {
    color: #a3a3a3;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.contract-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contract-container:hover {
    border-color: #22c55e;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.2);
}

.contract-addr {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #22c55e;
    font-weight: 600;
    word-break: break-all;
    flex: 1;
    text-align: left;
}

.copy-contract-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.copy-contract-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.copy-icon {
    font-size: 1rem;
    color: white;
}

.btn-icon {
    font-size: 1.5rem;
}

/* Wallet Tracker */
.wallet-tracker {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.wallet-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.wallet-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.wallet-label {
    color: #22c55e;
    font-weight: 600;
    font-size: 1.1rem;
}

.wallet-addr {
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
}

.wallet-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.wallet-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wallet-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.wallet-stat .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.wallet-stat .stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.wallet-stat .stat-label {
    color: #a3a3a3;
    font-size: 0.9rem;
    font-weight: 500;
}

.wallet-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.wallet-link {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wallet-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.link-icon {
    font-size: 1.2rem;
}

/* Impact Tracker */
.impact-tracker {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: #22c55e;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-subtitle {
    color: #a3a3a3;
    font-size: 0.9rem;
}

.latest-donations {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.latest-donations h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.donation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.donation-item:last-child {
    border-bottom: none;
}

.donation-amount {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #22c55e;
    font-size: 1.1rem;
}

.donation-details {
    flex: 1;
    margin: 0 1rem;
}

.donation-to {
    color: #fff;
    font-weight: 500;
}

.tx-link {
    color: #22c55e;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.tx-link:hover {
    text-decoration: underline;
}

.donation-time {
    color: #a3a3a3;
    font-size: 0.9rem;
}

.no-donations {
    text-align: center;
    color: #a3a3a3;
    font-style: italic;
    padding: 2rem;
    border: 1px dashed rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.05);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #0a0a0a;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 300px;
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    color: #a3a3a3;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #22c55e;
    font-weight: 700;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: #0a0a0a;
}

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

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

.roadmap-phase {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.roadmap-phase:nth-child(odd) {
    flex-direction: row;
}

.roadmap-phase:nth-child(even) {
    flex-direction: row-reverse;
}

.phase-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    z-index: 2;
    border: 4px solid #0a0a0a;
}

.roadmap-phase.completed .phase-number {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.roadmap-phase.current .phase-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    animation: pulse 2s infinite;
}

.roadmap-phase:not(.completed):not(.current) .phase-number {
    background: rgba(255, 255, 255, 0.1);
    color: #a3a3a3;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.phase-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 2rem;
    width: 45%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-phase:hover .phase-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.roadmap-phase.completed .phase-content {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.05);
}

.roadmap-phase.current .phase-content {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
}

.phase-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.phase-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phase-item {
    color: #a3a3a3;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.roadmap-phase.completed .phase-item {
    color: #22c55e;
}

.roadmap-phase.current .phase-item {
    color: #f59e0b;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-size: 1.2rem;
    color: #a3a3a3;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    color: #a3a3a3;
    font-size: 0.9rem;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.army-banner {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.pixel-army {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pixel-soldier {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.pixel-soldier:nth-child(2) { animation-delay: 0.2s; }
.pixel-soldier:nth-child(3) { animation-delay: 0.4s; }
.pixel-soldier:nth-child(4) { animation-delay: 0.6s; }

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

/* Featured Campaigns */
.featured-campaigns {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.campaign-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.campaign-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: #1a1a1a;
    display: block;
}

.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.campaign-card:hover .campaign-overlay {
    opacity: 1;
}

.campaign-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.badge-icon {
    font-size: 1rem;
}

.campaign-link-overlay {
    align-self: flex-end;
}

.overlay-link {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.overlay-link:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.link-icon {
    font-size: 1rem;
}

.campaign-card:hover .campaign-image img {
    transform: scale(1.05);
}

.campaign-content {
    padding: 1.5rem;
}

.campaign-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.campaign-content p {
    color: #a3a3a3;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.campaign-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    height: 100%;
    transition: width 0.3s ease;
}

.progress-text {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
}

.campaign-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.campaign-link {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.funded-stamp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

/* Join Army */
.join-army {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.join-text p {
    font-size: 1.2rem;
    color: #a3a3a3;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
    color: white;
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d7bb8);
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
}

.btn-enlist {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    text-decoration: none;
}

.btn-enlist:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.join-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.enlistment-poster {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transform: rotate(-5deg);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.poster-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.poster-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.poster-text {
    font-size: 1rem;
    color: #fef2f2;
    font-style: italic;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #a3a3a3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #22c55e;
}

.footer-note {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #22c55e;
    font-size: 1.2rem;
}

/* Rewardanomics Section */
.rewardanomics {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.rewardanomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.tokenomics-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a, #22c55e);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.tokenomics-card:hover {
    transform: translateY(-8px);
    border-color: #22c55e;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.tokenomics-card.donations {
    border-color: rgba(239, 68, 68, 0.3);
}

.tokenomics-card.donations:hover {
    border-color: #ef4444;
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.tokenomics-card.donations::before {
    background: linear-gradient(90deg, #ef4444, #dc2626, #ef4444);
}

.tokenomics-card.marketing {
    border-color: rgba(59, 130, 246, 0.3);
}

.tokenomics-card.marketing:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.tokenomics-card.marketing::before {
    background: linear-gradient(90deg, #3b82f6, #2563eb, #3b82f6);
}

.tokenomics-card.dev-team {
    border-color: rgba(168, 85, 247, 0.3);
}

.tokenomics-card.dev-team:hover {
    border-color: #a855f7;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.tokenomics-card.dev-team::before {
    background: linear-gradient(90deg, #a855f7, #9333ea, #a855f7);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.card-percentage {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.tokenomics-card.donations .card-percentage {
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.tokenomics-card.marketing .card-percentage {
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.tokenomics-card.dev-team .card-percentage {
    color: #a855f7;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.card-content h3 {
    color: #e5e5e5;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.card-content p {
    color: #a3a3a3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.9rem;
}

.detail-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.rewardanomics-summary {
    margin-top: 4rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rewardanomics-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.summary-content h3 {
    color: #22c55e;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.summary-content p {
    color: #d1d5db;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.summary-stat .stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    margin-bottom: 0.5rem;
}

.summary-stat .stat-label {
    color: #a3a3a3;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Raid Section */
.raid-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.raid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.raid-stat {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.raid-stat:hover::before {
    left: 100%;
}

.raid-stat:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.raid-stat .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.raid-stat .stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.raid-stat .stat-label {
    color: #a3a3a3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.raid-posts {
    margin: 3rem 0;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(26, 26, 26, 0.5);
    border: 2px dashed rgba(34, 197, 94, 0.3);
    border-radius: 12px;
}

.no-posts-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.no-posts h3 {
    color: #22c55e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.no-posts p {
    color: #a3a3a3;
    font-size: 1.1rem;
}

.raid-post {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.raid-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #16a34a, #22c55e);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.raid-post:hover {
    transform: translateY(-3px);
    border-color: #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.post-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.post-details h4 {
    color: #22c55e;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: 'Orbitron', monospace;
}

.post-details p {
    color: #a3a3a3;
    font-size: 0.9rem;
}

.post-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-status.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.post-status.completed {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
}

.post-content {
    margin-bottom: 2rem;
}

.post-text {
    color: #e5e5e5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    color: #a3a3a3;
    font-size: 0.9rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-raid-post {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-raid-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-raid-post:disabled {
    background: #6b7280;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.raid-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-raid {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-raid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.btn-join-raid {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-join-raid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .mission-content,
    .join-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .enlistment-poster {
        transform: none;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .raid-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .raid-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .post-actions {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .roadmap-phase {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .phase-number {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .phase-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
    }
    
    .campaign-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .wallet-address {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .wallet-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wallet-actions {
        flex-direction: column;
    }
    
    .donation-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contract-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .contract-addr {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .rewardanomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .card-percentage {
        font-size: 2.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
}
