@font-face {
    font-family: 'BOOWIE';
    src: url('image/BOOWIE.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: #222;
    background-color: #f8f9fb;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    padding: 0.5rem 2rem;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -2rem;
}

.navbar .logo h1 {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: dodgerblue;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar a:hover {
    color: #007bff;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: #333;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
    color: #333;
}

.dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 3px;
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    display: flex !important;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    margin: 0;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

.social-icon:nth-child(1) svg {
    fill: #000;
}

.social-icon:nth-child(2) svg {
    fill: #0088cc;
}

.social-icon:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* HERO */
.hero {
    padding: 4rem 0;
    background: #fff;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 2rem;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text p {
    margin-bottom: 1.5rem;
}

.hero-text .quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-text .intro strong {
    color: dodgerblue;
}

.hero-logo img {
    width: 450px;
    max-width: 100%;
}

.hero .btn-primary {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}


/* PROJECT */
.project {
    text-align: center;
    padding: 3rem 1rem;
}

.project .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

.project h2 {
    margin-bottom: 2rem;
    font-weight: 700;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.project-note {
    text-align: center;
    margin-top: 3rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-item {
    flex: 1;
    min-width: 250px;
}

.moveplus-item,
.marketplace-item,
.hello-item {
    flex-basis: calc(33.333% - 1.5rem);
}

.wallet-item,
.connect-item {
    flex-basis: calc(33.333% - 1.5rem);
}

.spacer-item {
    flex-basis: calc(33.333% - 1.5rem);
    visibility: hidden;
    height: 0;
}

.moveplus-item {
    text-align: left;
    margin-left: -2rem;
}

.marketplace-item {
    text-align: center;
}

.hello-item {
    text-align: right;
    margin-right: -2rem;
}

.project-item h3 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 70px;
    line-height: 1.1;
}

.project-item p {
    margin-top: 5px;
}

.project-item .moveplus {
    font-weight: 800;
    font-style: italic;
    color: #7bda00;
}

.project-item .marketplace {
    font-weight: 600;
    text-align: center;
    line-height: 0.5;
}

.project-item .marketplace-title {
    color: dodgerblue;
    font-size: 70px;
}

.project-item .marketplace-subtitle {
    color: #888;
    font-size: 35px;
    font-weight: 400;
}

.project-item .hello {
    color: #ab9ff2;
    font-family: 'BOOWIE', sans-serif;
}

.launchpad-item {
    text-align: left;
    margin-left: -3rem;
}

.wallet-item {
    text-align: center;
    margin-left: 2rem;
}

.connect-item {
    text-align: right;
    margin-right: -2rem;
}

.project-item .launchpad {
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    color: #08b1ff;
    font-size: 50px;
    white-space: nowrap;
}

.project-item .wallet {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    color: #f1f500;
    font-size: 50px;
    white-space: nowrap;
}

.project-item .connect {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    color: #08b1ff;
    font-size: 50px;
    white-space: nowrap;
}

.launchpad-item p,
.connect-item p {
    text-align: center;
}

/* TOKENOMICS */
.tokenomics {
    background: #fff;
    padding: 3rem 1rem;
}

.tokenomics .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

.tokenomics h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.tokenomics-description {
    text-align: center;
    color: #555;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tokenomics .subtext {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.tokenomics-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.tokenomics-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: -2rem;
}

.token-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.token-box {
    background: #f1f3f6;
    width: 180px;
    height: 150px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.token-box h3 {
    font-weight: 700;
    color: dodgerblue;
}

.allocation-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.allocation-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.allocation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category {
    font-weight: 600;
    color: #222;
}

.percentage {
    font-weight: 600;
    color: #222;
}

.description {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f1f3f6;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: dodgerblue;
}

/* MOVE+ SECTION */
.moveplus-section {
    background: #fff;
    padding: 3rem 1rem;
}

.moveplus-section .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

.moveplus-content {
    position: relative;
    display: inline-block;
    width: 100%;
}

.moveplus-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.moveplus-view-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    color: #333;
    border: 2px solid #333;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    z-index: 10;
}

.moveplus-view-btn:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .moveplus-section {
        padding: 2rem 1rem;
    }

    .moveplus-view-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ROADMAP */
.roadmap {
    padding: 3rem 1rem;
    background: #fff;
}

.roadmap .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
}

.roadmap h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.phase {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
}

.phase h3 {
    color: #222;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.phase .subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.phase .goal {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #555;
}

.phase .key-actions {
    font-weight: 600;
    margin: 0.5rem 0 0.25rem 0;
    color: #555;
}

.phase ul {
    list-style: none;
    margin: 0.5rem 0;
    padding: 0;
    text-align: center;
    display: inline-block;
}

.phase ul li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.phase .quote {
    font-style: italic;
    margin: 1.5rem 0 0 0;
    color: #555;
}

.final-vision {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.final-vision h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222;
    font-weight: 600;
}

.final-vision p {
    font-style: italic;
    font-weight: 500;
    color: #555;
    line-height: 1.8;
}

/* LAUNCHPAD PAGE */
.launchpad-page {
    background: #4C4C4C;
    color: #fff;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.launchpad-page-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 1.5rem;
    height: 100vh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.launchpad-wrapper {
    display: flex;
    height: calc(100vh - 3rem);
    width: 100%;
    gap: 1.5rem;
}

.launchpad-sidebar {
    width: 256px;
    background: #E8E8E8;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    border-radius: 8px;
}

.launchpad-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: dodgerblue;
    margin-bottom: 1.5rem;
}

.launchpad-btn-primary {
    width: 100%;
    background: #3b82f6;
    color: #fff;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}

.launchpad-btn-primary:hover {
    background: #2563eb;
}

.launchpad-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.launchpad-nav-link {
    display: block;
    color: #4C4C4C;
    text-decoration: none;
    transition: color 0.3s;
}

.launchpad-nav-link:hover {
    color: #333;
}

.launchpad-nav-active {
    color: #4C4C4C;
    font-weight: 600;
    background: rgba(76, 76, 76, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.launchpad-btn-secondary {
    width: 100%;
    background: #2563eb;
    color: #fff;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.3s;
}

.launchpad-btn-secondary:hover {
    background: #1d4ed8;
}

.launchpad-footer-links {
    color: #4C4C4C;
    font-size: 0.875rem;
}

.launchpad-footer-links p {
    margin-bottom: 0.25rem;
}

.launchpad-main {
    flex: 1;
    padding: 1.5rem;
    overflow: hidden;
    background: #4C4C4C;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 8px;
    min-width: 0;
}

.launchpad-main-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.launchpad-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    flex-shrink: 0;
}

.launchpad-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.launchpad-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.launchpad-filter-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 9999px;
    flex-shrink: 0;
    height: 40px;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
}

.launchpad-tab {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: transparent;
    border: none;
    color: #E8E8E8;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

.launchpad-tab:hover {
    background: rgba(255, 255, 255, 0.15);
}

.launchpad-tab-active {
    background: #333;
    color: #fff;
}

.launchpad-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    width: fit-content;
    min-width: fit-content;
    gap: 0.5rem;
    flex-shrink: 0;
    height: 40px;
    box-sizing: border-box;
}

.launchpad-search-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.launchpad-search-input {
    background: transparent;
    width: auto;
    min-width: 250px;
    outline: none;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.launchpad-search-input::placeholder {
    color: #E8E8E8;
}

.launchpad-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    align-self: stretch;
}

@media (min-width: 768px) {
    .launchpad-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .launchpad-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.launchpad-card {
    background: #E8E8E8;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
}

.launchpad-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.launchpad-card-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
}

.launchpad-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0.25rem 0;
}

.launchpad-card-desc {
    color: #4C4C4C;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.launchpad-card-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.launchpad-link-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4C4C4C;
    text-decoration: none;
    font-size: 0.875rem;
}

.launchpad-link-icon {
    width: 16px;
    height: 16px;
}

.launchpad-social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.launchpad-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.launchpad-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.launchpad-social-icon svg {
    width: 24px;
    height: 24px;
    fill: #4C4C4C;
}

.launchpad-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.launchpad-badge-live {
    background: #fca5a5;
    color: #4C4C4C;
}

.launchpad-badge-upcoming {
    background: #93c5fd;
    color: #4C4C4C;
}

.launchpad-badge-completed {
    background: #86efac;
    color: #4C4C4C;
}

.launchpad-progress-container {
    margin: 0.5rem 0;
}

.launchpad-progress-bar {
    width: 100%;
    height: 32px;
    border-radius: 8px;
    background: #fbbf24;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.launchpad-progress-fill {
    height: 100%;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    transition: width 0.3s ease;
}

.launchpad-progress-orange {
    background: linear-gradient(to right, #f97316, #fbbf24);
}

.launchpad-progress-blue {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
}

.launchpad-progress-green {
    background: linear-gradient(to right, #22c55e, #86efac);
}

.launchpad-progress-text-overlay {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.launchpad-progress-percent {
    position: absolute;
    right: 0.5rem;
    color: #4C4C4C;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.launchpad-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.launchpad-countdown {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.launchpad-countdown-label {
    color: #4C4C4C;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.launchpad-countdown-time {
    color: #4C4C4C;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.launchpad-card-btn {
    background: #4C4C4C;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s;
    white-space: nowrap;
}

.launchpad-card-btn:hover {
    background: #333;
}

/* PAGINATION */
.launchpad-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.launchpad-pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #E8E8E8;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launchpad-pagination-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.launchpad-pagination-btn.active {
    background: #333;
    color: #fff;
    font-weight: 600;
}

.launchpad-pagination-dots {
    color: #E8E8E8;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

/* FOOTER */
.footer {
    background: #007bff;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .navbar .logo {
        margin-left: 0;
    }

    .navbar .logo h1 {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 3rem 0;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
        margin-left: 1rem;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-menu a {
        padding: 0.25rem 0;
    }

    .nav-menu .social-icons {
        margin-top: 2rem;
        justify-content: center;
    }

    .social-icons {
        gap: 0.25rem;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }

    .tokenomics-content {
        flex-direction: column;
    }

    .tokenomics-column {
        margin-left: 0;
    }

    .token-grid {
        justify-self: center;
    }

    .token-box {
        width: 100%;
        max-width: 180px;
        height: 150px;
    }

    .project-grid {
        flex-direction: column;
    }

    .moveplus-item {
        margin-left: 0;
        text-align: center;
    }

    .hello-item {
        margin-right: 0;
        text-align: center;
    }

    .launchpad-item {
        margin-left: 0;
        text-align: center;
    }

    .wallet-item {
        margin-left: 0;
        text-align: center;
    }

    .connect-item {
        margin-right: 0;
        text-align: center;
    }

    .spacer-item {
        display: none;
    }

    .project-item h3 {
        font-size: 40px;
    }

    .project-item .marketplace-title {
        font-size: 40px;
    }

    .project-item .marketplace-subtitle {
        font-size: 20px;
    }

    .hero-logo img {
        width: 100%;
        max-width: 300px;
    }

    .phase h3 {
        font-size: 1.2rem;
    }

    .phase .subtitle {
        font-size: 1rem;
    }

    .phase .goal {
        font-size: 0.9rem;
    }

    .final-vision h4 {
        font-size: 1.1rem;
    }

    .final-vision p {
        font-size: 0.9rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .project {
        padding: 2rem 1rem;
    }

    .tokenomics {
        padding: 2rem 1rem;
    }

    .roadmap {
        padding: 2rem 1rem;
    }

    .launchpad-page-container {
        padding: 0 1rem;
    }

    .launchpad-wrapper {
        flex-direction: column;
    }

    .launchpad-sidebar {
        width: 100%;
        padding: 1rem;
    }

    .launchpad-main {
        padding: 1.5rem;
    }

    .launchpad-main-content {
        padding: 0 1rem;
    }

    .launchpad-filters {
        flex-direction: column;
        gap: 1rem;
    }

    .launchpad-filter-tabs {
        width: 100%;
    }

    .launchpad-search {
        width: fit-content;
        min-width: fit-content;
    }
    
    .launchpad-search-input {
        min-width: 200px;
    }

    .launchpad-title {
        font-size: 1.5rem;
    }

    .launchpad-pagination {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .launchpad-pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* REWARD TOKEN MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    padding-top: 3rem;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    clear: both;
    box-sizing: border-box;
}

.modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    line-height: 1;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover,
.modal-close:focus {
    color: #000;
}

.modal-section {
    margin-bottom: 2rem;
    clear: both;
}

.modal-section:first-child {
    margin-top: 0;
}

.modal-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-section h3 {
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section h4 {
    color: #333;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.total-supply {
    font-weight: 600;
    color: #333;
    margin-top: 1rem;
}

.note {
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
}

.tokenomics-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.tokenomics-table thead {
    background-color: #f8f9fa;
}

.tokenomics-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.tokenomics-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
    color: #555;
}

.tokenomics-table tbody tr:hover {
    background-color: #f8f9fa;
}

.total-row {
    background-color: #f0f8f0;
    font-weight: 600;
}

.total-cell {
    text-align: center;
    color: #22c55e;
    padding: 1rem;
}

.vesting-details {
    margin-top: 1rem;
}

.vesting-item {
    margin-bottom: 1.5rem;
}

.vesting-item strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.vesting-item ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.vesting-item li {
    color: #555;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.utility-intro {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.overview-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.overview-list li {
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.overview-list li strong {
    color: #333;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    margin-left: 1.5rem;
}

.trust-list li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.trust-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.utility-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    margin-left: 1.5rem;
}

.utility-list li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.utility-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.earning-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    margin-left: 1.5rem;
}

.earning-list li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.earning-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.earning-list li strong {
    color: #333;
}

.final-note {
    font-style: italic;
    color: #666;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.wallet-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.wallet-features li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.wallet-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wallet-features li strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.wallet-features li p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* LAUNCHPAD DIALOG */
.dialog-content {
    max-width: 500px;
    text-align: center;
}

.dialog-message {
    padding: 1rem 0;
}

.dialog-message h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dialog-message p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dialog-ok-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
    font-size: 1rem;
}

.dialog-ok-btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
        padding-top: 2.5rem;
    }
    
    .modal-close {
        right: 0.75rem;
        top: 0.75rem;
        font-size: 24px;
    }

    .tokenomics-table {
        font-size: 0.9rem;
    }

    .tokenomics-table th,
    .tokenomics-table td {
        padding: 0.5rem;
    }
}