/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, #dbdbdb, #a0003d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1F2937;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #74002d 0%, #a0003d 100%);
}
.newsletter-form {
    max-width: 100%;
}

.newsletter-form .input-group input {
    border-radius: 0.5rem 0 0 0.5rem;
}

.newsletter-form .input-group button {
    border-radius: 0 0.5rem 0.5rem 0;
}

#newsletter {
    display: none;
    transition: all 0.3s ease;
}

.alert {
    display: block !important;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.navbar.scrolled .navbar-brand {
    color: #74002d !important;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: #1F2937 !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: #74002d !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #74002d !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    color: #fff;
    z-index: 2;
}

.token-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.token-badge i {
    margin-right: 0.5rem;
    color: #74002d;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.8s both;
}


.btn-primary {
    background: linear-gradient(135deg, #ff0062, #a0003d);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(116, 0, 45, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.token-circle {
    width: 400px;
    height: 400px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.token-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #74002d, #a0003d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(116, 0, 45, 0.3);
}

.token-icon {
    font-size: 4rem;
    color: #fff;
    z-index: 2;
}

.growth-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ring-1 {
    width: 450px;
    height: 450px;
    top: -25px;
    left: -25px;
}

.ring-2 {
    width: 500px;
    height: 500px;
    top: -50px;
    left: -50px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 550px;
    height: 550px;
    top: -75px;
    left: -75px;
    animation-delay: 1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* About Section */
.about-section {
    background: #fff;
    padding: 100px 0;
}

.about-content {
    padding-right: 2rem;
}

.about-content .lead {
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.contract-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 10px;
    border-left: 4px solid #74002d;
}

.contract-address {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.contract-address code {
    background: #E5E7EB;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    word-break: break-all;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.growth-chart {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #F8FAFC, #EDF2F7);
    padding: 100px 0;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #74002d, #a0003d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1F2937;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics-section {
    background: #fff;
    padding: 100px 0;
}

.tokenomics-card {
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.tokenomics-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1F2937;
}

.tokenomics-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.tokenomics-item:last-child {
    border-bottom: none;
}

.tokenomics-label {
    font-weight: 500;
    color: #6B7280;
}

.tokenomics-value {
    font-weight: 600;
    color: #1F2937;
}

.allocation-chart {
    margin-top: 1rem;
}

.allocation-item {
    margin-bottom: 1.5rem;
}

.allocation-bar {
    height: 10px;
    background: #E5E7EB;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.allocation-fill {
    height: 100%;
    background: linear-gradient(135deg, #74002d, #a0003d);
    border-radius: 5px;
    transition: width 2s ease;
}

.allocation-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6B7280;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #74002d 0%, #a0003d 100%);
    padding: 100px 0;
    color: #fff;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #74002d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.step-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap-section {
    background: #fff;
    padding: 100px 0;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
}

.timeline-item {
    position: relative;
    padding: 2rem 0 2rem 80px;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: #E5E7EB;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #E5E7EB;
}

.timeline-marker.completed {
    background: #74002d;
    box-shadow: 0 0 0 3px #74002d;
}

.timeline-marker.active {
    background: #74002d;
    box-shadow: 0 0 0 3px #74002d;
    animation: pulse 2s infinite;
}

.timeline-content {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #74002d;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.timeline-content p {
    color: #6B7280;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1F2937, #111827);
    color: #fff;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Footer */
.footer {
    background: #111827;
    color: #D1D5DB;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #74002d;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #74002d;
    color: #fff;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .buy-dropdown {
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .token-circle {
        width: 300px;
        height: 300px;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .token-circle {
        width: 250px;
        height: 250px;
    }
    
    .token-icon {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .tokenomics-card {
        padding: 2rem;
    }
    
    .step-card {
        padding: 2rem;
    }
}