/* =========================
   GLOBAL
========================= */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #0f5b63;
}

/* =========================
   TOP BAR
========================= */

.top-bar {
    background: #1f1f1f;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
    background: #1200ff;
    padding: 18px 0;
}

    .custom-navbar .nav-link {
        color: #fff !important;
        margin-left: 18px;
        font-weight: 500;
    }

.login-btn,
.join-btn {
    background: #21c7ff;
    color: #000;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    padding: 60px 0;
    min-height: 100vh;
    overflow: hidden;
}

.hero-content {
    margin-top: 50px;
    min-height: 80vh;
}

.hero-title {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
}

.hero-text {
    color: #ddd;
    font-size: 22px;
    line-height: 1.8;
    margin-top: 25px;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
}

.custom-btn {
    background: #1200ff;
    border: none;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* =========================
   MARKET SECTION
========================= */

.market-box {
    background: #fff;
    margin-top: 80px;
    padding: 30px;
}

.market-image {
    width: 100%;
    border-radius: 15px;
}

.market-title {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.3;
}

    .market-title span {
        color: #1f45ff;
    }

.market-text {
    color: #999;
    margin-top: 20px;
    line-height: 1.8;
    font-size: 18px;
}

.market-box h5 {
    font-weight: bold;
}

/* =========================
   FOOTER
========================= */

.footer-section {
    background: #071f24;
    padding: 70px 0 20px;
    color: #fff;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-text {
    color: #cfcfcf;
    line-height: 1.8;
}

.footer-heading {
    margin-bottom: 25px;
    font-weight: bold;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #d8d8d8;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #21c7ff;
            padding-left: 5px;
        }

.footer-contact {
    color: #d8d8d8;
    margin-bottom: 15px;
}

    .footer-contact i {
        margin-right: 10px;
        color: #21c7ff;
    }

.footer-social {
    margin-top: 25px;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: #1200ff;
        color: #fff;
        border-radius: 50%;
        margin-right: 10px;
        text-decoration: none;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #21c7ff;
            color: #000;
            transform: translateY(-5px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

/* =========================
   DASHBOARD
========================= */

.dashboard {
    padding: 15px;
}

.topbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.card-box,
.wallet-card,
.report-card {
    border-radius: 12px;
}

.wallet-actions .btn {
    min-width: 90px;
}

.report-card {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .report-card h4 {
        font-size: 22px;
    }

    .report-card p {
        margin-bottom: 0;
    }

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .hero-section {
        padding: 40px 0;
    }

    .hero-content,
    .market-title,
    .top-bar {
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
        margin-top: 20px;
    }

    .hero-text {
        font-size: 20px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .market-box {
        margin-top: 50px;
    }

    .market-title {
        font-size: 34px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .hero-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 18px;
        line-height: 1.7;
    }

    .custom-btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .market-title {
        font-size: 28px;
        text-align: center;
    }

    .market-text {
        font-size: 16px;
        text-align: center;
    }

    .market-box {
        margin-top: 40px;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }

    .content-area {
        padding: 10px;
    }

    .topbar {
        justify-content: center;
    }

    .card-box,
    .wallet-card {
        margin-bottom: 15px;
    }

    .wallet-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

        .wallet-actions .btn {
            width: 30%;
            min-width: 85px;
            font-size: 12px;
        }

    .section-title {
        font-size: 24px;
        margin-top: 25px;
    }

    .report-card {
        min-height: 100px;
        padding: 15px 10px;
    }

        .report-card h4 {
            font-size: 18px;
        }

        .report-card h5 {
            font-size: 15px;
        }

        .report-card p {
            font-size: 12px;
        }

        .report-card .btn {
            font-size: 11px;
            padding: 5px 8px;
        }
}
