
    /* Wall Component Styles */
    .post-dropdown-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 25px;
        background: var(--card-bg);
        border: 1px solid var(--border-highlight);
        border-radius: 12px;
        /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); */
        z-index: 1000;
        min-width: 180px;
        overflow: hidden;
        animation: fadeIn 0.15s ease-out;
    }

    .post-dropdown-menu::before {
        content: "";
        position: absolute;
        top: -6px;
        right: 12px;
        width: 10px;
        height: 10px;
        background: var(--card-bg);
        border-left: 1px solid var(--border-highlight);
        border-top: 1px solid var(--border-highlight);
        transform: rotate(45deg);
    }

    .dropdown-item {
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-main);
        font-size: 0.9rem;
        cursor: pointer;
        transition: 0.2s;
        text-decoration: none;
        white-space: nowrap;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .dropdown-item.delete:hover {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }

    .post-image-preview {
        display: block;
        max-width: 100%;
        width: auto;
        max-height: 450px;
        height: auto;
        border-radius: 12px;
        margin: 12px 0;
        border: 1px solid var(--border-highlight);
    }

    .post-poll-container {
        margin: 16px 0;
        background: rgba(255, 255, 255, 0.02);
        padding: 16px;
        border-radius: 18px;
        border: 1px solid var(--border-highlight);
    }

    .poll-question {
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--text-main);
    }

    .poll-option {
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        position: relative;
        cursor: pointer;
        overflow: hidden;
        transition: 0.2s;
    }

    .poll-option:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .poll-bar {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: var(--accent);
        opacity: 0.15;
        z-index: 1;
        transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .poll-option.voted .poll-bar {
        opacity: 0.25;
    }

    .poll-option-text {
        position: relative;
        z-index: 2;
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: var(--text-main);
    }

    .poll-option.voted {
        border-left: 3px solid var(--accent);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .post-item {
        position: relative;
    }

    .post-delete-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 68, 68, 0.1);
        color: #ef4444;
        border: 1px solid rgba(255, 68, 68, 0.2);
        border-radius: 8px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.2s;
        cursor: pointer;
        z-index: 5;
    }

    .post-item:hover .post-delete-btn {
        opacity: 1;
    }

    .post-delete-btn:hover {
        opacity: 0.85;
        color: white;
    }

    /* Bank Styles */
    .bank-section {
        background: var(--card-bg);
        border: 1px solid var(--border-highlight);
        border-radius: 24px;
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .bank-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
        border-bottom: 1px solid var(--border-highlight);
        padding-bottom: 15px;
    }
    
    .bank-title {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--text-main);
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .bank-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 25px;
    }

    .bank-card {
        position: relative;
        border-radius: 16px;
        padding: 24px;
        min-height: 170px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: #F2EBDD;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        font-family: 'Onest', sans-serif;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .bank-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }

    /* Card Skins */
    .bank-card.classic-blue {
        background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    }
    .bank-card.dark-gold {
        background: linear-gradient(135deg, #323338 0%, #ef4444 100%);
    }
    .bank-card.emerald {
        background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    }
    .bank-card.nether-red {
        background: linear-gradient(135deg, #0A0A0A 0%, #ef4444 100%);
    }
    .bank-card.obsidian-black {
        background: linear-gradient(135deg, #0A0A0A 0%, #323338 100%);
    }
    .bank-card.amethyst-purple {
        background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 100%);
    }
    
    /* Decorative elements inside card */
    .bank-card::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
        top: -50px;
        right: -50px;
        pointer-events: none;
    }

    .card-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .card-chip {
        width: 32px;
        height: 24px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 4px;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
    
    .card-currency {
        font-size: 1.1rem;
        font-weight: 800;
        letter-spacing: 0.05em;
        opacity: 0.9;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .card-middle {
        margin: 15px 0;
    }
    
    .card-number {
        font-size: 1.3rem;
        letter-spacing: 0.15em;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .card-balance {
        font-size: 1.6rem;
        font-weight: 800;
        margin-top: 5px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .card-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .card-holder {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        opacity: 0.8;
    }
    
    .card-actions-overlay {
        display: flex;
        gap: 8px;
    }
    
    .card-btn {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #F2EBDD;
        padding: 5px 10px;
        border-radius: 8px;
        font-size: 0.72rem;
        cursor: pointer;
        transition: 0.2s;
        text-decoration: none;
    }
    
    .card-btn:hover {
        background: rgba(255, 255, 255, 0.22);
    }

    /* Modal Overlay */
    .bank-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }
    .bank-modal.active {
        opacity: 1;
        pointer-events: auto;
    }
    .bank-modal-content {
        background: var(--card-bg);
        border: 1px solid var(--border-highlight);
        border-radius: 24px;
        width: 440px;
        max-width: 90%;
        padding: 25px;
        /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); */
    }
    .bank-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .bank-modal-title {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--text-main);
        margin: 0;
    }
    .bank-modal-close {
        cursor: pointer;
        color: var(--text-muted);
        font-size: 1.3rem;
        transition: 0.2s;
    }
    .bank-modal-close:hover {
        color: var(--text-main);
    }
