body {
    background: #121212;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

#overlay.show {
    opacity: 1;
    visibility: visible;
}

#sidebar {
    width: 260px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #1a1a28;
    transition: 0.4s ease;
    padding-top: 20px;
    z-index: 999;
}

#sidebar.collapsed {
    width: 100px;
}

#sidebar .nav-link {
    color: #bbb;
    padding: 12px 20px;
    margin: 5px 22px;
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

#sidebar .nav-link i {
    width: 30px;
}

#sidebar.collapsed .nav-link {
    justify-content: center;
    padding: 12px 0;
}

#sidebar.collapsed .nav-link i {
    width: auto;
}

#sidebar.collapsed .nav-link span {
    display: none;
}

#sidebar .nav-link:hover {
    background: #2c2c3e;
    color: #fff;
}

#sidebar .nav-link.active {
    background: linear-gradient(45deg, #b637ad, #6366f1);
    color: #fff;
}

.sidebar-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
    display: none;
}

.topbar {
    position: fixed;
    top: 0;
    left: 260px;
    right: 0;
    height: 70px;
    background: #1a1a28;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 997;
    transition: 0.4s ease;
    border-bottom: 1px solid #2c2c3e;
}

#sidebar.collapsed~#content .topbar {
    left: 100px;
}

#content {
    margin-left: 260px;
    padding: 20px;
    transition: 0.4s ease;
}

#content.expanded {
    margin-left: 100px;
}

.search-box {
    background: #2a2a3d;
    border-radius: 30px;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    max-width: 75%;
}

@media(max-width: 768px) {
    .search-box {
        padding: 8px 0px 8px 12px;
    }
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 200px;
    font-size: 14px;
}

.search-box i {
    color: #aaa;
    margin-right: 8px;
}

.top-icons i {
    font-size: 18px;
    margin-left: 5px;
    cursor: pointer;
    color: #bbb;
    transition: 0.3s;
}

.top-icons i:hover {
    color: #fff;
}

.profile-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

@media (max-width: 991px) {

    #sidebar {
        left: -260px;
    }

    #sidebar.show {
        left: 0;
    }

    .topbar {
        left: 0 !important;
    }

    #content {
        margin-left: 0;
    }

    .sidebar-close {
        display: block;
        color: #fff;
    }
}



/* ===== Creator Dashboard Wrapper ===== */

.creator-dashboard-wrapper {
    margin-top: 64px;
    padding: 10px 5px;
}

/* ===== Dashboard Cards ===== */

.creator-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 25px;
}

.creator-dash-card {
    background: #1f1f30;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .2s ease;
}

.creator-dash-card:hover {
    background: #252538;
}

/* ===== Card Icon ===== */

.creator-card-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(45deg, #b637ad, #6366f1);
    color: #fff;
    font-size: 17px;
}

/* ===== Card Text ===== */

.creator-dash-card h4 {
    font-size: 20px;
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.creator-dash-card p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #aaa;
}

/* ===== Dashboard Box ===== */

.creator-dashboard-box {
    background: #1f1f30;
    border-radius: 10px;
    padding: 18px;
}

/* ===== Box Header ===== */

.creator-box-header {
    margin-bottom: 15px;
}

.creator-box-header h5 {
    font-size: 16px;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

/* Feed */
.feed-wrapper {
    max-width: 900px;
    margin: auto;
}

/* Post Card */
.post-card {
    background: #0c0f2d;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    color: #fff;
}

/* Header */
.post-header {
    padding: 12px 15px;
}

.post-user-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.post-username {
    font-weight: 600;
    font-size: 14px;
}

/* Media */
.post-media img,
.post-media video {
    width: 100%;
    height: auto;
    display: block;
}

/* Actions */
.post-actions {
    padding: 10px 15px;
}

.post-actions i {
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.post-actions i:hover {
    color: #a855f7;
}

/* Likes */
.post-likes {
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Caption */
.post-caption {
    padding: 8px 15px 15px;
    font-size: 14px;
    color: #d1d5db;
}

.post-caption strong {
    color: #fff;
}

/* Scroll behavior */
.feed-wrapper {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar (optional stylish) */
.feed-wrapper::-webkit-scrollbar {
    width: 5px;
}

.feed-wrapper::-webkit-scrollbar-thumb {
    background: #a855f7;
    border-radius: 10px;
}


/* ===== Table Wrapper ===== */

.creator-table-wrapper {
    overflow-x: auto;
}

/* ===== Table ===== */

.creator-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #1f1f30;
}

/* table header */

.creator-dashboard-table thead {
    background: #252538;
}

.creator-dashboard-table th {
    text-align: left;
    padding: 14px 16px;
    color: #9ca3af;
    font-weight: 500;
    font-size: 13px;
    border-bottom: 1px solid #333;
}

/* table body */

.creator-dashboard-table td {
    padding: 16px;
    color: #e5e7eb;
    border-bottom: 1px solid #2a2a3a;
}

/* hover row */

.creator-dashboard-table tbody tr {
    transition: .2s;
}

.creator-dashboard-table tbody tr:hover {
    background: #26263a;
}

/* ===== Content Column ===== */

.creator-table-content {
    display: flex;
    flex-direction: column;
}

.creator-post-title {
    color: #fff;
    font-weight: 500;
}

.creator-post-meta {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 3px;
}

/* ===== Views ===== */

.creator-view-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #cbd5f5;
}

/* ===== Status Labels ===== */

.creator-status {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-block;
}

.creator-published {
    background: #1f5135;
    color: #4ade80;
}

.creator-pending {
    background: #4c3a1f;
    color: #fbbf24;
}

/* ===== Responsive ===== */

/* tablets */

@media(max-width:991px) {

    .creator-dashboard-wrapper {
        margin-top: 85px;
    }

    .creator-dash-card {
        padding: 16px;
    }

    .creator-dash-card h4 {
        font-size: 18px;
    }

}

/* mobile */

@media(max-width:600px) {

    .creator-dashboard-wrapper {
        margin-top: 80px;
    }

    .creator-dashboard-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .creator-dash-card {
        padding: 15px;
    }

    .creator-card-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .creator-dashboard-table {
        font-size: 13px;
    }

    .creator-dashboard-table th,
    .creator-dashboard-table td {
        padding: 12px;
    }

}





/* ===== Creator Post Form Wrapper ===== */

.creator-post-form {
    max-width: 700px;
    margin: 0 auto;
    background: #1f1f30;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* ===== Form Group ===== */

.creator-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.creator-form-group label {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
}

/* ===== Inputs, Textareas, Select ===== */

.creator-post-form input,
.creator-post-form textarea,
.creator-post-form select {
    background: #252538;
    border: 1px solid #2f2f45;
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.creator-post-form input:focus,
.creator-post-form textarea:focus,
.creator-post-form select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.4);
}

/* ===== Textarea Resize ===== */

.creator-post-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Submit Button ===== */

.creator-submit-btn {
    background: linear-gradient(45deg, #b637ad, #6366f1);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    width: fit-content;
}

.creator-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ===== Responsive Design ===== */

/* Medium devices (tablets) */
@media (max-width:991px) {
    .creator-post-form {
        padding: 18px;
    }

    .creator-form-group input,
    .creator-form-group textarea,
    .creator-form-group select {
        font-size: 13px;
        padding: 10px 12px;
    }

    .creator-submit-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}

/* Small devices (mobiles) */
@media (max-width:600px) {
    .creator-post-form {
        padding: 15px;
        border-radius: 10px;
    }

    .creator-form-group input,
    .creator-form-group textarea,
    .creator-form-group select {
        font-size: 13px;
        padding: 10px 12px;
    }

    .creator-submit-btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px 0;
    }
}



.creator-subscriber-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.creator-subscriber-table th {
    text-align: left;
    padding: 14px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.creator-subscriber-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
}

.creator-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.creator-user-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}


.creator-action-select {
    padding: 6px 10px;
    border-radius: 6px;
    background: #1e1e2f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.creator-action-select:focus {
    outline: none;
    border-color: #6c5ce7;
}


.creator-earnings-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.premium-earning-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    border-radius: 14px;
    background: linear-gradient(145deg, #1c1c2d, #26263f);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.premium-earning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.premium-earning-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, #6c5ce7, transparent 40%);
    opacity: .15;
    top: -50%;
    left: -50%;
}

.earning-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(135deg, #6c5ce7, #8e7dff);
    color: #fff;
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.5);
}

.earning-info h3 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.earning-info p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #9fa1b3;
}



.payout-balance-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f1f2e, #2b2b45);
    margin-bottom: 25px;
    color: #fff;
}

.payout-balance-card h3 {
    font-size: 32px;
    margin: 0;
    color: #6c5ce7;
}

.payout-balance-card p {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: .7;
}

.request-payout-btn {
    background: #6c5ce7;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

.request-payout-btn:hover {
    background: #5946d2;
}


.payout-request-box {
    background: #1e1e2f;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    color: #fff;
}

.payout-request-box h4 {
    margin-bottom: 15px;
}

.payout-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.payout-input {
    display: flex;
    flex-direction: column;
}

.payout-input label {
    font-size: 12px;
    margin-bottom: 6px;
    opacity: .7;
}

.payout-input input,
.payout-input select {
    background: #2a2a3d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 10px;
    border-radius: 6px;
    color: #fff;
}

.submit-payout-btn {
    background: #28c76f;
    border: none;
    padding: 9px 16px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

.submit-payout-btn:hover {
    background: #22b763;
}



.subscription-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.subscription-plan-card {
    background: linear-gradient(145deg, #1f1f2e, #292944);
    border-radius: 14px;
    padding: 30px;
    color: #fff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: .3s;
}

.subscription-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.plan-price {
    font-size: 34px;
    font-weight: 600;
    margin: 15px 0;
    color: #6c5ce7;
}

.plan-price span {
    font-size: 14px;
    color: #aaa;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.plan-features li {
    padding: 6px 0;
    font-size: 14px;
    color: #d3d3e0;
}

.plan-btn {
    background: #6c5ce7;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
}

.plan-btn:hover {
    background: #5746d3;
}

.popular {
    border: 2px solid #6c5ce7;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #6c5ce7;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}


.creator-plan-request-box {
    background: #1e1e2f;
    padding: 25px;
    border-radius: 12px;
    margin-top: 35px;
    color: #fff;
}

.plan-request-desc {
    font-size: 13px;
    opacity: .7;
    margin-bottom: 20px;
}

.creator-plan-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.plan-input {
    display: flex;
    flex-direction: column;
}

.plan-input label {
    font-size: 13px;
    margin-bottom: 6px;
    opacity: .8;
}

.plan-input input,
.plan-input select,
.plan-input textarea {
    background: #2a2a3d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 6px;
    color: #fff;
}

.plan-input input:focus,
.plan-input select:focus,
.plan-input textarea:focus {
    outline: none;
    border-color: #6c5ce7;
}

.plan-request-btn {
    margin-top: 10px;
    background: #6c5ce7;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    width: 200px;
}

.plan-request-btn:hover {
    background: #5746d3;
}


.fan-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.fan-stat-card {
    background: #1e1e2f;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.fan-stat-card h3 {
    color: #fff;
    margin: 0;
    font-size: 26px;
}

.fan-stat-card p {
    margin: 0;
    color: #aaa;
}

.fan-stat-icon {
    font-size: 24px;
    color: #4dabf7;
}

.fan-table-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.fan-creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.fan-creator-card {
    background: #1e1e2f;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.fan-creator-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.fan-creator-card h4 {
    color: #fff;
    margin-bottom: 5px;
}

.fan-creator-card p {
    color: #aaa;
    font-size: 14px;
}


.fan-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fan-user-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.fan-subscription-table th {
    font-weight: 600;
}

.fan-subscription-table td {
    vertical-align: middle;
}


/* FORM GRID */

.fan-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.fan-form-group {
    display: flex;
    flex-direction: column;
}

.fan-form-group label {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 6px;
    font-weight: 500;
}

.fan-form-group input {
    background: #1e1e2f;
    border: 1px solid #333;
    padding: 12px 14px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.fan-form-group input:focus {
    border-color: #4dabf7;
    outline: none;
    box-shadow: 0 0 0 2px rgba(77, 171, 247, 0.2);
}

/* BUTTONS */

.fan-btn-primary {
    background: #4dabf7;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.fan-btn-primary:hover {
    background: #339af0;
}

.fan-btn-warning {
    background: #f59f00;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.fan-btn-warning:hover {
    background: #e67700;
}

.fan-btn-success {
    background: #2eb35c;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.fan-btn-success:hover {
    background: #249a4c;
}

/* PROFILE IMAGE */

.fan-profile-upload {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.fan-profile-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2eb35c;
}

.fan-upload-box {
    position: relative;
    overflow: hidden;
}

.fan-upload-box input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.fan-upload-box span {
    background: #1e1e2f;
    border: 1px dashed #444;
    padding: 10px 16px;
    border-radius: 8px;
    color: #aaa;
    display: inline-block;
}

/* RESPONSIVE */

@media (max-width:768px) {

    .fan-form-grid {
        grid-template-columns: 1fr;
    }

    .fan-profile-upload {
        flex-direction: column;
        align-items: flex-start;
    }

}



.insta-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    /* perfect square */
    overflow: hidden;
    background: #000;
}

.insta-card img,
.insta-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video overlay icon */
.insta-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 7px;
    border-radius: 50%;
}

/* Hover effect */
.insta-card:hover {
    transform: scale(1.03);
    transition: 0.3s;
}

.like-btn.liked {
    color: red;
}


.insta-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.insta-card img,
.insta-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.insta-card:hover .insta-overlay {
    opacity: 1;
}

/* Content */
.overlay-content {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.overlay-content span {
    margin: 0 10px;
}

/* Icons spacing */
.overlay-content i {
    margin-right: 5px;
}



.video-wrapper {
    position: relative;
    width: 100%;
}

.post-video {
    width: 100%;
    border-radius: 10px;
}

/* Play button overlay */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover effect */
.video-wrapper:hover .video-play-btn {
    background: rgba(0, 0, 0, 0.8);
}




.creator-profile-card {
    background: #0b132b;
    border-radius: 12px;
    color: #fff;
}

.creator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.creator-bio {
    color: #ccc;
    font-size: 14px;
}

/* Plan Card */
.plan-card {
    background: linear-gradient(145deg, #0a0f2c, #050817);
    border-radius: 16px;
    color: #fff;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* Glow effect */
.plan-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(194, 0, 255, 0.15), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.plan-card::before {
    pointer-events: none;
}

.subscribe-btn {
    cursor: pointer !important;
}

.plan-card:hover::before {
    opacity: 1;
}

/* Hover effect */
.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(194, 0, 255, 0.4);
    box-shadow: 0 15px 40px rgba(194, 0, 255, 0.2);
}

/* Plan Title */
.plan-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Price */
.plan-price {
    font-size: 36px;
    font-weight: bold;
    color: #c200ff;
    margin: 20px 0;
}

/* Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
}

/* Check icon */
.plan-features li::before {
    content: "✔";
    color: #00ffae;
    font-size: 12px;
    margin-right: 10px;
}

/* Button */
.plan-card .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px;
    transition: 0.3s;
}

/* Primary button */
.plan-card .subscribe-btn {
    background: linear-gradient(90deg, #c200ff, #6a00ff);
    border: none;
    cursor: pointer;
}

.plan-card .subscribe-btn:hover {
    background: linear-gradient(90deg, #a000d1, #5000cc);
}

/* Subscribed button */
.plan-card .btn-success {
    background: #00c897;
    border: none;
}

/* Optional: highlight popular plan */
.plan-card.popular {
    border: 1px solid #c200ff;
    transform: scale(1.05);
}

.plan-card.popular::after {
    content: "Most Popular";
    position: absolute;
    top: 15px;
    right: -40px;
    background: #c200ff;
    color: #fff;
    font-size: 12px;
    padding: 5px 40px;
    transform: rotate(45deg);
}


