* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none !important;
}

body {
    background: #1a1a1a;
    font-family: 'Urbanist', sans-serif;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    overflow-y: auto;
}

.app-container {
    max-width: 500px;
    width: 100%;
    background: url('../images/main-bg-img-2.jpg') no-repeat center/cover;
    overflow: auto;
    padding-bottom: 60px;
    position: relative;
    box-shadow: 0 0 20px rgba(240, 123, 14, 0.5);
    --overlay-opacity: 0.8;
}

.app-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: var(--overlay-opacity);
    pointer-events: none;
    z-index: 0;
}

.app-container>* {
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95));
    color: #f07b0e;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(90deg, #f07b0e, #ffd700, #f07b0e) 1;
    animation: gradientShift 6s linear infinite;
    box-shadow: 0 2px 10px rgba(240, 123, 14, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 123, 14, 0.1), transparent);
    animation: particleShift 4s linear infinite;
    pointer-events: none;
    z-index: 0;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    font-weight: 500;
    animation: glowText 2s ease-in-out infinite;
}

header i {
    font-size: 1.3rem;
    color: #f07b0e;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

header i:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Banner */
.banner {
    background: linear-gradient(135deg, rgba(240, 123, 14, 1), rgba(20, 20, 20, 1));
    padding: 1rem;
    margin: 8px;
    border-radius: 6px;
    text-align: center;
    color: #e0e0e0;
    box-shadow: 0 0 15px rgba(240, 123, 14, 0.3);
    position: relative;
}

.banner h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    font-weight: 500;
}

/* Marquee */
.marquee {
    background: rgba(20, 20, 20, 0.95);
    color: #f07b0e;
    padding: 0.5rem;
    font-size: 0.9rem;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid #f07b0e;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(240, 123, 14, 0.3);
}

.marquee span {
    display: inline-block;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Futuristic Cards (Fixed Glitchy Animation) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1rem 1rem 0px 1rem;
}

.futuristic-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-radius: 6px 12px 6px 12px;
    padding: 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.futuristic-card::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 400px;
    left: 30%;
    top: -100px;
    transform: translateX(-50%);
    transform-origin: center 150px;
    background: linear-gradient(#f07b0e, #ffd700);
    animation: animate 5s linear infinite;
}

.futuristic-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 4px 10px 4px 10px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 1), rgba(15, 15, 15, 1));
    box-shadow: inset 0 0 8px rgba(240, 123, 14, 0.2);
    z-index: 0;
}

.futuristic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 123, 14, 0.5);
}

.futuristic-card h3,
.futuristic-card p {
    position: relative;
    z-index: 1;
}

.futuristic-card h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #f07b0e;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
}

.futuristic-card p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 0;
    text-shadow: 0 0 3px rgba(240, 123, 14, 0.3);
}

/* Base Icon Style */
.futuristic-card i {
    font-size: 1.5rem;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover Effect */
.futuristic-card:hover i {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Icon-Specific Colors */
.futuristic-card:nth-child(1) i {
    color: #ff7f50;
}

/* Current Balance - Coral */
.futuristic-card:nth-child(2) i {
    color: #ffd700;
}

/* Deposit Balance - Gold */
.futuristic-card:nth-child(3) i {
    color: #00ced1;
}

/* Daily Income - Dark Turquoise */
.futuristic-card:nth-child(4) i {
    color: #7fff00;
}

/* Level Income - Chartreuse */
.futuristic-card:nth-child(5) i {
    color: #ba55d3;
}

/* Level 1 Income - Medium Orchid */
.futuristic-card:nth-child(6) i {
    color: #ffa500;
}

/* Level 2 Income - Orange */
.futuristic-card:nth-child(7) i {
    color: #00fa9a;
}

/* Level 3 Income - Medium Spring Green */
.futuristic-card:nth-child(8) i {
    color: #ff69b4;
}

/* Signup Bonus - Hot Pink */
.futuristic-card:nth-child(9) i {
    color: #1e90ff;
}

/* Withdrawal Limit - Dodger Blue */
.futuristic-card:nth-child(10) i {
    color: #ff4500;
}

/* Total Income - Orange Red */


/* Fixed Footer */
footer {
    background: linear-gradient(90deg, rgba(20, 20, 20, 1), rgba(10, 10, 10, 1));
    background-size: 200% 100%;
    color: #f07b0e;
    padding: 0 0 6px 0;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #f07b0e, #ffd700, #f07b0e) 1;
    animation: gradientShift 6s linear infinite;
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 500px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(240, 123, 14, 0.3);
}

footer .footer-icons {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin: 0 16px;
}

footer .footer-icons a {
    font-size: 1.2rem;
    text-decoration: none;
    padding: 6px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

footer .footer-icons a:nth-child(1) {
    color: #ffa500;
}

/* Dashboard - Orange */
footer .footer-icons a:nth-child(2) {
    color: #00ced1;
}

/* Deposit - Dark Turquoise */
footer .footer-icons a:nth-child(3) {
    color: #7fff00;
}

/* Income - Chartreuse */
footer .footer-icons a:nth-child(4) {
    color: #ba55d3;
}

/* Team - Medium Orchid */

footer .footer-icons a:hover {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
    transform: translateY(-3px);
}

footer .footer-icons a.active {
    color: #ffffff;
    text-shadow: 0 0 12px #ffd700, 0 0 20px #f07b0e;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 10px;
    padding: 8px 6px;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

footer .footer-icons a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #f07b0e, #ffd700, #f07b0e);
    border-radius: 2px;
    box-shadow: 0 0 10px #ffd700;
    animation: glowUnderline 2s ease-in-out infinite;
}

@keyframes glowUnderline {

    0%,
    100% {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}


footer .footer-icons span {
    font-size: 0.8rem;
    margin-top: 0.3rem;
    text-shadow: 0 0 3px rgba(240, 123, 14, 0.3);
}

/* Referral Card */
.referral-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-radius: 12px 6px 12px 6px;
    padding: 1.5rem;
    margin: 1rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 35px;
}

.referral-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ffd700, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.referral-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 10px 4px 10px 4px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    box-shadow: inset 0 0 8px rgba(240, 123, 14, 0.2);
    z-index: -1;
}

.referral-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 123, 14, 0.5);
}

.referral-card:hover::before {
    opacity: 1;
}

.referral-card h3 {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    font-weight: 500;
}

.referral-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.referral-input-group:last-child {
    margin-bottom: 0;
}

.referral-input-group input {
    flex: 1;
    background: rgba(40, 40, 40, 0.95);
    border: 1px solid #f07b0e;
    border-radius: 4px;
    padding: 0.5rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.referral-input-group input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.referral-input-group .copy-btn {
    background: linear-gradient(145deg, #f07b0e, #ffd700);
    border: 1px solid #f07b0e;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.referral-input-group .copy-btn:hover {
    box-shadow: 0 0 10px rgba(240, 123, 14, 0.7);
    transform: scale(1.05);
}

.referral-input-group .copy-btn:active {
    transform: scale(0.95);
}

/* Amount Box */
.amount-box {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amount-box p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Individual color themes */
.amount-box.orange {
    border: 1px solid #f07b0e;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
}

.amount-box.orange p {
    color: #f07b0e;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
}

.amount-box.orange:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 123, 14, 0.5);
}

.amount-box.gold {
    border: 1px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.amount-box.gold p {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.amount-box.gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.amount-box.aqua {
    border: 1px solid #0df5e3;
    box-shadow: 0 4px 15px rgba(13, 245, 227, 0.3);
}

.amount-box.aqua p {
    color: #0df5e3;
    text-shadow: 0 0 5px rgba(13, 245, 227, 0.5);
}

.amount-box.aqua:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 245, 227, 0.5);
}

.amount-box.blue {
    border: 1px solid #18b6f6;
    box-shadow: 0 4px 15px rgba(24, 182, 246, 0.3);
}

.amount-box.blue p {
    color: #18b6f6;
    text-shadow: 0 0 5px rgba(24, 182, 246, 0.5);
}

.amount-box.blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(24, 182, 246, 0.5);
}

.amount-box.violet {
    border: 1px solid #cb5fff;
    box-shadow: 0 4px 15px rgba(203, 95, 255, 0.3);
}

.amount-box.violet p {
    color: #cb5fff;
    text-shadow: 0 0 5px rgba(203, 95, 255, 0.5);
}

.amount-box.violet:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(203, 95, 255, 0.5);
}

.amount-box.pink {
    border: 1px solid #ff4f81;
    box-shadow: 0 4px 15px rgba(255, 79, 129, 0.3);
}

.amount-box.pink p {
    color: #ff4f81;
    text-shadow: 0 0 5px rgba(255, 79, 129, 0.5);
}

.amount-box.pink:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 79, 129, 0.5);
}


/* Recharge Form */
/*.recharge-form {*/
/*    padding: 1rem;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    gap: 1rem;*/
/*    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));*/
/*    border: 1px solid #f07b0e;*/
/*    border-radius: 6px;*/
/*    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);*/
/*}*/

/*.recharge-form input[type="number"] {*/
/*    width: 100%;*/
/*    background: rgba(40, 40, 40, 0.95);*/
/*    border: 1px solid #f07b0e;*/
/*    border-radius: 4px;*/
/*    padding: 0.75rem;*/
/*    color: #e0e0e0;*/
/*    font-size: 1rem;*/
/*    outline: none;*/
/*    text-align: center;*/
/*    transition: border-color 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.recharge-form input[type="number"]:focus {*/
/*    border-color: #ffd700;*/
/*    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);*/
/*}*/

/*.recharge-form input[type="number"]::-webkit-outer-spin-button,*/
/*.recharge-form input[type="number"]::-webkit-inner-spin-button {*/
/*    -webkit-appearance: none;*/
/*    margin: 0;*/
/*}*/

/*.recharge-form input[type="number"] {*/
/*    -moz-appearance: textfield;*/
/*}*/

/*.recharge-form button {*/
/*    background: linear-gradient(145deg, #f07b0e, #ffd700);*/
/*    border: 1px solid #f07b0e;*/
/*    width: 100%;*/
/*    border-radius: 4px;*/
/*    padding: 0.75rem 2rem;*/
/*    color: #e0e0e0;*/
/*    font-size: 1rem;*/
/*    font-weight: 500;*/
/*    cursor: pointer;*/
/*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.recharge-form button:hover {*/
/*    box-shadow: 0 0 10px rgba(240, 123, 14, 0.7);*/
/*    transform: scale(1.05);*/
/*}*/

/*.recharge-form button:active {*/
/*    transform: scale(0.95);*/
/*}*/

/* Recharge Form */
.recharge-form {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
}

.recharge-form input[type="number"],
.recharge-form select {
    width: 100%;
    background: rgba(40, 40, 40, 0.95);
    border: 1px solid #f07b0e;
    border-radius: 4px;
    padding: 0.75rem;
    color: #e0e0e0;
    font-size: 1rem;
    outline: none;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -moz-appearance: none; /* For Firefox */
    -webkit-appearance: none; /* For Safari/Chrome */
    appearance: none;
}

.recharge-form input[type="number"]:focus,
.recharge-form select:focus {
    border-color: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}
.recharge-form label{
    color: #f07b0e !important;
}

.recharge-form input[type="number"]::-webkit-outer-spin-button,
.recharge-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.recharge-form input[type="number"] {
    -moz-appearance: textfield;
}
.recharge-form select {
    background-image: url("../images/down-arrow.png");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.65rem auto;
    padding-right: 2rem;
}


.recharge-form button {
    background: linear-gradient(145deg, #f07b0e, #ffd700);
    border: 1px solid #f07b0e;
    width: 100%;
    border-radius: 4px;
    padding: 0.75rem 2rem;
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recharge-form button:hover {
    box-shadow: 0 0 10px rgba(240, 123, 14, 0.7);
    transform: scale(1.05);
}

.recharge-form button:active {
    transform: scale(0.95);
}
 

/* Info Card */
.info-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-left: 3px solid #ffd700;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    box-shadow: inset 0 0 8px rgba(240, 123, 14, 0.2);
    z-index: -1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 123, 14, 0.5);
}

.info-card h3 {
    font-size: 1rem;
    color: #f07b0e;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    font-weight: 500;
}

.info-card .entry {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(58, 58, 58, 0.5);
    font-size: 0.9rem;
}

.info-card .entry:last-child {
    border-bottom: none;
}

.info-card .entry .detail {
    color: #e0e0e0;
    text-shadow: 0 0 3px rgba(240, 123, 14, 0.3);
}

.info-card .entry .amount {
    color: #f07b0e;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
}

.info-card .entry .timestamp {
    color: #888;
    font-size: 0.8rem;
    text-shadow: 0 0 2px rgba(240, 123, 14, 0.2);
}

/* Notification Card */
.notification-list {
    padding: 1rem;
}

.notification-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-top: 3px solid #f07b0e;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notification-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    box-shadow: inset 0 0 8px rgba(240, 123, 14, 0.2);
    z-index: -1;
}

.notification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 123, 14, 0.5);
}

.notification-card h3 {
    font-size: 1rem;
    color: #f07b0e;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    font-weight: 500;
}

.notification-card p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    text-shadow: 0 0 3px rgba(240, 123, 14, 0.3);
}

.notification-card .timestamp {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    text-shadow: 0 0 2px rgba(240, 123, 14, 0.2);
}

/* Profile Card */
.profile-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-bottom: 3px solid #ffd700;
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    box-shadow: inset 0 0 8px rgba(240, 123, 14, 0.2);
    z-index: -1;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 123, 14, 0.5);
}

.profile-card .profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* margin-bottom: 1rem; */
}

.profile-card .profile-pic {
    width: 60px;
    height: 60px;
    background: rgba(40, 40, 40, 0.95);
    border-radius: 50%;
    border: 1px solid #0ef032;
    box-shadow: 0 0 10px rgba(14, 240, 14, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0ef032;
}

.profile-card .profile-info h2 {
    font-size: 1.2rem;
    color: #0ef032;
    margin: 0;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    font-weight: 500;
}

.profile-card .profile-info p {
    font-size: 0.9rem;
    color: #888;
    margin: 0.2rem 0 0;
    text-shadow: 0 0 2px rgba(240, 123, 14, 0.2);
}

.profile-card .profile-details {
    margin-top: 1rem;
}

.profile-card .profile-details p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    color: #e0e0e0;
    text-shadow: 0 0 3px rgba(240, 123, 14, 0.3);
}

.profile-card .profile-details p span {
    color: #f07b0e;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
}

/* History Buttons */
.history-buttons {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

.history-btn {
    flex: 1 1 calc(33.33% - 0.5rem);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-radius: 6px;
    padding: 0.8rem;
    text-align: center;
    color: #f07b0e;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-btn::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    box-shadow: inset 0 0 8px rgba(240, 123, 14, 0.2);
    z-index: -1;
}

.history-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 123, 14, 0.5);
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.history-btn i {
    font-size: 1.2rem;
}


.history-btn:hover i {
    color: #ffd700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

/* Logout Button */
.logout-btn {
    display: block;
    margin: 1rem 1rem;
    background: linear-gradient(145deg, #f07b0e, #ffd700);
    border: 1px solid #f07b0e;
    border-radius: 4px;
    padding: 0.75rem 2rem;
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: calc(100% - 2rem);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logout-btn:hover {
    box-shadow: 0 0 10px rgba(240, 123, 14, 0.7);
    transform: scale(1.05);
}

.logout-btn:active {
    transform: scale(0.95);
}

/* Tabs */
.tabs {
    display: flex;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border-bottom: 1px solid #f07b0e;
    box-shadow: 0 2px 10px rgba(240, 123, 14, 0.3);
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.tab {
    flex: 0 0 auto;
    width: 100px;
    text-align: center;
    padding: 0.5rem;
    color: #f07b0e;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.tab:hover {
    background: rgba(40, 40, 40, 0.95);
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.tab.active {
    background: rgba(240, 123, 14, 0.4);
    color: #e0e0e0;
    text-shadow: 0 0 8px rgba(240, 123, 14, 0.8);
    box-shadow: 0 0 10px rgba(240, 123, 14, 0.6);
}

/* Custom Scrollbar for Tabs */
.tabs::-webkit-scrollbar {
    display: block !important;
    height: 6px;
}

.tabs::-webkit-scrollbar-track {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 3px;
}

.tabs::-webkit-scrollbar-thumb {
    background: #f07b0e;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(240, 123, 14, 0.5);
}

.tabs::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

/* Table Container */
.team-table {
    margin: 1rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
}

th,
td {
    padding: 0.75rem;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(58, 58, 58, 0.5);
    white-space: nowrap;
}

th {
    background: rgba(40, 40, 40, 0.95);
    color: #f07b0e;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    font-weight: 500;
}

td {
    color: #e0e0e0;
    text-shadow: 0 0 3px rgba(240, 123, 14, 0.3);
}

tr:last-child td {
    border-bottom: none;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Withdraw Form */
.withdraw-form {
    padding: 1rem;
    margin: 1rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
}

.withdraw-form label {
    display: block;
    font-size: 1rem;
    color: #f07b0e;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    font-weight: 500;
}

.withdraw-form input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(40, 40, 40, 0.95);
    border: 1px solid #f07b0e;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.withdraw-form input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.withdraw-form button {
    display: block;
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(145deg, #f07b0e, #ffd700);
    border: 1px solid #f07b0e;
    border-radius: 4px;
    padding: 0.75rem;
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.withdraw-form button:hover {
    box-shadow: 0 0 10px rgba(240, 123, 14, 0.7);
    transform: scale(1.05);
}

.withdraw-form button:active {
    transform: scale(0.95);
}

/* Terms Content */
.terms-content {
    margin: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid #f07b0e;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(240, 123, 14, 0.3);
}

.terms-content h2 {
    font-size: 1.2rem;
    color: #f07b0e;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    font-weight: 500;
}

.terms-content ol {
    padding-left: 1.5rem;
}

.terms-content li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #e0e0e0;
    text-shadow: 0 0 3px rgba(240, 123, 14, 0.3);
}

/* Animations */
@keyframes glowText {
    0% {
        text-shadow: 0 0 5px rgba(240, 125, 14, 0.5);
    }

    50% {
        text-shadow: 0 0 10px rgba(240, 123, 14, 0.8), 0 0 15px rgba(240, 123, 14, 0.5);
    }

    100% {
        text-shadow: 0 0 5px rgba(240, 123, 14, 0.5);
    }
}

@keyframes gradientShift {
    0% {
        border-image-source: linear-gradient(90deg, #f07b0e, #ffd700, #f07b0e);
    }

    50% {
        border-image-source: linear-gradient(90deg, #ffd700, #f07b0e, #ffd700);
    }

    100% {
        border-image-source: linear-gradient(90deg, #f07b0e, #ffd700, #f07b0e);
    }
}

@keyframes particleShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes glowUnderline {
    0% {
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
    }

    50% {
        box-shadow: 0 0 12px rgba(255, 215, 0, 1);
    }

    100% {
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
    }
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 400px) {
    header h1 {
        font-size: 1.3rem;
    }

    header i {
        font-size: 1rem;
    }

    .banner h2 {
        font-size: 1rem;
    }

    .marquee {
        font-size: 0.8rem;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.8rem;
        padding: 0.8rem 0.8rem 1rem 0.8rem;
    }

    .futuristic-card h3 {
        font-size: 14px;
    }

    .futuristic-card p {
        font-size: 1rem;
    }

    .amount-box {
        padding: 6px;
    }

    .amount-box p {
        font-size: 14px;
    }

    .recharge-form input[type="number"] {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .recharge-form button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .notification-card h3 {
        font-size: 0.9rem;
    }

    .notification-card p {
        font-size: 0.8rem;
    }

    .notification-card .timestamp {
        font-size: 0.7rem;
    }

    .referral-card {
        padding: 16px;
    }

    .referral-input-group .copy-btn {
        padding: 0.5rem;
    }

    .profile-card .profile-pic {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .profile-card .profile-info h2 {
        font-size: 1.1rem;
    }

    .profile-card .profile-info p {
        font-size: 0.8rem;
    }

    .profile-card .profile-details p {
        font-size: 0.8rem;
    }

    .history-btn {
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    .history-btn i {
        font-size: 16px;
    }

    .logout-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .tab {
        width: 90px;
        font-size: 0.9rem;
        padding: 0.4rem;
    }

    th,
    td {
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    .withdraw-form label {
        font-size: 0.9rem;
    }

    .withdraw-form input {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .withdraw-form button {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .terms-content h2 {
        font-size: 1.1rem;
    }

    .terms-content li {
        font-size: 0.8rem;
    }

    footer .footer-icons a {
        font-size: 1rem;
    }

    footer .footer-icons span {
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    header h1 {
        font-size: 1.1rem;
    }

    header i {
        font-size: 0.9rem;
    }

    .banner h2 {
        font-size: 0.9rem;
    }

    .marquee {
        font-size: 0.7rem;
    }

    footer .footer-icons {
        margin: 0 8px;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .futuristic-card p {
        font-size: 0.9rem;
    }

    .amount-box p {
        font-size: 12px;
    }

    .recharge-form input[type="number"] {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .recharge-form button {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .notification-card h3 {
        font-size: 0.8rem;
    }

    .notification-card p {
        font-size: 0.7rem;
    }

    .notification-card .timestamp {
        font-size: 0.6rem;
    }

    .profile-card .profile-pic {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .profile-card .profile-info h2 {
        font-size: 1rem;
    }

    .profile-card .profile-info p {
        font-size: 0.7rem;
    }

    .profile-card .profile-details p {
        font-size: 0.7rem;
    }

    .history-btn {
        font-size: 0.7rem;
        padding: 0.5rem;
    }

    .logout-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .tab {
        width: 80px;
        font-size: 0.8rem;
        padding: 0.3rem;
    }

    th,
    td {
        font-size: 0.7rem;
        padding: 0.5rem;
    }

    .withdraw-form label {
        font-size: 0.8rem;
    }

    .withdraw-form input {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .withdraw-form button {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .terms-content h2 {
        font-size: 1rem;
    }

    .terms-content li {
        font-size: 0.7rem;
    }

    footer .footer-icons a {
        font-size: 0.9rem;
    }

    footer .footer-icons span {
        font-size: 0.6rem;
    }
}