* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #c8102e 0%, #007a3d 100%);
    min-height: 100vh;
    color: white;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.buy-btn {
    background: #ffd700;
    color: #c8102e;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Main Content */
.main {
    margin-top: 80px;
    padding: 2rem;
}

/* Announcement / News banner */
.news-banner {
    max-width: 1200px;
    margin: 0 auto 1rem auto;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.news-badge {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #1f2937;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.news-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.news-text strong { color: #ffd700; }

.cta-row { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }

.secondary-button {
    background: transparent;
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.6);
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - 120px);
}

/* Left Section - Stats */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.token-info {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.token-info h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.token-info p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.token-info p:last-child {
    margin-bottom: 0;
}

.token-info strong {
    color: #ffd700;
    font-weight: 600;
}


/* Center Section - Character */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.character-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-title {
    position: absolute;
    top: -300px; /* sits level with left headline */
    right: -300px; /* moved additional ~0.5 inch to the right */
    transform: translateY(-10%);
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    padding-left: 1rem;
    max-width: 900px; /* tighten width so it doesn't intrude left column */
    line-height: 1.2;
    white-space: nowrap; /* keep exactly two lines with <br> */
}

@media (max-width: 1024px) {
    .mega-title { font-size: 2rem; max-width: 720px; right: -248px; top: -220px; white-space: normal; }
}

@media (max-width: 768px) {
    .mega-title { position: static; text-align: center; margin: 0.75rem auto 0.5rem; font-size: 1.4rem; white-space: normal; }
}

.character-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-image {
    width: 280px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3))
            drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transform: perspective(500px) rotateY(-5deg);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.character-image:hover {
    transform: perspective(500px) rotateY(-2deg) scale(1.05);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4))
            drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
}

.character-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.character-image:hover::before {
    opacity: 1;
}

.character-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.character-image:hover::after {
    opacity: 1;
}

}

/* Right Section - Donation Card */
.hero-right {
    display: flex;
    justify-content: center;
}

.donation-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 300px;
    text-align: center;
}

.card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.progress-section {
    margin-bottom: 2rem;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.progress-percentage {
    color: #ffd700;
    font-size: 1.5rem;
}

.progress-numbers {
    opacity: 0.8;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.donation-info {
    margin-bottom: 2rem;
}

.donation-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.donation-label {
    opacity: 0.8;
    font-size: 0.9rem;
}

.buy-button {
    background: #ffd700;
    color: #c8102e !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    width: 100%;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Roadmap Page Styles */
.roadmap-hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.roadmap-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.roadmap-subtitle {
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 4rem;
    color: white;
}

.statement-box {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    color: #fff;
}

.statement-box h3 {
    color: #ffd700;
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
}

.statement-box p { line-height: 1.6; opacity: 0.95; }

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

/* Removed thick line for a cleaner, more sober presentation */
.timeline-line { display: none; }

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    flex: 1;
}

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

.timeline-content p {
    color: white;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.timeline-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.timeline-status.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.timeline-status.in-progress {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.timeline-status.upcoming {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.timeline-status.breaking {
    background: rgba(234, 88, 12, 0.2); /* orange-500 */
    color: #fb923c;
    border: 1px solid rgba(234, 88, 12, 0.3);
}

/* Roadmap Mobile Responsiveness */
@media (max-width: 768px) {
    .roadmap-title {
        font-size: 2.2rem;
    }

    .roadmap-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .timeline-marker {
        order: -1;
    }

    .timeline-content {
        padding: 1.2rem;
    }

    .timeline-line {
        height: 6px;
    }
}

@media (max-width: 480px) {
    .roadmap-title {
        font-size: 1.8rem;
    }

    .roadmap-subtitle {
        font-size: 0.9rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .main {
        margin-top: 120px; /* Increased for mobile header */
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .token-info {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .token-info h3 {
        font-size: 1.1rem;
    }

    .token-info p {
        font-size: 0.9rem;
    }

    .character-container {
        order: -1;
        margin-bottom: 1rem;
    }

    .character-image {
        width: 200px;
    }

    .donation-card {
        width: 100%;
        max-width: 350px;
        padding: 1.5rem;
    }

    .progress-section {
        margin-bottom: 1.5rem;
    }

    .donation-info {
        margin-bottom: 1.5rem;
    }

    .buy-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    /* News banner mobile tweaks */
    .news-banner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .news-text { font-size: 0.9rem; }
    .news-badge { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .main {
        margin-top: 140px; /* Even larger for very small screens */
    }

    .nav {
        padding: 0.8rem;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .token-info {
        padding: 0.8rem;
    }

    .token-info h3 {
        font-size: 1rem;
    }

    .token-info p {
        font-size: 0.85rem;
    }

    .character-image {
        width: 180px;
    }

    .donation-card {
        padding: 1.2rem;
        max-width: 320px;
    }

    .buy-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* News banner very small screens */
    .news-text { font-size: 0.85rem; }
}
