.point-modal-content {
    max-width: 1100px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-balance-badge {
    background: rgba(0, 229, 122, 0.1);
    border: 1px solid rgba(0, 229, 122, 0.2);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-balance-badge .p-val {
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
}

.point-path-container {
    padding: 40px 0;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.path-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.path-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 229, 122, 0.15);
}

.path-icon {
    width: 90px;
    height: 90px;
    background: rgba(0, 229, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 229, 122, 0.1);
}

.path-card:hover .path-icon {
    background: var(--primary);
    color: var(--bg-dark);
    transform: rotate(360deg) scale(1.1);
}

.path-card span {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: var(--text-main);
}

.path-card p {
    font-size: 14px;
    color: var(--text-muted);
}


.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    max-height: 450px;
    padding: 10px;
    margin-top: 15px;
}

.cs-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cs-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #4b69ff;
}

.cs-card.purple::after {
    background: #8847ff;
}

.cs-card.gold::after {
    background: #ffd700;
}

.cs-card.blue::after {
    background: #4b69ff;
}

.cs-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
}

.cs-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.cs-img img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.cs-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cs-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cs-price {
    font-size: 10px;
    color: var(--primary);
    font-weight: 800;
}

.cs-buy {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs-buy:hover {
    background: var(--primary);
    color: var(--bg-dark);
}


.money-exchange-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
}

.money-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.money-card:hover {
    background: rgba(0, 229, 122, 0.05);
    border-color: rgba(0, 229, 122, 0.2);
    transform: translateX(10px);
}

.m-icon {
    font-size: 24px;
    color: #2ecc71;
}

.m-icon.gold {
    color: #ffd700;
}

.m-text {
    flex-grow: 1;
}

.m-text span {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
}

.m-text p {
    font-size: 12px;
    color: var(--text-muted);
}

.m-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}


.back-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
}

.back-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .path-grid {
        grid-template-columns: 1fr;
    }
}

/* PREFIX SHOP PREMIUM STYLES */
.prefix-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.prefix-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prefix-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prefix-chip:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 229, 122, 0.3);
}

.custom-prefix-input input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}

.custom-prefix-input input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 229, 122, 0.1);
}

.prefix-preview-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.preview-display {
    background: #1a1a1a;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    margin: 20px 0;
}

.preview-prefix {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.preview-nick {
    color: #fff;
}

.preview-info {
    font-size: 12px;
    color: var(--text-muted);
}

.purchase-action-area {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-info .label {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 10px;
}

.price-info .value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 229, 122, 0.3);
}

.buy-prefix-btn {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.buy-prefix-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 229, 122, 0.4);
}

@media (max-width: 992px) {
    .path-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .path-grid {
        grid-template-columns: 1fr;
    }
}