* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 50, 130, 0.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(130, 60, 255, 0.18),
            transparent 35%
        ),
        #080812;
}

.login-page {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 25px;
}

.login-card {
    width: 100%;
    max-width: 430px;

    padding: 42px 38px;

    background: rgba(20, 20, 35, 0.90);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.55);

    backdrop-filter: blur(20px);
}

.logo {
    text-align: center;

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 35px;

    color: #ff4f91;
}

.logo span {
    font-size: 30px;
    margin-right: 6px;

    text-shadow:
        0 0 15px rgba(255, 60, 130, 0.7);
}

.login-card h1 {
    text-align: center;

    font-size: 32px;

    margin-bottom: 8px;
}

.subtitle {
    text-align: center;

    color: #9999aa;

    font-size: 14px;

    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 600;

    color: #c9c9d5;
}

.input-group input {
    width: 100%;
    height: 52px;

    padding: 0 16px;

    border-radius: 13px;

    border: 1px solid #303044;

    outline: none;

    background: #11111f;

    color: #ffffff;

    font-size: 14px;

    transition: 0.3s;
}

.input-group input::placeholder {
    color: #666678;
}

.input-group input:focus {
    border-color: #ff3f82;

    box-shadow:
        0 0 0 3px rgba(255, 63, 130, 0.12);
}

.login-options {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 24px;

    font-size: 12px;
}

.remember {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #9999aa;
}

.login-options a {
    color: #ff5795;

    text-decoration: none;
}

.login-btn {
    width: 100%;
    height: 54px;

    border: none;
    border-radius: 14px;

    cursor: pointer;

    color: white;

    font-size: 15px;
    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            #ff3f82,
            #c026d3
        );

    box-shadow:
        0 10px 25px rgba(255, 45, 120, 0.25);

    transition: 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(255, 45, 120, 0.35);
}

.divider {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 28px 0;

    color: #666678;

    font-size: 11px;
}

.divider::before,
.divider::after {
    content: "";

    height: 1px;

    flex: 1;

    background: #29293b;
}

.social-buttons {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.social-btn {
    width: 100%;
    height: 50px;

    border-radius: 13px;

    border: 1px solid #303044;

    background: #11111f;

    color: white;

    cursor: pointer;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s;
}

.social-btn:hover {
    background: #19192a;

    border-color: #44445b;
}

.google-icon {
    color: #4285f4;

    font-size: 17px;
    font-weight: bold;

    margin-right: 8px;
}

.facebook-icon {
    color: #1877f2;

    font-size: 19px;
    font-weight: bold;

    margin-right: 8px;
}

.signup-text {
    margin-top: 28px;

    text-align: center;

    color: #858596;

    font-size: 13px;
}

.signup-text a {
    color: #ff5795;

    text-decoration: none;

    font-weight: 600;
}

@media (max-width: 480px) {

    .login-page {
        padding: 15px;
    }

    .login-card {
        padding: 32px 22px;

        border-radius: 22px;
    }

    .login-card h1 {
        font-size: 28px;
    }
}select,
textarea {
    width: 100%;

    border-radius: 13px;

    border: 1px solid #303044;

    outline: none;

    background: #11111f;

    color: #ffffff;

    font-size: 14px;

    transition: 0.3s;
}

select {
    height: 52px;

    padding: 0 16px;

    cursor: pointer;
}

textarea {
    min-height: 110px;

    padding: 15px;

    resize: vertical;

    font-family: Arial, Helvetica, sans-serif;
}

select:focus,
textarea:focus {
    border-color: #ff3f82;

    box-shadow:
        0 0 0 3px rgba(255, 63, 130, 0.12);
}
.profile-page {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 25px;
}

.profile-card {
    width: 100%;
    max-width: 430px;

    padding: 35px;

    text-align: center;

    background: rgba(20, 20, 35, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 28px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.55);
}

.profile-photo {
    width: 130px;
    height: 130px;

    margin: 0 auto 22px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ff3f82,
            #c026d3
        );

    box-shadow:
        0 0 35px rgba(255, 63, 130, 0.25);
}

.profile-photo span {
    font-size: 50px;
    color: white;
}

.profile-card h1 {
    font-size: 28px;
    margin-bottom: 7px;
}

.profile-age {
    color: #ff5795;
    font-size: 14px;
    margin-bottom: 18px;
}

.profile-bio {
    color: #9999aa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.interests {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;

    margin-bottom: 28px;
}

.interests span {
    padding: 8px 13px;

    border-radius: 20px;

    background: rgba(255, 63, 130, 0.10);

    border: 1px solid rgba(255, 63, 130, 0.20);

    color: #ff76a8;

    font-size: 12px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #171329;
    color: #ffffff;
}


/* =========================
   PROFILE APP
========================= */

.profile-app {
    width: 100%;
    max-width: 600px;
    min-height: 100vh;
    margin: 0 auto;

    padding: 25px 16px 100px;

    background:
        radial-gradient(
            circle at 50% 0%,
            #4b2a88 0%,
            #2d1d50 32%,
            #1d1933 65%,
            #171329 100%
        );
}


/* =========================
   PROFILE HEADER
========================= */

.user-header {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
}

.user-photo {
    width: 105px;
    height: 105px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    border: 3px solid #d9cfff;

    background: linear-gradient(
        135deg,
        #8b6de0,
        #f080b0
    );

    overflow: hidden;
}

.user-photo span {
    font-size: 52px;
}

.user-info {
    flex: 1;
}

.user-info h1 {
    font-size: 22px;
    font-weight: 800;

    margin-bottom: 8px;

    color: #ffffff;
}

.user-info p {
    font-size: 12px;
    color: #bbb4d2;
}

.vip-badge {
    display: inline-block;

    margin-left: 5px;
    padding: 4px 8px;

    border-radius: 7px;

    background: linear-gradient(
        135deg,
        #ffe36a,
        #b87500
    );

    color: #ffffff;

    font-size: 10px;
    font-weight: bold;
}

.arrow {
    font-size: 34px;
    color: #c9c3d8;
}


/* =========================
   STATS
========================= */

.stats {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-bottom: 25px;

    text-align: center;
}

.stats div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.stats strong {
    font-size: 23px;
    color: #eee9ff;
}

.stats span {
    font-size: 11px;
    font-weight: bold;

    color: #aaa3c0;
}


/* =========================
   FEATURE CARDS
========================= */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-bottom: 22px;
}

.feature {
    min-height: 82px;

    padding: 15px;

    border-radius: 15px;

    display: flex;
    align-items: center;

    gap: 9px;

    overflow: hidden;
}

.feature strong {
    font-size: 15px;
}

.feature span:last-child {
    margin-left: auto;

    font-size: 25px;
}


/* SVIP */

.feature.svip {
    background: linear-gradient(
        135deg,
        #713c06,
        #c17b0d,
        #8d4f05
    );

    color: #ffffff;
}

.feature.svip strong {
    font-size: 25px;
}


/* VIP */

.feature.vip {
    background: linear-gradient(
        135deg,
        #ffe68b,
        #ffc83f
    );

    color: #66340d;
}

.feature.vip strong {
    font-size: 25px;
}


/* TASKS */

.feature.tasks {
    background: linear-gradient(
        135deg,
        #bce5ff,
        #d9f0ff
    );

    color: #2873a2;
}


/* RECHARGE */

.feature.recharge {
    background: linear-gradient(
        135deg,
        #f4c6ec,
        #ffd8f4
    );

    color: #a93485;
}

.feature-icon {
    font-size: 27px;
}


/* =========================
   MENU
========================= */

.menu-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 2px;
}

.menu-item {
    width: 100%;
    min-height: 74px;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 8px 4px;

    color: #c4bdd7;
}

.menu-icon {
    width: 45px;

    display: flex;
    justify-content: center;

    font-size: 27px;
}

.menu-item strong {
    flex: 1;

    font-size: 15px;
    font-weight: 700;
}

.menu-arrow {
    font-size: 31px;

    color: #aaa3bd;
}


/* =========================
   BOTTOM NAVIGATION
========================= */

.bottom-nav {
    position: fixed;

    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 100%;
    max-width: 600px;

    height: 76px;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    background: rgba(57, 48, 99, 0.97);

    border-top: 1px solid rgba(
        255,
        255,
        255,
        0.08
    );

    backdrop-filter: blur(15px);

    z-index: 999;
}

.bottom-nav a {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 4px;

    text-decoration: none;

    color: #aaa4c1;
}

.bottom-nav a span {
    font-size: 25px;
}

.bottom-nav small {
    font-size: 10px;

    font-weight: 700;
}

.bottom-nav .active {
    color: #cdbbff;
}

.bottom-nav .message b {
    position: absolute;

    top: 7px;
    right: 24%;

    min-width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff5968;

    color: #ffffff;

    font-size: 10px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .profile-app {
        padding: 20px 12px 95px;
    }

    .user-photo {
        width: 92px;
        height: 92px;
    }

    .user-info h1 {
        font-size: 19px;
    }

    .stats strong {
        font-size: 21px;
    }

    .stats span {
        font-size: 10px;
    }

    .feature {
        min-height: 78px;
        padding: 13px;
    }

    .feature strong {
        font-size: 13px;
    }

    .menu-item {
        min-height: 70px;
    }

    .menu-item strong {
        font-size: 14px;
    }
}/* =========================
   HOME PAGE
========================= */

.home-app {
    width: 100%;
    max-width: 600px;
    min-height: 100vh;
    margin: auto;

    padding: 25px 15px 100px;

    background:
        linear-gradient(
            180deg,
            #43227d,
            #211a38 35%,
            #1b1730
        );

    color: white;
}


/* CATEGORIES */

.categories {
    display: flex;
    gap: 12px;

    overflow-x: auto;

    padding-bottom: 18px;
}

.categories::-webkit-scrollbar {
    display: none;
}

.category {
    min-width: 125px;
    height: 140px;

    border-radius: 16px;

    padding: 15px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    background: linear-gradient(
        145deg,
        #ffe7f5,
        #dcd4ff
    );

    color: #7650c7;

    flex-shrink: 0;
}

.category span {
    font-size: 45px;
}

.category b {
    font-size: 14px;
}


/* BANNER */

.home-banner {
    height: 88px;

    margin: 15px 0 25px;

    border-radius: 18px;

    display: flex;
    align-items: center;

    padding: 20px;

    background: linear-gradient(
        90deg,
        #8670ed,
        #d279d8
    );

    font-weight: bold;
}


/* TABS */

.nearby-tabs {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-bottom: 22px;

    color: #77718e;
}

.nearby-tabs strong {
    color: #d9d0ff;

    font-size: 20px;

    position: relative;
}

.nearby-tabs strong::after {
    content: "";

    position: absolute;

    width: 18px;
    height: 4px;

    background: #9b54e8;

    border-radius: 10px;

    bottom: -12px;
    left: 50%;

    transform: translateX(-50%);
}

.tab-icons {
    margin-left: auto;

    font-size: 23px;

    word-spacing: 10px;
}


/* USERS */

.users-list {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.user-card {
    display: flex;
    align-items: center;

    gap: 15px;

    min-height: 125px;
}

.user-card img {
    width: 115px;
    height: 115px;

    object-fit: cover;

    border-radius: 13px;

    flex-shrink: 0;
}

.user-details {
    flex: 1;

    min-width: 0;
}

.user-details h3 {
    font-size: 17px;

    color: #d5c9ff;

    margin-bottom: 15px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.user-details p {
    font-size: 14px;

    color: #b4acc9;

    margin-bottom: 13px;
}

.user-details small {
    color: #9991ae;

    font-size: 12px;
}

.hi-btn {
    border: 2px solid #e97ac4;

    background: transparent;

    color: #ffb2e7;

    border-radius: 25px;

    padding: 8px 16px;

    font-size: 15px;

    font-weight: bold;

    flex-shrink: 0;
}

.hi-btn:active {
    transform: scale(0.95);
}


/* MOBILE */

@media (max-width: 480px) {

    .home-app {
        padding-left: 12px;
        padding-right: 12px;
    }

    .category {
        min-width: 124px;
        height: 140px;
    }

    .user-card img {
        width: 105px;
        height: 105px;
    }

    .user-details h3 {
        font-size: 15px;
    }

    .hi-btn {
        padding: 7px 13px;
        font-size: 14px;
    }
}