/* =========================================================
   COVEX INDEX PAGE
   Standalone CSS
   ========================================================= */

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

html {
    width: 100%;
    min-height: 100%;
    background: #050505;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #050505;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* =========================================================
   HEADER
   ========================================================= */

header {
    width: 100%;
    padding: 24px 20px 16px;
    text-align: center;
    background: #050505;
    border-bottom: 2px solid #F0B90B;
}

.logo {
    color: #F0B90B;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 18px 0;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

nav a {
    width: 120px;
    height: 52px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #050505;
    border: 2px solid #F0B90B;
    border-radius: 14px;

    color: #F0B90B !important;
    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition: .25s ease;
}

nav a:hover {
    background: #050505;
    border-color: #F0B90B;
    color: #F0B90B !important;
    transform: translateY(-2px);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
    padding: 26px 20px 50px;

    text-align: center;
    background: #050505;
}

/* =========================================================
   HERO IMAGE
   ========================================================= */

.logo-shine {
    width: 100%;
    max-width: 820px;

    margin: 0 auto 14px;
    padding: 0;

    background: #050505;
    overflow: hidden;
}

.hero-image {
    display: block;

    width: 100%;
    max-width: 820px;
    height: auto;

    margin: 0 auto;
    padding: 0;

    object-fit: contain;

    background: #050505;

    filter: drop-shadow(
        0 0 18px rgba(240, 185, 11, .16)
    );
}

/* =========================================================
   MAIN TITLE
   ========================================================= */

.hero h1 {
    width: 100%;
    max-width: 760px;

    margin: 6px auto 18px;
    padding: 0;

    color: #F0B90B !important;

    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;

    text-align: center;
}

/* =========================================================
   DESCRIPTION CARD
   ========================================================= */

.hero-description {
    width: 100%;
    max-width: 760px;

    margin: 0 auto;
    padding: 22px 28px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #111827;

    border: 2px solid #F0B90B;
    border-radius: 18px;

    box-shadow:
        0 0 18px rgba(240, 185, 11, .18),
        0 0 30px rgba(240, 185, 11, .06);
}

/* =========================================================
   MANAGE DEPOSITS TEXT
   ========================================================= */

.hero-description p {
    margin: 0;
    padding: 0;

    color: #F0B90B !important;

    font-size: 21px;
    line-height: 1.5;

    font-weight: 500;

    text-align: center;
}

/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {
    width: 100%;
    max-width: 760px;

    margin: 24px auto 0;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 16px;
}

.btn-primary,
.btn-secondary {
    width: 50%;
    min-height: 58px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 14px;

    text-decoration: none;

    font-size: 20px;
    font-weight: 700;

    transition: .25s ease;
}

.btn-primary {
    background: #F0B90B;
    border: 2px solid #F0B90B;
    color: #050505 !important;
}

.btn-secondary {
    background: #050505;
    border: 2px solid #F0B90B;
    color: #F0B90B !important;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    header {
        padding: 22px 16px 14px;
    }

    .logo {
        font-size: 46px;
        margin-bottom: 16px;
    }

    nav {
        gap: 8px;
    }

    nav a {
        width: 31.5%;
        height: 50px;

        border-radius: 13px;

        font-size: 17px;
    }

    .hero {
        width: 100%;
        max-width: 100%;

        padding: 22px 20px 45px;
    }

    .logo-shine {
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.18;

        margin: 5px auto 16px;
    }

    .hero-description {
        padding: 21px 20px;
        border-radius: 17px;
    }

    .hero-description p {
        color: #F0B90B !important;

        font-size: 20px;
        line-height: 1.55;
    }

    .hero-buttons {
        margin-top: 22px;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 56px;
        font-size: 18px;
        border-radius: 13px;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    header {
        padding: 20px 14px 13px;
    }

    .logo {
        font-size: 42px;
        margin-bottom: 15px;
    }

    nav {
        gap: 7px;
    }

    nav a {
        width: 31.5%;
        height: 48px;

        border-radius: 12px;

        font-size: 16px;
    }

    .hero {
        padding: 20px 16px 42px;
    }

    .logo-shine {
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.18;

        margin: 4px auto 15px;
    }

    .hero-description {
        padding: 19px 16px;
        border-radius: 16px;
    }

    .hero-description p {
        color: #F0B90B !important;

        font-size: 19px;
        line-height: 1.55;
    }

    .hero-buttons {
        margin-top: 20px;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 54px;
        font-size: 17px;
        border-radius: 12px;
    }
}