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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #374151;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, #f97316, #eab308);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trending-up-icon, .wallet-icon, .zap-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #000000;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.connect-wallet-btn {
    background: linear-gradient(to right, #f97316, #eab308);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.connect-wallet-btn:hover {
    background: linear-gradient(to right, #ea580c, #ca8a04);
}

/* Hero Section */
.hero-section {
    padding: 6rem 1.5rem 4rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.bull-run-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, rgba(249, 115, 22, 0.2), rgba(234, 179, 8, 0.2));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.zap-icon {
    width: 1rem;
    height: 1rem;
    color: #fb923c;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(to right, #fb923c, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Countdown Timer */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto 3rem;
}

.countdown-item {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fb923c;
}

.countdown-label {
    font-size: 0.875rem;
    color: #9ca3af;
    text-transform: capitalize;
}

/* Presale Card */
.presale-card {
    max-width: 32rem;
    margin: 0 auto 2rem;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid #374151;
    border-radius: 0.75rem;
    padding: 2rem;
}

.presale-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.presale-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.presale-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 0.75rem;
    background: #374151;
    border-radius: 0.375rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #f97316, #eab308);
    width: 49%;
    transition: width 0.3s ease;
}

.progress-percentage {
    font-size: 0.875rem;
    color: #fb923c;
}

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

.price-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem;
}

.price-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.price-value {
    font-size: 1.25rem;
    font-weight: bold;
}

.purchase-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eth-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.eth-input::placeholder {
    color: #6b7280;
}

.eth-input:focus {
    outline: none;
    border-color: #f97316;
}

.buy-button {
    width: 100%;
    background: linear-gradient(to right, #f97316, #eab308);
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.buy-button:hover {
    background: linear-gradient(to right, #ea580c, #ca8a04);
}

/* Features Section */
.features-section {
    padding: 4rem 1.5rem;
    background: rgba(3, 7, 18, 0.5);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid #374151;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    color: #fb923c;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #9ca3af;
}

/* Whitepaper Section */
.whitepaper-section {
    padding: 4rem 1.5rem;
}

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

.whitepaper-icon {
    width: 4rem;
    height: 4rem;
    color: #fb923c;
    margin: 0 auto 1rem;
}

.whitepaper-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    background: linear-gradient(to right, #f97316, #eab308);
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(to right, #ea580c, #ca8a04);
}

.download-icon {
    width: 1rem;
    height: 1rem;
}

.whitepaper-card, .tokenomics-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid #374151;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.whitepaper-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .whitepaper-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-icon {
    width: 3rem;
    height: 3rem;
    color: #fb923c;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-title.orange {
    color: #fb923c;
}

.card-title.red {
    color: #f87171;
}

.card-text {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.card-text.small {
    font-size: 0.875rem;
}

.card-list {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-left: 1.5rem;
    line-height: 1.75;
}

.orange-text {
    color: #fb923c;
}

/* Tokenomics Stats */
.tokenomics-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #fb923c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
}

.tokenomics-details {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .tokenomics-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.subsection-title {
    font-weight: bold;
    margin-bottom: 1rem;
}

.allocation-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.allocation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
}

.badge {
    background: rgba(156, 163, 175, 0.2);
    color: #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.economic-list p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

/* Team Section */
.team-list {
    margin-bottom: 1rem;
}

.team-item {
    border-left: 2px solid #f97316;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.team-title {
    font-weight: bold;
}

.team-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Security Section */
.security-list {
    margin-bottom: 1rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.security-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
}

/* Risk Section */
.risk-card {
    background: rgba(127, 29, 29, 0.1);
    border: 1px solid rgba(220, 38, 127, 0.5);
    border-radius: 0.75rem;
    padding: 2rem;
}

.risk-icon {
    width: 3rem;
    height: 3rem;
    color: #f87171;
    margin-bottom: 1rem;
}

.risk-content p {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.disclaimer {
    border-top: 1px solid rgba(220, 38, 127, 0.3);
    padding-top: 1rem;
    font-weight: bold;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 4rem 1.5rem;
}

.tokenomics-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.distribution-item, .token-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label {
    color: #9ca3af;
}

/* Roadmap Section */
.roadmap-section {
    padding: 4rem 1.5rem;
    background: rgba(3, 7, 18, 0.5);
}

.roadmap-container {
    max-width: 48rem;
    margin: 0 auto;
}

.roadmap-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roadmap-item {
    position: relative;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid #374151;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-left: 1.5rem;
}

.roadmap-item.completed {
    border-color: #10b981;
}

.roadmap-item.active {
    border-color: rgba(249, 115, 22, 0.5);
}

.roadmap-dot {
    position: absolute;
    left: -0.75rem;
    top: 1.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #6b7280;
}

.roadmap-item.completed .roadmap-dot {
    background: #10b981;
}

.roadmap-item.active .roadmap-dot {
    background: #f97316;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.roadmap-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.roadmap-description {
    color: #9ca3af;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem;
    border-top: 1px solid #374151;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

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

.footer-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fb923c;
}

.link-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-text {
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .whitepaper-title-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tokenomics-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}