/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body থেকে স্ক্রোলবার সম্পূর্ণ লুকানোর জন্য */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: auto;
    overflow-x: hidden;
    padding-bottom: 80px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
}

/* যদি html এলিমেন্টেও স্ক্রোলবার থাকে */
html {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
    /* Container for centering */
    .profile-container {
        width: 100%;
        margin: 0 auto;
    }

    /* Profile Header Container */
    .profile-header {
        background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
        border-radius: 20px;
        padding: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
        cursor: pointer;
        user-select: none;
        
    }

    /* Profile Content */
    .profile-content {
        display: flex;
        align-items: center;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    /* Avatar */
    .profile-avatar {
        flex-shrink: 0;
    }

    .profile-avatar img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 4px solid rgba(255, 255, 255, 0.3);
        background: white;
        object-fit: cover;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* Profile Info */
    .profile-info {
        flex: 1;
        color: white;
    }

    .profile-role {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* Tap to View */
    .tap-to-view {
        font-size: 14px;
        font-weight: 500;
        opacity: 0.95;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .tap-arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .tap-arrow.rotated {
        transform: rotate(180deg);
    }

    /* Profile Details - Hidden by default */
    .profile-details {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        margin-top: 0;
    }

    .profile-details.show {
        max-height: 200px;
        opacity: 1;
        margin-top: 8px;
    }

    .info-row {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 6px;
        font-size: 14px;
    }

    .info-label {
        font-weight: 500;
        opacity: 0.95;
        min-width: 80px;
    }

    .info-value {
        font-weight: 600;
        background: rgba(255, 255, 255, 0.2);
        padding: 6px 12px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        backdrop-filter: blur(10px);
    }

    .refer-code {
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .refer-code:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }

    .refer-code:active {
        transform: scale(0.98);
    }

    .copy-icon {
        font-size: 12px;
        opacity: 0.8;
    }

    .coin-icon {
        font-size: 14px;
        color: #FFD700;
    }

    /* Decorative Elements */
    .profile-header::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 0;
    }

    .profile-header::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        z-index: 0;
    }

    /* Toast Notification */
    .toast {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        background: #333;
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .toast.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .profile-container {
            max-width: 100%;
            border-bottom-left-radius: 50% 20% !important;
        }
        

        .profile-header {
            border-radius: 16px;
            padding: 16px;
        }

        .profile-content {
            gap: 15px;
        }

        .profile-avatar img {
            width: 70px;
            height: 70px;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .profile-role {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .tap-to-view {
            font-size: 13px;
        }

        .tap-arrow {
            font-size: 11px;
        }

        .info-row {
            font-size: 13px;
            margin-bottom: 5px;
        }

        .info-label {
            min-width: 75px;
            font-size: 12px;
        }

        .info-value {
            padding: 5px 10px;
            font-size: 13px;
        }

        .toast {
            bottom: 20px;
            padding: 10px 20px;
            font-size: 14px;
        }
    }

    /* Extra Small Mobile */
    @media (max-width: 480px) {
        .profile-header {
            border-radius: 14px;
            padding: 14px;
        }
    }

        .profile-content {
            gap: 12px;
        }

        .profile-avatar img {
            width: 60px;
            height: 60px;
        }

        .profile-role {
            font-size: 15px;
        }

        .tap-to-view {
            font-size: 12px;
            font-size: 17px;
        }

        .tap-arrow {
            font-size: 10px;
        }

        .info-row {
            font-size: 12px;
            gap: 6px;
        }

       .info-label {
        min-width: 75px;
        font-size: 14px;

        .info-value {
            padding: 4px 8px;
            font-size: 12px;
        }

        .copy-icon,
        .coin-icon {
            font-size: 11px;
        }
    }

    /* Large Desktop */
    @media (min-width: 1200px) {
        .profile-container {
            max-width: 650px;
            border-bottom-left-radius:40% 40%;
        }

        .profile-header {
            padding: 24px;
        }

        .profile-avatar img {
            width: 90px;
            height: 90px;
        }

        .profile-role {
            font-size: 20px;
        }

        .tap-to-view {
            font-size: 15px;
        }

        .info-row {
            font-size: 15px;
        }

        .info-value {
            padding: 7px 14px;
        }
    }

/* সব এলিমেন্ট থেকে স্ক্রোলবার লুকানোর জন্য */
* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* ==================== ACTION BUTTONS ==================== */
.action-btn {
    background: #FF5733;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.action-btn.secondary {
    background: white;
    color: #FF5733;
    border: 2px solid #FF5733;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.action-btn.secondary:hover {
    background: rgba(255, 107, 107, 0.05);
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.action-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #667eea;
}

.action-icon:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

/* ==================== ADS ==================== */
.ad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffc107;
    color: #000;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
}

.ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-style: italic;
    font-size: 14px;
}

.ads-highlight {
    background: #FF5733;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px dashed #FFD700;
}

.ads-highlight-title {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ads-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ads-info-item {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.ads-info-label {
    font-size: 11px;
    color: #7f8c8d;
    margin-top: 3px;
}

.ads-info-value {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.ads-summary-box {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.1));
    border: 2px solid #27ae60;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.ads-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ads-summary-item {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.ads-summary-label {
    font-size: 10px;
    color: #7f8c8d;
    margin-top: 3px;
}

.ads-summary-title {
    font-size: 14px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ads-summary-value {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

/* ==================== AGENT LIST ==================== */
.agent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.agent-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.agent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.agent-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.agent-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.agent-id {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.agent-info {
    flex: 1;
}

.agent-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agent-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agent-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF5733;
    flex-shrink: 0;
}

.agent-status {
    display: inline-block;
    padding: 4px 12px;
    background: #d4edda;
    color: #155724;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.agent-status.offline {
    background: #f8d7da;
    color: #721c24;
}

/* ==================== AMOUNT BUTTONS ==================== */
.amount-btn {
    padding: 12px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.amount-btn.active {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    border-color: transparent;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

/* ==================== APP TITLE ==================== */
.app-title {
    font-size: 22px;
    font-weight: 700;
    background: #FF5733;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== ATTACH BUTTON ==================== */
.attach-btn {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.attach-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ==================== BACK BUTTON ==================== */
.back-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ==================== BADGE ==================== */
.badge {
    background: #FF6B6B;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* ==================== BALANCE ==================== */
.balance-amount {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.balance-card {
    background: #FF5733;
    margin: 20px;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    color: white;
    text-align: center;
}

.balance-icon {
    font-size: 36px;
    animation: pulse 2s ease-in-out infinite;
}

.balance-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
    font-weight: 500;
}

.balance-note {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 5px;
}

.balance-section {
    margin-bottom: 15px;
}

/* ==================== BANNER AD ==================== */
.banner-ad {
    background: white;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    border: 2px dashed #ddd;
}

/* ==================== BOTTOM NAVIGATION ==================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 12px 0;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

/* ==================== BUTTONS ==================== */
.btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-back {
    background: #95a5a6;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.btn-back i {
    margin-right: 10px;
}

.btn-primary-custom {
    background: #FF5733;
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    margin-bottom: 30px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-primary-custom i {
    margin-right: 10px;
}

.buy-package-btn {
    width: 100%;
    padding: 15px;
    background: #FF5733;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* ==================== CALL BUTTON ==================== */
.call-btn {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

/* ==================== CANCEL BUTTON ==================== */
.cancel-image-btn {
    background: #f0f0f0;
    color: #333;
}

/* ==================== CARD ==================== */
.card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    margin-top: -26px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: #667eea;
}

/* ==================== CHAT ==================== */
.chat-actions {
    display: flex;
    gap: 10px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #667eea;
}

.chat-btn {
    background: #FF5733;
    color: white;
}

.chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.chat-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f5f5f5;
}

.chat-container::-webkit-scrollbar {
    width: 6px;
}

.chat-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chat-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.chat-content {
    display: none;
    flex-direction: column;
    height: 100%;
}

.chat-content.active {
    display: flex;
}

.chat-date {
    text-align: center;
    margin: 20px 0;
}

.chat-header {
    background: #FF5733;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.chat-input-container {
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.chat-panel {
    flex: 1;
    background:#FF5733;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.chat-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.chat-user-details {
    display: flex;
    flex-direction: column;
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-user-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

/* ==================== CHECKBOX ==================== */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FF6B4A;
}

.checkbox-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
}

/* ==================== CLEAR SEARCH ==================== */
.clear-search {
    color: #999;
    cursor: pointer;
    font-size: 18px;
    display: none;
    transition: all 0.3s ease;
}

.clear-search:hover {
    color: #667eea;
}

.clear-search.show {
    display: block;
}

/* ==================== CLOSE BUTTONS ==================== */
.close-btn {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
}

.close-deposit {
    background: rgba(255, 107, 107, 0.1);
    border: none;
    color: #FF6B6B;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-deposit:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: rotate(90deg);
}

.close-modal {
    background: rgba(255, 107, 107, 0.1);
    border: none;
    color: #FF6B6B;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: rotate(90deg);
}

/* ==================== COIN ICON ==================== */
.coin-animation {
    font-size: 24px;
    display: inline-block;
    animation: rotate 2s linear infinite;
}

.coin-icon {
    font-size: 22px;
    animation: pulse 2s ease-in-out infinite;
}

/* ==================== CONFIRM PURCHASE BUTTON ==================== */
.confirm-purchase-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.confirm-purchase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

.confirm-purchase-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
}

/* ==================== CONTACT ==================== */
.contact-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-avatar-wrapper {
    position: relative;
    margin-right: 12px;
    flex-shrink: 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card.email .contact-icon {
    color: #EA4335;
}

.contact-card.phone .contact-icon {
    color: #4CAF50;
}

.contact-card.telegram .contact-icon {
    color: #0088cc;
}

.contact-card.whatsapp .contact-icon {
    color: #25D366;
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
    color: #667eea;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 15px;
    margin: 5px 10px;
    flex-shrink: 0;
}

.contact-item.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-item.hidden {
    display: none;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-last-msg {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-name {
    color: white;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 3px;
}

.contact-value {
    color: #667eea;
    font-size: 13px;
    word-break: break-all;
}

.contacts-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.contacts-sidebar {
    width: 320px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.container-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== COPY ==================== */
.copy-btn {
    background: #FF5733;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-icon {
    font-size: 16px;
    color: white;
}

.copy-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 2000;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.copy-toast.show {
    transform: translateX(0);
}

/* ==================== CTA SECTION ==================== */
.cta-button {
    background: white;
    color: #FF5733;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section {
    background: #FF5733;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* ==================== DASHBOARD GRID ==================== */
.dashboard-grid {
    padding: 30px 20px;
    background: #f8f9fa;
    margin-bottom: 122px;
}

.dashboard-grid .row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ==================== DATE BADGE ==================== */
.date-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
}

/* ==================== DEPOSIT ==================== */
.deposit-content {
    display: none;
}

.deposit-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.deposit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.deposit-section {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    display: none;
}

.deposit-section.active {
    display: block;
    animation: slideDown 0.4s ease;
}

.deposit-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.deposit-title i {
    font-size: 24px;
    color: #FF6B6B;
}

/* ==================== DETAIL ==================== */
.detail-content {
    flex: 1;
}

.detail-icon {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF5733;
    flex-shrink: 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.detail-value {
    font-weight: 600;
    color: #333;
}

.detail-value.amount {
    color: #4caf50;
}

/* ==================== DONE BUTTON ==================== */
.done-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.done-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

/* ==================== DOT ==================== */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* ==================== DROPDOWN ==================== */
.dropdown-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.dropdown-item:active {
    background: #e8e8e8;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item i {
    color: #FF6B4A;
    font-size: 18px;
}

.dropdown-menu {
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    margin-top: -10px;
    margin-bottom: 20px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s;
}

.dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
}

/* ==================== EARNING AMOUNT ==================== */
.earning-amount {
    font-weight: 600;
    color: #FF5733;
    font-size: 15px;
}

/* ==================== EMOJI ==================== */
.emoji-btn {
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    background: none;
    border: none;
    color: white;
    flex-shrink: 0;
}

.emoji-btn:hover {
    transform: scale(1.2);
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
}

.emoji-header {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 10px;
    text-align: center;
}

.emoji-item {
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    user-select: none;
}

.emoji-item:hover {
    background: #f0f0f0;
    transform: scale(1.3);
}

.emoji-picker {
    position: fixed;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    padding: 15px;
    max-width: 350px;
    width: 90%;
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.emoji-picker.active {
    display: grid;
}

.emoji-picker.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.emoji-picker::-webkit-scrollbar {
    width: 5px;
}

.emoji-picker::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.emoji-picker::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* ==================== EMPTY STATE ==================== */
.empty-chat-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 40px;
}

.empty-chat-state h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.empty-chat-state i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-chat-state p {
    font-size: 16px;
    opacity: 0.7;
}

.empty-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.empty-subtext {
    font-size: 14px;
    color: #999;
}

.empty-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

/* ==================== FAQ ==================== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #666;
    line-height: 1.8;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-icon {
    color: #667eea;
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: white;
}

.faq-item.active .faq-question {
    background: #667eea;
    color: white;
}

.faq-question {
    background: #f9f9f9;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-size: 14px;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-section {
    margin-bottom: 30px;
}

/* ==================== FEATURE ==================== */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #FF5733;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 30px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* ==================== FILE ==================== */
.file-input {
    display: none;
}

.file-preview {
    margin-top: 15px;
    display: none;
}

.file-preview.active {
    display: block;
}

.file-types {
    font-size: 12px;
    color: #95a5a6;
}

.file-upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
}

.file-upload-area.dragover {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.1);
}

.file-upload-area:hover {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.05);
}

/* ==================== FILTER TABS ==================== */
.filter-tab {
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.filter-tab.active {
    background: #FF5733;
    color: white;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
    overflow-x: auto;
}

/* ==================== FORM ==================== */
.form-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s;
    display: none;
}

.form-content.show {
    max-height: 1000px;
    opacity: 1;
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
    color: #333;
    margin-bottom: 15px;
}

.form-input:focus {
    outline: none;
    border-color: #FF6B6B;
    background: white;
}

.form-input::placeholder {
    color: #999;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-label i {
    margin-right: 8px;
    color: #FF6B6B;
}

.form-section {
    padding: 20px;
    max-width: 600px;
    margin: -30px auto 0;
    position: relative;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: #667eea;
}

/* ==================== GATEWAY ==================== */
.gateway-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.gateway-name {
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
}

/* ==================== HEADER ==================== */
.header {
    background: #FF6B4A;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 15px;
}

.header-section {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.header-spacer {
    width: 40px;
}

.header-title {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    background: #FF5733;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white;
    font-size: 22px;
    font-weight: 600;
}

/* ==================== HISTORY ==================== */
.history-amount {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
}

.history-date {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 10px;
}

.history-method {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

/* ==================== HOW TO WORK ==================== */
.howtowork {
    background: #FF5733;
    border-radius: 20px;
    padding: 40px 30px;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.howtowork h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.howtowork i {
    font-size: 60px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.howtowork p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
}

/* ==================== ICON ==================== */
.icon-btn {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #6B5CE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-circle i {
    color: white;
    font-size: 36px;
}

/* ==================== IMAGE INPUT ==================== */
#imageInput {
    display: none;
}

/* ==================== IMAGE PREVIEW ==================== */
.image-preview {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 12px;
}

.image-preview-container {
    position: fixed;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    padding: 15px;
    max-width: 350px;
    width: 90%;
    display: none;
    z-index: 1000;
}

.image-preview-container.show {
    display: block;
    animation: slideUp 0.3s ease;
}

/* ==================== INFO ==================== */
.info-answer {
    color: #666;
    font-size: 15px;
    text-align: justify;
}

.info-answer strong {
    color: #333;
}

.info-banner {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box {
    background: #FF5733;
    border-left: 4px solid #f59e0b;
    padding: 1px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    color:white;
}

.info-box i {
    color: #3498db;
    margin-right: 10px;
    font-size: 16px;
}

.info-box p {
    color: #dae5ef;
    font-size: 14px;
    line-height: 1.6;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    line-height: 1.6;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.info-card-label {
    font-size: 14px;
    opacity: 0.9;
}

.info-card-value {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.info-desc {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-question {
    color: #888;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.info-section {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    padding-top: 5px;
}

.info-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-value {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
}

/* ==================== INPUT ==================== */
.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 10px 15px;
    gap: 10px;
}

/* ==================== INSTRUCTION ==================== */
.instruction-desc {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
}

.instruction-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.instruction-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.instruction-number {
    width: 35px;
    height: 35px;
    background: #FF5733;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.instruction-text {
    flex: 1;
    padding-top: 5px;
}

.instruction-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.instructions-section {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 20px;
}

/* ==================== KEYFRAMES ==================== */
@keyframes bell {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

@keyframes blink {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* ==================== LINK ==================== */
.link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.link-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    background: #f8f9fa;
    color: #333;
}

/* ==================== LOGO ==================== */
.logo-container {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    padding: 20px 0;
}

/* ==================== MENU ==================== */
.menu-card {
    background: white;
    /* border-radius: 20px; */
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    /* transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent; */
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1)); */
    /* transform: rotate(45deg); */
    /* transition: all 0.5s ease; */
    opacity: 0;
}

.menu-card:hover::before {
    /* opacity: 1; */
}

.menu-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: #FF5733;
    border-color: #FF5733;
}

.menu-card:hover .menu-icon-circle {
    transform: rotateY(360deg);
}

.menu-card a {
    list-style: none;
}

.menu-icon {
    font-size: 26px;
    color: #FF5733;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.menu-icon:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.1) rotate(5deg);
}

.menu-icon-circle {
    width: 70px;
    height: 70px;
    background: #FF5733;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.menu-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 10px;
}

.menu-label a {
    color: inherit;
    text-decoration: none;
}

/* ==================== MESSAGE ==================== */
.message {
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
    gap: 8px;
    animation: slideIn 0.3s ease;
}

.message.received {
    justify-content: flex-start;
}

.message.received .message-bubble {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.message.received .message-time {
    text-align: left;
}

.message.sent {
    justify-content: flex-end;
}

.message.sent .message-avatar {
    order: 2;
}

.message.sent .message-bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #667eea;
    flex-shrink: 0;
}

.message-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border-radius: 12px;
    min-width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    animation: bounceIn 0.5s ease;
}

.message-badge.show {
    display: flex;
}

.message-bubble {
    max-width: 65%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
}

.message-content {
    max-width: 65%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
}

.message-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
    margin-bottom: 5px;
    display: block;
    cursor: pointer;
}

.message-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    outline: none;
    color: #333;
}

.message-input::placeholder {
    color: #999;
}

.message-text {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    text-align: right;
}

.message-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    animation: slideIn 0.3s ease-out;
}

.message-wrapper.received .message-bubble {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    color: white;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message-wrapper.sent {
    flex-direction: row-reverse;
}

.message-wrapper.sent .message-bubble {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(56, 142, 60, 0.9) 100%);
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ==================== METHOD ==================== */
.method-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.method-option {
    padding: 18px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

.method-option.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.method-option:hover {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.05);
}

.method-option i {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.method-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-body {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    color: #667eea;
    font-size: 20px;
}

.modal-package-info {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 83, 0.1));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.modal-package-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.modal-package-price {
    font-size: 32px;
    font-weight: 700;
    color: #FF6B6B;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title i {
    color: #FF6B6B;
    font-size: 28px;
}

/* ==================== MREC AD ==================== */
.mrec-ad {
    background: white;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    border: 2px dashed #ddd;
    min-height: 100px;
}

/* ==================== NAV ==================== */
.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    color: #95a5a6;
    position: relative;
    text-align: center;
}

.nav-item.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-item.active::before {
    width: 50%;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 0 0 5px 5px;
    transition: width 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-3px);
}

.nav-item a {
    color: #555;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-item a i {
    font-size: 20px;
    margin-bottom: 3px;
}

.nav-item i {
    font-size: 22px;
}

.nav-label {
    font-size: 11px;
    font-weight: 600;
}

/* ==================== NO RESULTS ==================== */
.no-results {
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 20px;
    display: none;
}

.no-results.show {
    display: block;
}

/* ==================== NOTICE BAR ==================== */
.notice-bar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 15px 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.notice-icon {
    font-size: 20px;
    color: white;
    animation: bell 2s ease-in-out infinite;
}

.notice-text {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

/* ==================== NOTIFICATION ICON ==================== */
.notification-icon {
    font-size: 26px;
    color: #FF5733;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.notification-icon:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.1) rotate(5deg);
}

/* ==================== ONLINE ==================== */
.online-payment-form {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #e74c3c;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.online-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #4ade80;
    border: 2px solid rgba(0,0,0,0.3);
    border-radius: 50%;
}

/* ==================== OPTION ==================== */
.option-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.option-card:active {
    transform: scale(0.98);
}

.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
}

.option-item:hover {
    padding-left: 10px;
}

.option-item:last-child {
    border-bottom: none;
}

.option-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.option-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.options-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

.options-header {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.options-header h1 {
    color: #667eea;
    font-size: 28px;
    margin-bottom: 10px;
}

.options-header p {
    color: #666;
    font-size: 14px;
}

.options-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==================== PACKAGE ==================== */
.package-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.package-card.popular {
    border-color: #FFD700;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
    border-color: #667eea;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features i {
    color: #27ae60;
    font-size: 14px;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #2c3e50;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-icon {
    width: 70px;
    height: 70px;
    background: #FF5733;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.package-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.package-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.package-price {
    text-align: center;
    margin-bottom: 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* ==================== PAGE ==================== */
.page {
    display: none;
    min-height: 100vh;
    padding-bottom: 80px;
}

.page.active {
    display: block;
}

/* ==================== PASSWORD CHANGE ==================== */
.passwordChange-btn {
    background-color: #4e73df;
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
}

.passwordChange-btn:hover {
    background-color: #2e59d9;
}

.passwordChange-card {
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.25);
}

.passwordChange-form-control {
    border-radius: 10px;
}

.passwordChange-profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4e73df;
    display: block;
}

.passwordChange-profile-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.passwordChange-upload-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

.passwordChange-upload-btn input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 776px;
    opacity: 0;
    cursor: pointer;
}

/* ==================== PAY NOW BUTTON ==================== */
.pay-now-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pay-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

/* ==================== PAYMENT ==================== */
.payment-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.payment-card:active {
    transform: scale(0.98);
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.payment-details {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.payment-gateway-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #e74c3c;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payment-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #FF6B4A;
}

.payment-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.payment-method-details {
    flex: 1;
}

.payment-method-desc {
    font-size: 12px;
    color: #7f8c8d;
}

.payment-method-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.payment-method-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-option.selected {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.1);
}

.payment-method-option:hover {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.05);
}

.payment-method-radio {
    width: 20px;
    height: 20px;
    accent-color: #FF6B6B;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.payment-methods-modal {
    margin-bottom: 25px;
}

.payment-name {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    text-align: center;
}

.payment-section {
    background: linear-gradient(135deg, #FF6B4A 0%, #FF8A6B 100%);
    padding: 40px 20px 60px;
    text-align: center;
    border-radius: 0 0 50% 50% / 0 0 30px 30px;
}

.payment-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.payment-title {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* ==================== POPULAR BADGE ==================== */
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF5733;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

/* ==================== PREVIEW ==================== */
.preview-actions {
    display: flex;
    gap: 10px;
}

.preview-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.preview-header {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 10px;
    text-align: center;
}

.preview-icon {
    font-size: 24px;
    color: #FF6B6B;
}

.preview-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 10px;
}

.preview-info {
    flex: 1;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
}

.preview-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.preview-size {
    font-size: 12px;
    color: #7f8c8d;
}

/* ==================== PRICE ==================== */
.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #FF5733;
}

.price-currency {
    font-size: 20px;
    color: #7f8c8d;
}

/* ==================== PROFILE ==================== */
.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    margin: 0 auto 20px;
    background: white;
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* .profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px 70px;
    position: relative;
} */

.profile-info {
    flex: 1;
    color: white;
}

.profile-info-section {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.profile-role {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.profile-role-badge {
    display: inline-block;
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ==================== REFER ==================== */
.refer-code {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.refer-code:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.refer-header {
    background: #FF5733;
    border-radius: 15px;
    padding: 25px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.refer-header h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.refer-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.refer-link-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.refer-link-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.refer-link-section h3 i {
    color: #FF5733;
}

.refer-list-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.refer-list-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.refer-list-section h3 i {
    color: #FF5733;
}

.refer-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.refer-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.refer-table {
    width: 100%;
    border-collapse: collapse;
}

.refer-table tbody tr:hover {
    background: #f8f9fa;
}

.refer-table tbody tr:last-child td {
    border-bottom: none;
}

.refer-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.refer-table th {
    padding: 15px 10px;
    text-align: left;
    font-weight: 600;
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.refer-table thead {
    background: #f8f9fa;
}

/* ==================== REMOVE FILE ==================== */
.remove-file {
    background: rgba(231, 76, 60, 0.1);
    border: none;
    color: #e74c3c;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background: rgba(231, 76, 60, 0.2);
}

/* ==================== ROCKET ICON ==================== */
.rocket-icon {
    font-size: 50px;
    color: white;
}

/* ==================== SCROLL ==================== */
.scroll-arrow {
    width: 50px;
    height: 50px;
    background: #FF6B4A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.4);
    cursor: pointer;
}

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scrollbar-hide::-webkit-scrollbar {
    width: 8px;
}

.scrollbar-hide::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.scrollbar-hide::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

.scrollbar-hide::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
}

/* ==================== SEARCH ==================== */
.search-box {
    padding: 15px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-box i {
    color: #FF5733;
    font-size: 18px;
    margin-right: 12px;
}

.search-container {
    background: white;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.search-icon {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    color: white;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    outline: none;
    color: #333;
}

.search-input:focus {
    background: #6F75D7;
    border-color: #6F75D7;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.search-input::placeholder {
    color: white;
}

/* ==================== SECTION TITLE ==================== */
.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #FF5733;
}

/* ==================== SEND BUTTON ==================== */
.send-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    flex-shrink: 0;
}

.send-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.send-image-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.send-money-btn {
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 18px;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.send-money-btn.active i {
    transform: rotate(180deg);
}

.send-money-btn:active {
    transform: scale(0.98);
}

.send-money-btn i {
    color: #666;
    transition: transform 0.3s;
}

/* ==================== SETTING ==================== */
.setting-arrow {
    color: #bdc3c7;
    font-size: 16px;
}

.setting-icon {
    width: 45px;
    height: 45px;
    background: #FF5733;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.setting-item:hover {
    padding-left: 10px;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-label {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.setting-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.settings-section {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ==================== SHARE BUTTONS ==================== */
.share-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.telegram {
    background: #0088cc;
    color: white;
}

.share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn:active {
    transform: translateY(0);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    position: fixed;
    left: -320px;
    top: 0;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0,0,0,0.4);
}

.sidebar.active {
    left: 0;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.sidebar-header {
    padding: 40px 25px 30px;
    background: #FF5733;
    text-align: center;
    border-bottom: 3px solid rgba(255,255,255,0.1);
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.2), transparent);
    transition: width 0.3s ease;
}

.sidebar-item:hover {
    background: rgba(255,255,255,0.05);
    border-left-color: #667eea;
    color: white;
    transform: translateX(5px);
}

.sidebar-item:hover::before {
    width: 100%;
}

.sidebar-item i {
    font-size: 22px;
    width: 35px;
    margin-right: 18px;
}

.sidebar-item-text {
    font-size: 16px;
    font-weight: 500;
}

.sidebar-logo {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #667eea;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.sidebar-menu {
    padding: 25px 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-title {
    color: white;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ==================== SLIDE ==================== */
.slide {
    min-width: 100%;
    height: 250px;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-description {
    font-size: 15px;
    opacity: 0.9;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 25px;
    color: white;
}

.slide-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ==================== SLIDER ==================== */
.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #667eea;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-nav.next {
    right: 15px;
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-section {
    padding: 25px 20px;
    background: #f8f9fa;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

/* ==================== STAT ==================== */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 30px;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
    background: #FF5733;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.stat-item:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-size: 13px;
    opacity: 0.9;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

/* ==================== STATUS ==================== */
.status-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-top: 4px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-completed {
    background: #e8f5e9;
    color: #4caf50;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-failed {
    background: #ffebee;
    color: #f44336;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
    background: #fff3e0;
    color: #ff9800;
}

.status-success {
    background: #d4edda;
    color: #155724;
}

/* ==================== STATS ==================== */
.stats-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.stats-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== STEP ==================== */
.step-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #FF5733;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.2);
}

.step-description {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-left: 65px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-icon {
    font-size: 40px;
    color: #FF5733;
    margin-left: 65px;
    margin-top: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #FF5733;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.steps-section {
    margin-bottom: 30px;
}

/* ==================== SUBMIT BUTTON ==================== */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 18px;
    background: #FF5733;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding: 18px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.submit-btn:active {
    background: #45a049;
    transform: scale(0.98);
}

.submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
}

.submit-btn:hover {
    transform: translateY(-2px);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

/* ==================== SUCCESS ==================== */
.success-content {
    background: white;
    border-radius: 25px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: zoomIn 0.5s ease;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.success-detail-row:last-child {
    border-bottom: none;
}

.success-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    animation: successPulse 1s ease-in-out;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
    animation: bounce 0.6s ease;
}

.success-message {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
}

.success-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-msg {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #c3e6cb;
}

.success-screen {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-screen.active {
    display: block;
    animation: zoomIn 0.5s ease;
}

.success-title {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ==================== SUMMARY ==================== */
.summary-label {
    color: #7f8c8d;
    font-size: 14px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: #FF6B6B;
    padding-top: 15px;
}

.summary-value {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

/* ==================== SUPPORT ==================== */
.support-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

.support-header {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}

.support-header h1 {
    color: #FF5733;
    font-size: 28px;
    margin-bottom: 10px;
}

.support-header p {
    color: #666;
    font-size: 14px;
}

.support-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==================== TAB ==================== */
.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #F5F5F5;
    color: #666;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #FF6B4A;
    color: white;
}

.tab-btn:active {
    transform: scale(0.95);
}

.tab-btn i {
    font-size: 16px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tabs-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 15px 20px 20px;
    background: white;
    scrollbar-width: none;
}

.tabs-container::-webkit-scrollbar {
    display: none;
}

/* ==================== TASK ==================== */
.task-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.task-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease-out;
}

.task-container {
    padding: 0 20px 20px;
}

.task-counter {
    display: inline-block;
    background: #FF5733;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 25px;
}

.task-date {
    font-size: 12px;
    color: #999;
}

.task-description {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.task-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.task-icon {
    width: 80px;
    height: 80px;
    background: #FF5733;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.task-icon.ads {
    background: #FF5733;
}

.task-icon.package {
    background: #FF5733;
}

.task-icon.referral {
    background: #FF5733;
}

.task-icon.withdraw {
    background: #FF5733;
}

.task-info {
    flex: 1;
}

.task-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.task-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.task-title {
    font-size: 26px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.task-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==================== TOAST ==================== */
/* .toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 2000;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 14px;
    transition: bottom 0.3s;
    z-index: 1000;
} */

.toast.show {
    transform: translateX(0);
    bottom: 30px;
}

.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
}

/* ==================== TOGGLE SWITCH ==================== */
.toggle-switch {
    width: 50px;
    height: 28px;
    background: #ddd;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: #667eea;
}

.toggle-switch.active::after {
    left: 24px;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: left 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ==================== TOP HEADER ==================== */
.top-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 100;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

/* ==================== TYPING INDICATOR ==================== */
.typing-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.typing-dots {
    display: flex;
    gap: 4px;
    display: inline-block;
}

.typing-dots span {
    animation: blink 1.4s infinite both;
    display: inline-block;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.typing-indicator {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-style: italic;
    display: none;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 15px;
}

.typing-indicator.active {
    display: block;
    display: flex;
    animation: slideIn 0.3s ease;
}

.typing-indicator.show {
    display: flex;
    animation: slideIn 0.3s ease;
}

/* ==================== UNVERIFIED BADGE ==================== */
.unverified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #fff3cd;
    color: #856404;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.unverified-badge i {
    font-size: 12px;
}

/* ==================== UPLOAD ==================== */
.upload-icon {
    font-size: 48px;
    color: #FF6B6B;
    margin-bottom: 15px;
}

.upload-text {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* ==================== UPAY ICON ==================== */
.upay-icon {
    font-size: 50px;
    color: white;
}

/* ==================== USER ==================== */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF5733;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-email {
    font-size: 12px;
    color: #999;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.user-status {
    color: #27ae60;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==================== USERCHATE ==================== */
.userchate {
    display: flex;
    gap: 0;
    max-width: 1200px;
    width: 100%;
    height: 778px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    margin: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:#FF5733;
    margin-top: 20px;
}

/* ==================== VERIFIED BADGE ==================== */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #d4edda;
    color: #155724;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.verified-badge i {
    font-size: 12px;
}

/* ==================== VIDEO ==================== */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.video-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.video-icon {
    width: 45px;
    height: 45px;
    background: #FF5733;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B4A 0%, #FF8A6B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.video-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 13px;
    color: #3498db;
    font-weight: 600;
}

.video-info-badge i {
    font-size: 16px;
}

.video-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.video-subtitle {
    font-size: 13px;
    color: #7f8c8d;
    color: #888;
}

.video-tab {
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-tab.active {
    background: #FF5733;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.video-tab:hover {
    border-color: #FF6B6B;
    background: rgba(255, 107, 107, 0.05);
    transform: translateY(-2px);
}

.video-tab i {
    font-size: 16px;
}

.video-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.video-tabs::-webkit-scrollbar {
    height: 4px;
}

.video-tabs::-webkit-scrollbar-thumb {
    background: #FF6B6B;
    border-radius: 10px;
}

.video-tabs::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.video-title-main {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3px;
}

.video-title-section {
    flex: 1;
}

.video-title-section h1 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.video-tutorial-section {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
}

.video-wrapper {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .action-buttons {
        grid-template-columns: 1fr;
    }
    .dashboard-grid{
        margin-top: -23px;
    }
     .profile-header{
        border-bottom-left-radius: 62% 16%;
     }
    

    .ads-summary-grid {
        grid-template-columns: 1fr;
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .back-btn {
        display: flex;
    }

    .balance-amount {
        font-size: 36px;
        margin-top: -19px;
    }

    .balance-label {
        margin-top: -23px;
    }

    .btn-primary-custom {
        padding: 15px 40px;
        font-size: 16px;
    }

    .chat-input-container {
        margin-bottom: 23px;
    }

    .chat-panel {
        width: 100%;
    }

    .contacts-sidebar {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 10;
        transition: transform 0.3s ease;
    }

    .contacts-sidebar.mobile-hidden {
        transform: translateX(-100%);
    }

    .dashboard-grid .row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .emoji-picker {
        right: 20px;
        max-width: 280px;
        grid-template-columns: repeat(6, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .menu-card {
        padding: 20px 10px;
    }

    .menu-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .menu-label {
        font-size: 13px;
    }

    .message-bubble {
        max-width: 75%;
    }

    .method-selector {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 25px;
    }

    .nav-label {
        font-size: 10px;
        font-size: 12px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .profile-avatar {
        width: 90px;
        height: 90px;
    }

    .profile-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-role {
        font-size: 23px;
        margin-top: -23px;
    }

    .section-title {
        font-size: 20px;
    }

    .sidebar {
        width: 280px;
        left: -280px;
    }

    .slide {
        height: 200px;
    }

    .slide-title {
        font-size: 22px;
    }

    .step-description,
    .step-icon {
        margin-left: 0;
        margin-top: 15px;
    }

    .task-title {
        font-size: 22px;
    }

    .userchate {
       height: 80;
        max-width: 100%;
        border-radius: 0;
    }

    .video-container {
        padding-bottom: 75%;
    }

    .video-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 15px;
      
    }
    .nazmul{
      margin-top: -102px;
    }
    .nazmul1{
        margin-top: -171px;
    }

    .hero-section {
        padding: 30px 20px;
    }

    .hero-section h1 {
        font-size: 26px;
    }

    .hero-section i {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .emoji-picker {
        grid-template-columns: repeat(6, 1fr);
    }

    .message-bubble {
        max-width: 75%;
    }

    .refer-header {
        padding: 20px;
    }

    .refer-header h2 {
        font-size: 20px;
    }

    .refer-section {
        padding: 15px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-number {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .main-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 20px;
    }
}

/* ==================== END ==================== */




        /* Balance Section */
        .balance-section {
            background: linear-gradient(135deg, #FF6B4A 0%, #FF8A6B 100%);
            padding: 30px 20px 50px;
            text-align: center;
            position: relative;
        }

        .balance-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 25px;
            background: #f5f5f5;
            border-radius: 25px 25px 0 0;
        }

        .balance-label {
            color: white;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            font-style: italic;
        }

        .balance-amount {
            color: white;
            font-size: 36px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        /* Form Container */
        .form-container {
            padding: 20px 16px;
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

        /* Payment Options */
        .payment-options {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 6px;
            min-width: fit-content;
        }

        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #FF6B4A;
            cursor: pointer;
            flex-shrink: 0;
        }

        .radio-option label {
            font-size: 15px;
            color: #333;
            font-weight: 500;
            cursor: pointer;
            user-select: none;
            white-space: nowrap;
        }

        /* Input Groups */
        .input-group {
            margin-bottom: 18px;
            width: 100%;
        }

        .input-field {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 14px 16px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .input-field:focus-within {
            border-color: #FF6B4A;
            box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
        }

        .input-field i {
            font-size: 18px;
            color: #333;
            width: 22px;
            text-align: center;
            flex-shrink: 0;
        }

        .input-field input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15px;
            color: #333;
            background: transparent;
            width: 100%;
            min-width: 0;
        }

        .input-field input::placeholder {
            color: #999;
        }

        /* Withdraw Button */
        .withdraw-btn {
            width: 100%;
            background: linear-gradient(135deg, #FF6B4A 0%, #FF8A6B 100%);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: 1.5px;
            font-style: italic;
            cursor: pointer;
            margin-top: 15px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
            touch-action: manipulation;
        }

        .withdraw-btn:active {
            transform: scale(0.98);
        }

        /* Notice Section */
        .notice-section {
            background: white;
            padding: 20px 16px;
            margin: 0 16px;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .notice-title {
            text-align: center;
            font-size: 17px;
            color: #999;
            margin-bottom: 18px;
            font-weight: 500;
        }

        .notice-heading {
            text-align: center;
            font-size: 15px;
            color: #666;
            margin-bottom: 18px;
            font-weight: 500;
        }

        .notice-text {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
            text-align: center;
            word-wrap: break-word;
        }

        .notice-text strong {
            color: #333;
            font-weight: 600;
        }

        .notice-box {
            background-color: #f0f0f0;
            padding: 12px;
            border-radius: 8px;
            margin: 15px 0;
        }

        .notice-spacing {
            margin-bottom: 15px;
        }

        /* Animation */
        .form-container,
        .notice-section {
            animation: fadeInUp 0.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Small Mobile Devices (320px - 374px) */
        @media (max-width: 374px) {
            .header {
                padding: 10px 12px;
                gap: 10px;
            }

            .header-title {
                font-size: 18px;
            }

            .back-btn {
                font-size: 18px;
                min-width: 36px;
            }

            .balance-section {
                padding: 25px 16px 45px;
            }

            .balance-label {
                font-size: 15px;
                letter-spacing: 1px;
                margin-top: 13px;
            }

            .balance-amount {
                font-size: 30px;
            }

            .form-container {
                padding: 16px 12px;
            }

            .payment-options {
                gap: 12px;
            }

            .radio-option {
                gap: 5px;
            }

            .radio-option input[type="radio"] {
                width: 16px;
                height: 16px;
            }

            .radio-option label {
                font-size: 14px;
            }

            .input-field {
                padding: 12px 14px;
                gap: 10px;
            }

            .input-field i {
                font-size: 16px;
                width: 20px;
            }

            .input-field input {
                font-size: 14px;
            }

            .withdraw-btn {
                padding: 14px;
                font-size: 15px;
                letter-spacing: 1px;
            }

            .notice-section {
                padding: 16px 12px;
                margin: 0 12px;
                margin-bottom: 50px;
            }

            .notice-title {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .notice-heading {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .notice-text {
                font-size: 13px;
                line-height: 1.6;
            }

            .notice-box {
                padding: 10px;
            }
        }

        /* Medium Mobile Devices (375px - 480px) */
        @media (min-width: 375px) and (max-width: 480px) {
            .balance-amount {
                font-size: 34px;
            }

            .payment-options {
                gap: 14px;
            }

            .withdraw-btn {
                font-size: 16px;
            }
        }

        /* Tablets and Up */
        @media (min-width: 481px) {
            .header {
                padding: 15px 20px;
            }

            .balance-section {
                padding: 35px 20px 55px;
            }

            .balance-amount {
                font-size: 42px;
            }

            .form-container {
                padding: 25px 20px;
            }

            .payment-options {
                gap: 25px;
            }

            .withdraw-btn {
                font-size: 18px;
                padding: 18px;
            }

            .withdraw-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
            }

            .notice-section {
                padding: 25px 20px;
            }
        }

        /* Landscape Mode */
        @media (max-height: 500px) and (orientation: landscape) {
            .balance-section {
                padding: 20px 20px 40px;
            }

            .balance-amount {
                font-size: 28px;
            }

            .form-container {
                padding: 15px 16px;
            }

            .input-group {
                margin-bottom: 12px;
            }

            .withdraw-btn {
                margin-top: 10px;
                margin-bottom: 15px;
            }
        }
        .profile-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 14px;
    background: linear-gradient(90deg, #ff6f61, #ff8a5c);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: 0.3s ease;
    padding: 15px;
}

.profile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Avatar Style (Full Border Circle) */
.profile-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #ffffff80, #ffffff20);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

/* Info Section */
.profile-info {
    flex: 1;
}

.profile-role {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 6px;
}

.info-label {
    font-weight: 500;
}

.refer-code {
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    padding: 4px 10px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.refer-code:hover {
    background: rgba(255,255,255,0.25);
}

.tap-to-view {
    font-size: 14px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-weight: 500;
}

.tap-arrow {
    transition: transform 0.3s ease;
}

.tap-arrow.rotated {
    transform: rotate(180deg);
}

/* Hidden Balance */
.profile-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    margin-top: 6px;
}

.profile-details.show {
    max-height: 100px;
    opacity: 1;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    z-index: 1000;
}

.toast.show {
    display: flex;
}

/* Responsive (Image Right, Text Left) */
@media (max-width: 600px) {
    .profile-content {
        flex-direction: row-reverse;
        gap: 30px; /* 👉 বাড়ানো হলো যেন image ও text দূরে থাকে */
        align-items: flex-start;
    }

    .profile-avatar {
        width: 70px;
        height: 70px;
    }

    .profile-info {
        text-align: left;
        padding-right: 20px; /* 👉 টেক্সটকে ডানদিকে সরানো */
    }

    .profile-role {
       font-size: 21px;
        margin-top: -9px;
    }

    .tap-to-view {
        font-size: 13px;
    }
}