.gptv-single-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 22px;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 28px 20px;
    color: #fff;
}

.gptv-single-content-media-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        #05070a;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.gptv-single-content-media-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 28%);
    z-index: 1;
}

.gptv-single-content-image,
.gptv-single-content-video {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #000;
}

.gptv-single-content-video {
    height: 100%;
}

.gptv-single-content-info {
    align-self: start;
    position: sticky;
    top: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.16), transparent 42%),
        rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.gptv-single-content-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.gptv-single-content-author-avatar {
    position: relative;
    flex: 0 0 auto;
}

.gptv-single-content-author-avatar::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    z-index: -1;
}

.gptv-single-content-author-avatar img {
    display: block;
    width: 52px;
    height: 52px;
    border: 2px solid #0a0e11;
    border-radius: 999px;
    object-fit: cover;
}

.gptv-single-content-author-info {
    min-width: 0;
}

.gptv-single-content-author-name {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gptv-single-content-author-name:hover {
    color: #fff;
    opacity: 0.88;
}

.gptv-single-content-author-username {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
}

.gptv-single-content-caption {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.65;
}

.gptv-single-content-caption p {
    margin: 0 0 12px;
}

.gptv-single-content-caption p:last-child {
    margin-bottom: 0;
}

.gptv-single-content-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.gptv-single-content-media-wrap--audio,
.gptv-single-content-media-wrap--document,
.gptv-single-content-media-wrap--pdf {
    justify-self: center;
    width: min(100%, 540px) !important;
    max-width: 540px;
    box-sizing: border-box;
    padding: clamp(18px, 4vw, 40px);
}

.gptv-single-content-notice {
    width: min(100% - 40px, 1220px);
    margin: 22px auto 0;
    padding: 12px 14px;
    border: 1px solid rgba(251, 113, 133, 0.28);
    border-radius: 16px;
    background: rgba(127, 29, 29, 0.22);
    color: #fecdd3;
    font-size: 13px;
    font-weight: 750;
}

.gptv-single-content-owner-actions {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gptv-single-content-owner-actions__title {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
}

.gptv-delete-single-content-form {
    display: flex;
    align-items: center;
}

.gptv-delete-single-content-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(251, 113, 133, 0.28);
    border-radius: 999px;
    background: rgba(127, 29, 29, 0.26);
    color: #fecdd3;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.gptv-delete-single-content-button:hover,
.gptv-delete-single-content-button:focus-visible {
    border-color: rgba(251, 113, 133, 0.48);
    background: rgba(190, 18, 60, 0.3);
    color: #fff;
    transform: translateY(-1px);
}

.gptv-single-content-category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.14);
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 750;
}

.gptv-single-content-placeholder,
.gptv-single-content-locked-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    min-height: 460px;
    padding: 34px;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(124, 58, 237, 0.24), transparent 52%),
        rgba(255, 255, 255, 0.035);
}

.gptv-single-content-audio {
    width: 100%;
}

.gptv-single-audio-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    min-height: 420px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
        radial-gradient(circle at center 24%, rgba(124, 58, 237, 0.32), transparent 38%),
        rgba(255, 255, 255, 0.045);
    box-shadow: none;
    text-align: center;
}

.gptv-single-audio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(236, 72, 153, 0.24));
    color: #fff;
    font-size: 34px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 36px rgba(124, 58, 237, 0.2);
}

.gptv-single-audio-info {
    display: grid;
    gap: 6px;
    justify-items: center;
    min-width: 0;
    width: 100%;
}

.gptv-single-audio-title {
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.gptv-single-audio-caption {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gptv-single-audio-player {
    display: block;
    width: 360px;
    min-width: 320px;
    max-width: 100%;
    margin-top: 6px;
}

.gptv-single-content-audio-icon,
.gptv-single-content-locked-icon {
    font-size: 44px;
}

.gptv-single-content-document {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    min-height: 420px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
        radial-gradient(circle at center 24%, rgba(124, 58, 237, 0.28), transparent 38%),
        rgba(255, 255, 255, 0.045);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 850;
}

.gptv-single-document-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(236, 72, 153, 0.24));
    color: #fff;
    font-size: 34px;
}

.gptv-single-document-info {
    display: grid;
    gap: 6px;
    justify-items: center;
}

.gptv-single-document-title {
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.gptv-single-document-action {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.45;
}

.gptv-single-content-locked {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 20px;
    color: #fff;
}

.gptv-single-content-navigation {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px 34px;
}

.gptv-single-content-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(14px);
    transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.gptv-single-content-nav-link:hover {
    transform: translateY(-1px);
    background: rgba(124, 58, 237, 0.26);
    color: #fff;
}

.gptv-single-content-nav-link--disabled {
    opacity: 0.35;
    pointer-events: none;
}

.gptv-single-content-nav-arrow {
    font-size: 16px;
    line-height: 1;
}

@media (min-width: 981px) {
    .gptv-single-content-media-wrap--audio,
    .gptv-single-content-media-wrap--document,
    .gptv-single-content-media-wrap--pdf {
        width: 500px !important;
        max-width: 500px;
    }
}

@media (max-width: 980px) {
    .gptv-single-content {
        grid-template-columns: 1fr;
        padding: 18px 14px;
    }

    .gptv-single-content-media-wrap {
        min-height: auto;
        border-radius: 24px;
    }

    .gptv-single-content-info {
        position: static;
        padding: 16px;
        border-radius: 22px;
    }

    .gptv-single-content-image,
    .gptv-single-content-video {
        max-height: 72vh;
    }

    .gptv-single-content-navigation {
        padding: 0 14px 28px;
    }

    .gptv-single-content-notice {
        width: calc(100% - 28px);
        margin-top: 14px;
    }

    .gptv-single-content-media-wrap--audio,
    .gptv-single-content-media-wrap--document,
    .gptv-single-content-media-wrap--pdf {
        width: 100%;
        max-width: none;
    }

    .gptv-single-audio-card,
    .gptv-single-content-document {
        min-height: 340px;
        border-radius: 22px;
    }

    .gptv-single-audio-player {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .gptv-single-content {
        gap: 14px;
    }

    .gptv-single-content-navigation {
        gap: 10px;
    }

    .gptv-single-content-nav-link {
        flex: 1;
        padding: 0 12px;
        font-size: 13px;
    }
}

.gptv-single-content-author-avatar {
    position: relative;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    overflow: visible;
}

.gptv-single-content-author-avatar::after {
    content: "";
    position: absolute;
    inset: 0px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    z-index: 0;
}

.gptv-single-content-author-avatar img,
.gptv-single-content-author-avatar .avatar {
    position: relative;
    z-index: 1;
    display: block;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    min-height: 52px;
    max-width: 52px;
    max-height: 52px;
    border: 2px solid #0a0e11;
    border-radius: 999px !important;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.gptv-single-content-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gptv-single-content-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

button.gptv-single-content-action {
    cursor: pointer;
}

.gptv-single-content-action-icon {
    font-size: 15px;
    line-height: 1;
}

.gptv-like-button.is-liked {
    background: rgba(236, 72, 153, 0.22);
    border-color: rgba(236, 72, 153, 0.32);
}

.gptv-like-button.is-liked .gptv-single-content-action-icon {
    color: #ec4899;
}

.gptv-like-button.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.gptv-single-content-comments {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gptv-single-content-comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.gptv-single-content-comments-header h3 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 850;
}

.gptv-single-content-comments-header span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.gptv-single-content-comments-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.gptv-single-content-comment {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.gptv-single-content-comment-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
}

.gptv-single-content-comment-body {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.045);
}

.gptv-single-content-comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.gptv-single-content-comment-meta strong {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.gptv-single-content-comment-meta span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

.gptv-single-content-comment-text {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.45;
}

.gptv-single-content-comment-text p {
    margin: 0;
}

.gptv-single-content-comments-empty {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    text-align: center;
}

.gptv-single-content-comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.gptv-single-content-comment-form textarea {
    width: 100%;
    min-height: 78px;
    resize: vertical;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
}

.gptv-single-content-comment-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.gptv-single-content-comment-form button {
    align-self: flex-end;
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: #7c3aed;
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.gptv-single-content-comment-form button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.gptv-comment-form-message {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 700;
}

.gptv-comment-form-message.is-error {
    color: #fb7185;
}

.gptv-comment-form-message.is-success {
    color: #a78bfa;
}

.gptv-single-content-comments-login a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.22);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.gptv-single-content-locked-card .gptv-subscription-plans {
  margin-top: 16px;
}

.gptv-single-content-locked-card .gptv-creator-btn-subscribe {
  width: 100%;
}
