:root{
    --gradient-main: linear-gradient(135deg, #7c3aed, #c084fc);
    --cta-color: #ec4899;
    --text-color-primary: #e5e7eb;
    --text-color-secondary: #2e2e2e;
    --heading-color: #f9fafb;
    --hover-color: #9333ea;
    --border-color: #a78bfa;
    --bg-light: #f8f9fa;
}

*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

body {
    font-family: sans-serif;
    font-weight: bold;
    max-width: 450px;
    margin: 0 auto;
    user-select: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
    cursor: pointer;
}


nav {
    width: 100%;
    background: var(--gradient-main);
    height: 50px;
    display: flex;
    z-index: 999;
}

.nav-info {
    display: flex;
    background-color: transparent;
    width: 120px;
    align-items: center;
    text-align: center;
    color: var(--text-color-primary);
    gap: 10px;
    padding-left: 5px;
}

.nav-menu-wrapper{
    width: calc(100% - 120px);
    display: flex;
    text-align: center;
    justify-content: end;
}
.nav-menu {
    width: 25px;
    height: 50px;
    line-height: 50px;
    padding-right: 20px;
}


.more-option {
    background-color: var(--bg-light);
    position: absolute;
    width: 180px;
    height: 200px;
    display: none;
    flex-direction: column;
    right: 0;
    z-index: 999;
    top: 50px;
}

.more-option li {
    height: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 50px;
    list-style: none;
    color: #111827;
    background: var(--bg-light);
    padding-left: 15px;   
    font-weight: 600;
    font-size: 13px;
}

.wallet-balance {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    background: transparent;
    height: 60px;
    text-align: center;
    align-items: center;
    font-size: 30px;
    color: var(--text-color-primary);
    position: relative;
}

.wallet-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    transform: scaleX(2.8) scaleY(2.8);
    transform-origin: center;
}

.wallet-balance h3 {
    font-size: 30px;
    font-weight: 500;
    text-align: left;
}

.hr {
    position: relative;
    top: -15px;
    background: transparent;
    height: 3px;
    width: 85%;
    margin: 0 auto;
}

.nav-socials-wrapper {
    width: 100%;
    height: calc(100vh - 50px);
    background: transparent;
    position: fixed;
    z-index: 998;
}

.nav-socials {
    background: var(--bg-light);
    width: 200px;
    height: 90vh;
    overflow: scroll;
    display: none;
    flex-direction: column;
    list-style: none;
    position: absolute;
    left: 0;
    z-index: 999;
    top: 0px;
}

.nav-socials article {
    height: 50px;
    font-size: 13px;
    line-height: 50px;
    padding-left: 5px;
    font-family: sans-serif;
    color: var(--text-color-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.more-option li:hover, .nav-socials article:hover{
    background: var(--hover-color);
    transition: 0.3s ease;
}

.airtime-section{
    width: 90%;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    color: var(--text-color-secondary);
}

.airtime-main {
    border-radius: 1rem;
    box-shadow: 0 0 15px 1px gray;
}

.airtime-section h3{
    border-left: 2px solid gray;
    border-right: 2px solid gray;
    margin: 20px auto;
    width: 80%;
    height: 30px;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.airtime-section article {
    width: 90%;
    height: 50px;
    margin: 15px auto;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    border: 0.5px solid rgb(190, 189, 189);
}

.wrap {
    position: absolute;
    right: 20px;
    color: var(--hover-color);
}

.airtime-section article:hover {
    box-shadow: 0 0 7px 2px gray;
    transition: 0.3s ease;
    border: none;
}

.airtime-section img {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 20px;
    border-radius: 50%;
}