/* 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-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-orange: #ff8c00;
    --secondary-orange: #ffa500;
    --accent-orange: #ffb84d;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --light-text: #ffffff;
    --gray-text: #cccccc;
    --card-bg: #1a1a1a;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: 0.3s;
}

.nav-social {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.twitter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--light-text);
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.twitter-icon:hover {
    color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.twitter-icon svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pulse-text {
    color: var(--primary-orange);
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { text-shadow: 0 0 20px rgba(255, 140, 0, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 140, 0, 0.8); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

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

.coin-display {
    position: relative;
}

.hero-coin {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 0 50px rgba(255, 140, 0, 0.6));
    animation: float 3s ease-in-out infinite;
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--card-bg);
}

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

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.stat h4 {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

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

.pulse-animation {
    position: relative;
}

.pulse-coin {
    width: 250px;
    height: 250px;
    animation: rotate 10s linear infinite;
    filter: drop-shadow(0 0 40px rgba(255, 140, 0, 0.5));
}

@keyframes rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) sepia(100%) hue-rotate(25deg) saturate(500%);
}

.feature-card h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    padding: 6rem 0;
    background: var(--card-bg);
}

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

.chart-placeholder {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 140, 0, 0.2);
}

.chart-coin {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.4));
}

.chart-placeholder h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.supply-number {
    color: var(--light-text);
    font-size: 2rem;
    font-weight: 700;
}

.tokenomics-breakdown h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.breakdown-item .label {
    color: var(--light-text);
    font-weight: 500;
}

.breakdown-item .percentage {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-orange), var(--secondary-orange));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    z-index: 2;
}

.timeline-item.active .timeline-marker {
    background: var(--secondary-orange);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    width: 45%;
    border: 1px solid rgba(255, 140, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-content h3 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: var(--card-bg);
    text-align: center;
}

.community-subtitle {
    color: var(--gray-text);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.community-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 140, 0, 0.1);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.community-link:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.3));
}

.footer-logo-text {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-social {
        margin-left: 0.5rem;
    }
    
    .twitter-icon {
        width: 36px;
        height: 36px;
    }
    
    .twitter-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-coin {
        width: 200px;
        height: 200px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: 100%;
        margin: 0;
        margin-top: 2rem;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}