/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0b0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.dot {
    display: inline-block;
    animation: bounce 1.5s infinite;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

.loading-bar {
    width: 16rem;
    height: 0.5rem;
    background-color: #1f2937;
    border-radius: 9999px;
    overflow: hidden;
}

.loading-fill {
    height: 100%;
    background-color: #e63946;
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1f2937 0%, #000 50%, #7f1d1d 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1) 0%, transparent 50%, rgba(239, 68, 68, 0.1) 100%);
    animation: pulse 4s infinite;
}

.hero .container {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    transition: transform 0.3s ease;
}

.hero-title:hover {
    transform: scale(1.05);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: #d1d5db;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    color: #9ca3af;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e63946;
    background: transparent;
    color: #ffffff;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-btn:hover {
    background-color: #e63946;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.25);
}

.contract-section {
    max-width: 28rem;
    margin: 0 auto;
}

.contract-section label {
    display: block;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.contract-box {
    background-color: #1f2937;
    border: 1px solid #4b5563;
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.contract-box:hover {
    background-color: #374151;
}

#contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-tooltip {
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #1f2937;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.about-quote {
    font-size: 1.25rem;
    color: #f87171;
    font-style: italic;
    margin-bottom: 2rem;
}

.red-flags {
    list-style: none;
}

.red-flags li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #d1d5db;
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.red-flags li:nth-child(1) { animation-delay: 0.1s; }
.red-flags li:nth-child(2) { animation-delay: 0.2s; }
.red-flags li:nth-child(3) { animation-delay: 0.3s; }
.red-flags li:nth-child(4) { animation-delay: 0.4s; }
.red-flags li:nth-child(5) { animation-delay: 0.5s; }
.red-flags li:nth-child(6) { animation-delay: 0.6s; }

.flag {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.warning-card {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.warning-card:hover {
    transform: scale(1.05);
}

.warning-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.warning-card h3 {
    font-size: 1.5rem;
    color: #f87171;
    margin-bottom: 1rem;
}

/* Tokenomics Section */
.tokenomics {
    padding: 5rem 0;
    background-color: #000;
}

.tokenomics h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #4b5563;
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-card:nth-child(1) i { color: #3b82f6; }
.stat-card:nth-child(2) i { color: #10b981; }
.stat-card:nth-child(3) i { color: #f87171; }
.stat-card:nth-child(4) i { color: #fbbf24; }

.stat-card h3 {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    font-size: 0.875rem;
    color: #9ca3af;
    display: block;
    margin-top: 0.5rem;
}

.stat-card p {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Rugmap Section */
.rugmap {
    padding: 5rem 0;
    background-color: #1f2937;
}

.rugmap h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
}

.timeline {
    max-width: 4xl;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #374151;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 4rem;
}

.timeline-dot {
    position: absolute;
    left: 0.75rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    z-index: 10;
}

.timeline-item.completed .timeline-dot {
    background-color: #10b981;
}

.timeline-item.current .timeline-dot {
    background-color: #e63946;
    animation: pulse 2s infinite;
}

.timeline-item.upcoming .timeline-dot {
    background-color: #4b5563;
}

.timeline-content {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background-color: #374151;
    transform: scale(1.02);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.rug-animation {
    text-align: center;
    margin-top: 3rem;
}

.rug-emoji {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

/* Rugpaper Section */
.rugpaper {
    padding: 5rem 0;
    background-color: #000;
}

.rugpaper h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
}

.rugpaper-content {
    max-width: 3xl;
    margin: 0 auto;
    text-align: center;
}

.rugpaper-card {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.rugpaper-card:hover {
    transform: scale(1.02) rotate(1deg);
}

.rugpaper-card i {
    font-size: 3rem;
    color: #f87171;
    margin-bottom: 1.5rem;
    display: block;
}

.rugpaper-card p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.rugpaper-card em {
    color: #f87171;
}

.rugpaper-btn {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.rugpaper-btn:hover {
    background-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

/* Community Section */
.community {
    padding: 5rem 0;
    background-color: #1f2937;
}

.community h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
}

.community-description {
    text-align: center;
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 4rem;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 2xl;
    margin: 0 auto;
}

.community-card {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #4b5563;
}

.community-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.community-card:hover .community-icon {
    transform: scale(1.1);
}

.community-icon.blue {
    background-color: #3b82f6;
}

.community-icon.purple {
    background-color: #8b5cf6;
}

.community-icon i {
    font-size: 1.5rem;
    color: white;
}

.community-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.community-card p {
    color: #9ca3af;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.community-card button {
    border: 1px solid #4b5563;
    background: transparent;
    color: #d1d5db;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.community-card button:hover {
    background-color: #374151;
    color: white;
}

/* Footer */
.footer {
    background-color: #1f2937;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    padding: 3rem 0;
}

.footer .container {
    text-align: center;
}

.footer-disclaimer {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e63946;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background-color: #e63946;
    transform: scale(1.1);
}

.social-icon i {
    color: white;
    font-size: 1rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25%);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer Animations */
.animate-in .stat-card {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-in .stat-card:nth-child(1) { animation-delay: 0.1s; }
.animate-in .stat-card:nth-child(2) { animation-delay: 0.2s; }
.animate-in .stat-card:nth-child(3) { animation-delay: 0.3s; }
.animate-in .stat-card:nth-child(4) { animation-delay: 0.4s; }

.animate-in .timeline-item {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-in .timeline-item:nth-child(1) { animation-delay: 0.2s; }
.animate-in .timeline-item:nth-child(2) { animation-delay: 0.4s; }
.animate-in .timeline-item:nth-child(3) { animation-delay: 0.6s; }

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
    
    .cta-btn .btn-text {
        display: inline;
    }
    
    .hero-title {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .hero-description {
        font-size: clamp(1.125rem, 2vw, 1.5rem);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item:nth-child(odd) {
        text-align: right;
        padding-left: 0;
        padding-right: calc(50% + 2rem);
    }
    
    .timeline-item:nth-child(even) {
        padding-left: calc(50% + 2rem);
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot {
        left: calc(50% - 0.5rem);
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: calc(50% - 0.5rem);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-title {
        font-size: clamp(4rem, 8vw, 8rem);
    }
    
    .hero-subtitle {
        font-size: clamp(2rem, 3vw, 3rem);
    }
}

@media (max-width: 639px) {
    .cta-btn .btn-text {
        display: none;
    }
    
    .cta-btn {
        padding: 0.75rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline::before {
        left: 0.75rem;
    }
    
    .timeline-dot {
        left: 0.5rem;
    }
}