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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #222222; /* Changed from #ffffff */
    background: #f8f8f8; /* Changed from #0a0a0a */
    overflow-x: hidden;
}

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

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

.navbar.scrolled {
    background: rgba(255,255,255,0.95); /* Keep it light */
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF0000, #FF3333);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF0000, #FF6666, #FF0000);
    border-radius: 10px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
}

.logo-m {
    color: rgb(225, 6, 6);
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF0000, #FF6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #222222; /* Changed from #ffffff */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF0000;
}

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

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

.launch-btn {
    background: linear-gradient(135deg, #FF0000, #FF3333);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.15); /* Lighter shadow */
}

.launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.2); /* Lighter shadow */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #222222; /* Changed from #ffffff */
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.08) 0%, #f8f8f8 70%); /* Lighter */
    overflow: hidden;
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 51, 51, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 0 20px; /* Add top padding for desktop */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 90px; /* Slightly less top padding for tablets */
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding-top: 80px; /* More compact top padding for mobile */
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding-top: 70px; /* Even less top padding for small screens */
        padding-left: 15px;
        padding-right: 15px;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #222222; /* Changed */
}

.gradient-text {
    background: linear-gradient(135deg, #FF3333, #FF6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666666; /* Changed */
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF3333, #FF6666);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 51, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #222222; /* Changed */
    border: 2px solid rgba(0, 0, 0, 0.1); /* Changed */
}

.btn-secondary:hover {
    border-color: #FF3333;
    color: #FF3333;
    transform: translateY(-2px);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF0000;
}

.stat-label {
    font-size: 0.9rem;
    color: #333333;
}

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

.crypto-card {
    background: rgba(255, 255, 255, 0.85); /* Lighter */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.07); /* Lighter border */
    border-radius: 20px;
    padding: 2rem;
    width: 350px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: cardFloat 3s ease-in-out infinite;
    color: #222222; /* Changed */
}

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

.card-signal {
    display: flex;
    gap: 4px;
}

.signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.signal-dot.active {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.card-balance {
    margin-bottom: 1.5rem;
}

.balance-label {
    display: block;
    color: #212121;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.balance-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
}

.balance-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.balance-change.positive {
    color: #15cd65;
}

.card-chart {
    height: 100px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF3333, #FF6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666; /* Changed */
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 0, 0, 0.02);
}

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

.about-card {
    background: rgba(255, 255, 255, 0.85); /* Lighter */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.07); /* Lighter border */
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #222222; /* Changed */
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF3333, #FF6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e1d1d;
}

.about-card p {
    color: #666666; /* Changed */
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: #ffffff; /* Changed */
}

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

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

.token-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FF3333, #FF6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.token-stat {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85); /* Lighter */
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.07); /* Lighter border */
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85); /* Lighter */
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.07); /* Lighter border */
}

.item-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.item-label {
    flex: 1;
    color: #222222; /* Changed */
}

.item-percent {
    color: #FF3333;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: rgba(255, 51, 51, 0.03); /* Lighter */
}

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

.timeline-item {
    position: relative;
    padding: 2rem 0 2rem 4rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: -2rem;
    width: 2px;
    background: rgba(0, 0, 0, 0.07); /* Lighter */
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    position: absolute;
    left: 0.5rem;
    top: 2rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 51, 51, 0.15); /* Lighter */
    border: 3px solid #fff;
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: #00cc66;
}

.timeline-item.active .timeline-marker {
    background: #FF3333;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF0000;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2b2b;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666666; /* Changed */
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.08), rgba(255, 102, 102, 0.05));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF3333, #FF6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666666; /* Changed */
    margin-bottom: 2rem;
}

/* CTA Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    text-align: center;
}



/* Footer */
.footer {
    background: #ffffff; /* Changed from #f2f2f2 to white */
    border-top: 1px solid rgba(0, 0, 0, 0.07); /* Lighter */
    padding-top: 10px; /* Increased top space */
    padding-bottom: 10px; /* Added bottom padding */
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #222222; /* Changed */
}

.footer-section p {
    color: #666666; /* Changed */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 51, 51, 0.08); /* Lighter */
    border: 1px solid rgba(0, 0, 0, 0.07); /* Lighter */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666; /* Changed */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem; /* Increased icon size */
}

.social-links a:hover {
    background: #FF3333;
    border-color: #FF3333;
    color: white;
}

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07); /* Lighter */
    margin: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999999; /* Changed */
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #999999; /* Changed */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF3333;
}

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

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

@keyframes glow {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95); /* Changed */
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.07); /* Changed */
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-card {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .crypto-card {
        padding: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 2.5rem;
    }
}
