/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    background: #fff;
    color: #0a1034;
    min-height: 100vh;
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    /* Hide scrollbar for IE and Edge */
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

html {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* ===== Navbar ===== */
nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    z-index: 3;
}

.logo {
    width: 150px;
    height: 150px;
}

ul {
    display: flex;
    gap: 36px;
}

li {
    list-style: none;
}

a {
    color: #0a1034;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #c31fc3;
}

.nav-btn {
    color: black;
    background-color: white;
    padding: 12px 15px 15px 12px;
    border-radius: 15px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.nav-btn:hover {
    background: linear-gradient(160deg, rgb(108, 30, 178), rgb(209, 79, 160));
    color: white;
}

/* ===== Hero Section ===== */
.header-to-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}

.hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero>*:not(.video-background):not(.hero-fade) {
    position: relative;
    z-index: 2;
}

.main-title {
    padding-left: 255px;
    padding-top: 100px;
    font-size: 45px;
    font-weight: bold;
    color: #0a1034;
    margin-bottom: 12px;
    line-height: 1.1;
}

.secondary-main {
    padding-left: 255px;
    color: #8a8fa3;
    font-size: 18px;
    width: 640px;
    margin-bottom: 32px;
}

.service-btn {
    padding: 15px;
    color: #fff;
    background: #0a1034;
    font-weight: bold;
    font-size: 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    margin-top: 24px;
    cursor: pointer;
    width: 195px;
    height: 50px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px 0 rgba(80, 80, 120, 0.10);
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.service-btn:hover {
    background: #2d2d5a;
    transform: translateY(-2px) scale(1.03);
}

.hero-fade {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

/* ===== Categories Section ===== */
.categories-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px 60px 20px;
    position: relative;
}

.categories-title {
    font-size: 60px;
    font-weight: 800;
    color: #0a1034;
    margin-bottom: 18px;
    margin-top: 0;
    letter-spacing: 1px;
}

.categories-description {
    color: #b3b3b3;
    font-size: 18px;
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto 40px auto;
    line-height: 1.4;
    text-align: center;
}

.categories-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

@media (min-width: 900px) {
    .categories-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

.category-card {
    position: relative;
    overflow: hidden;
    width: 340px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.10);
    transition: box-shadow 0.3s, transform 0.3s;
}

.category-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.card-fade {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 95%;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 3;
    padding-bottom: 40px;
}

.category-name {
    font-size: 28px;
    color: #0a1034;
    font-weight: bold;
    margin-bottom: 18px;
    margin-top: 0;
    text-align: center;
}

.category-btn {
    background: #0a1034;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 12px 36px;
    margin-top: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: block;
}

.category-btn:hover {
    background: #2d2d5a;
    transform: translateY(-2px) scale(1.03);
}

/* ===== Responsive Design ===== */
@media (max-width: 1100px) {
    nav {
        flex-direction: row;
        padding: 32px 16px 0 16px;
    }

    .logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 900px) {
    nav {
        flex-wrap: wrap;
        gap: 0;
    }

    ul {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .hamburger {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        margin-left: 18px;
    }

    .mobile-nav {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 24px 0 rgba(80, 80, 120, 0.10);
        padding: 80px 32px 32px 32px;
        gap: 32px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(.4, 2, .6, 1);
    }

    .mobile-nav.open {
        right: 0;
    }

    .mobile-nav a,
    .mobile-nav-btn {
        font-size: 22px;
        font-weight: 700;
        color: #0a1034;
        text-decoration: none;
        margin-bottom: 12px;
        transition: color 0.2s;
        background: none;
        border: none;
        text-align: left;
        padding: 0;
    }

    .mobile-nav a:hover,
    .mobile-nav-btn:hover {
        color: #c31fc3;
    }
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 18px;
        padding: 24px 8px 0 8px;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .main-title {
        font-size: 28px;
    }

    .categories-title {
        font-size: 28px;
    }

    .category-card {
        width: 95vw;
        min-width: 0;
        padding: 18px 4px;
    }

    .category-video {
        width: 90vw;
        height: 120px;
    }
}

@media (max-width: 700px) {
    .hero {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .main-title {
        font-size: 24px;
        line-height: 1.15;
        max-width: 90vw;
        margin: 0 auto 12px auto;
        text-align: center;
        word-break: break-word;
    }

    .secondary-main {
        font-size: 14px;
        max-width: 90vw;
        margin: 0 auto 18px auto;
        text-align: center;
        word-break: break-word;
    }

    .service-btn {
        font-size: 16px;
        padding: 12px 24px;
        margin: 18px auto 0 auto;
        display: block;
    }
}

.about-section {
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-video-player {
    width: 340px;
    height: 140px;
    margin: 0 auto 32px auto;
    border-radius: 999px;
    overflow: hidden;
    border: 4px solid #e3eafd;
    box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.about-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-title {
    font-size: 56px;
    font-weight: 800;
    color: #0a1034;
    margin-bottom: 18px;
    margin-top: 0;
    letter-spacing: 1px;
}

.about-description {
    color: #8a8fa3;
    font-size: 22px;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 32px auto;
    line-height: 1.4;
    text-align: center;
}

.about-btn {
    background: #fff;
    color: #0a1034;
    font-size: 22px;
    font-weight: 700;
    border: 3px solid #d0e3ff;
    border-radius: 18px;
    padding: 18px 48px;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 2px 12px 0 rgba(80, 80, 120, 0.06);
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.about-btn:hover {
    background: #e3eafd;
    color: #0a1034;
    border-color: #b3d1ff;
}

.section-fade {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.token-section {
    position: relative;
    width: 100%;
    padding: 80px 0 40px 0;
    background: #fff;
    min-height: 600px;
}

.section-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.token-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.token-left {
    flex: 1 1 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 340px;
    max-width: 600px;
}

.token-address-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(80, 80, 120, 0.10);
    padding: 18px 32px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.token-copy-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
}

.token-title {
    font-size: 64px;
    font-weight: 800;
    color: #0a1034;
    margin-bottom: 18px;
    margin-top: 0;
    letter-spacing: 1px;
}

.token-description {
    color: #8a8fa3;
    font-size: 24px;
    font-weight: 500;
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.4;
}

.token-utility-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-top: 10px;
    width: 100%;
}

.utility-card {
    background: #f8fbff;
    border: 2px solid #d0e3ff;
    border-radius: 16px;
    padding: 18px 32px 18px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 22px;
    font-weight: 700;
    color: #0a1034;
    min-width: 0;
    min-height: 80px;
    box-shadow: 0 2px 12px 0 rgba(80, 80, 120, 0.06);
    transition: border 0.2s, box-shadow 0.2s;
    width: 100%;
}

.utility-card img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}

.utility-card span {
    display: block;
}

.utility-card:hover {
    border: 2px solid #a7c7ff;
    box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.12);
}

.token-right {
    flex: 1 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
}

.token-coin-img {
    width: 420px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(80, 80, 120, 0.10));
}

@media (max-width: 1100px) {
    .token-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .token-right {
        margin-top: 32px;
    }

    .token-title {
        font-size: 32px;
    }

    .token-description {
        font-size: 16px;
    }

    .utility-card {
        font-size: 16px;
        min-width: 140px;
        padding: 12px 12px 12px 12px;
    }

    .token-coin-img {
        width: 220px;
    }
}

@media (max-width: 700px) {
    .token-title {
        font-size: 24px;
    }
}

@media (max-width: 900px) {
    .token-utility-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .utility-card {
        font-size: 18px;
        padding: 14px 16px 14px 14px;
        min-height: 64px;
    }
}

.contact-section {
    position: relative;
    width: 100%;
    background: #f8fbff;
    padding: 80px 0 60px 0;
    min-height: 500px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.contact-info {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    color: #0a1034;
    margin-bottom: 12px;
    margin-top: 0;
}

.contact-subtitle {
    color: #8a8fa3;
    font-size: 20px;
    margin-bottom: 32px;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #0a1034;
    font-weight: 600;
}

.contact-detail img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(80, 80, 120, 0.10));
}

.contact-form {
    flex: 1 1 400px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.10);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
    min-width: 320px;
    max-width: 480px;
}

.contact-form input,
.contact-form textarea {
    border: 2px solid #d0e3ff;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 18px;
    font-family: inherit;
    color: #0a1034;
    background: #f8fbff;
    outline: none;
    transition: border 0.2s;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 2px solid #a7c7ff;
}

.contact-form button {
    background: #0a1034;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px 0 rgba(80, 80, 120, 0.10);
}

.contact-form button:hover {
    background: #2d2d5a;
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .contact-form {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }
}

.footer-section {
    width: 100%;
    background: #fff;
    padding: 60px 0 0 0;
    font-family: inherit;
}

.footer-main {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 40px;
    min-height: 220px;
}

.footer-left {
    flex: 1 1 340px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.footer-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.footer-desc {
    color: #6d7280;
    font-size: 18px !important;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 500px;
    padding-left: 25px;
    line-height: 1.5;
}

.footer-center {
    flex: 1 1 340px;
    min-width: 320px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 18px;
}

.footer-token-box {
    background: #fff;
    border: 2px solid #d0e3ff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.10);
    padding: 22px 28px;
    font-size: 20px;
    font-weight: 500;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-copy-icon {
    width: 26px;
    height: 26px;
    vertical-align: middle;
}

.footer-links {
    flex: 2 1 500px;
    min-width: 320px;
    display: flex;
    gap: 60px;
    justify-content: flex-end;
    margin-top: 18px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 180px;
}

.footer-col-title {
    color: #8a8fa3;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-col a {
    color: #0a1034;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #c31fc3;
}

.footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding: 0 40px 32px 40px;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f8fbff;
    border-radius: 50%;
    transition: background 0.2s;
}

.footer-socials a:hover {
    background: #e3eafd;
}

.footer-socials img {
    width: 28px;
    height: 28px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #6d7280;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #c31fc3;
}

.footer-copyright {
    color: #0a1034;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 0 16px;
    }

    .footer-links {
        gap: 32px;
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 0 16px 32px 16px;
    }
}

@media (max-width: 700px) {
    .footer-section {
        padding: 40px 0 0 0;
    }

    .footer-main {
        gap: 18px;
    }

    .footer-col-title {
        font-size: 18px;
    }

    .footer-col a {
        font-size: 16px;
    }

    .footer-desc {
        font-size: 14px;
        padding-left: 0;
    }

    .footer-token-box {
        font-size: 12px;
        padding: 8px 6px;
    }

    .footer-bottom {
        margin-top: 32px;
        gap: 10px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-legal a {
        font-size: 12px;
    }
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: transparent;
    z-index: 9999;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(140deg, rgb(108, 30, 178), rgb(209, 79, 160));
    border-radius: 5px;
    transition: width 0.2s ease-out;
}

.mobile-nav {
    display: none !important;
}

.hamburger {
    display: none !important;
}

@media (max-width: 900px) {
    .mobile-nav {
        display: flex !important;
    }

    .hamburger {
        display: block !important;
    }

    ul {
        display: none !important;
    }

    .nav-btn:not(.mobile-nav-btn) {
        display: none !important;
    }
}