* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background: #000;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    overflow-y: auto;
    padding: 20px 8px;
    z-index: 100;
}

.logo {
    display: block;
    padding: 0 12px;
    margin-bottom: 20px;
}

.logo svg {
    width: 118px;
    height: 42px;
}

/* Menu */
.menu {
    margin-bottom: 8px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
    margin-bottom: 2px;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu-item.active {
    color: #fe2c55;
}

.menu-item svg {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    fill: currentColor;
}

.menu-item span {
    font-size: 18px;
    font-weight: 700;
}

/* Sidebar Login */
.sidebar-login {
    padding: 20px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 8px;
}

.sidebar-login p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    line-height: 1.4;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #fe2c55;
    border-radius: 4px;
    color: #fe2c55;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn:hover {
    background: rgba(254, 44, 85, 0.08);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 20px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    margin-right: 8px;
}

.sidebar-footer a:hover {
    text-decoration: underline;
}

.sidebar-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: 8px;
}

/* Main Content */
.main-content {
    margin-left: 240px;
    height: 100vh;
    overflow: hidden;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 240px;
    right: 0;
    height: 60px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 50;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(22, 24, 35, 0.12);
    border-radius: 92px;
    padding: 0 16px;
    width: 360px;
    height: 40px;
    z-index: 100;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    padding: 0;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 16px;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.search-btn svg {
    width: 24px;
    height: 24px;
    fill: rgba(255, 255, 255, 0.5);
}

/* Search Results Panel */
.search-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 480px;
    max-height: 70vh;
    background: #1c1c1e;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: none;
    z-index: 2000;
}

.search-results.active {
    display: block;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.search-results-content {
    max-height: 70vh;
    overflow-y: auto;
}

.search-results-content::-webkit-scrollbar {
    width: 6px;
}

.search-results-content::-webkit-scrollbar-track {
    background: transparent;
}

.search-results-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.search-results-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Search Loading */
.search-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    gap: 16px;
}

.search-loading.active {
    display: flex;
}

.search-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fe2c55;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.search-loading p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Search Empty */
.search-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    gap: 16px;
}

.search-empty.active {
    display: flex;
}

.search-empty p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Search Sections */
#searchResultsContainer {
    display: none;
}

#searchResultsContainer.active {
    display: block;
}

.search-section {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-section:last-child {
    border-bottom: none;
}

.search-section-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 16px;
    margin-bottom: 8px;
}

/* User Result Item */
.user-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

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

.user-result-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-result-info {
    flex: 1;
}

.user-result-username {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.user-result-fullname {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.user-result-verified {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Hashtag Result Item */
.hashtag-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

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

.hashtag-icon {
    width: 40px;
    height: 40px;
    background: rgba(254, 44, 85, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.hashtag-icon svg {
    width: 20px;
    height: 20px;
    fill: #fe2c55;
}

.hashtag-info {
    flex: 1;
}

.hashtag-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.hashtag-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Post Result Item */
.post-result-item {
    display: flex;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

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

.post-result-thumbnail {
    width: 90px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.post-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-result-desc {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-result-user {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.post-result-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.post-result-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-result-stat svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}


/* Top Actions */
.top-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.icon-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.login-btn-top {
    padding: 8px 24px;
    background: #fe2c55;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn-top:hover {
    background: #ff3d5c;
}

/* Video Feed */
.video-feed {
    height: calc(100vh - 60px);
    margin-top: 60px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

.video-feed::-webkit-scrollbar {
    display: none;
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

/* Video Card */
.video-card {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Video Info */
.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 50%;
    z-index: 10;
}

.user-info {
    margin-bottom: 8px;
}

.username {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.username:hover {
    text-decoration: underline;
}

.video-desc {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.video-music {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.video-music svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Video Actions */
.video-actions {
    position: absolute;
    bottom: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.action-btn {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.action-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.action-count {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

/* Avatar Button */
.avatar-btn {
    background: transparent !important;
    padding: 0;
}

.action-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.follow-plus {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #fe2c55;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

/* Like Button Active */
.like-btn.liked svg {
    fill: #fe2c55;
}

/* Save Button Active */
.save-btn.saved svg {
    fill: #ffc107;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: #1c1c1e;
    border-radius: 8px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.modal-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-option {
    padding: 14px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.login-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.login-option svg {
    margin-right: 12px;
}

/* Login Form */
.login-view {
    width: 100%;
}

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.2s;
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fe2c55;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: #fe2c55;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.login-submit-btn:hover:not(:disabled) {
    background: #ff3d5c;
}

.login-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.login-error {
    color: #ff4444;
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
    min-height: 20px;
}

.login-back-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-back-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* QR Code Login */
.qr-code-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.qr-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.qr-code-display {
    width: 256px;
    height: 256px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin: 0 auto 16px;
    display: none;
}

.qr-code-display.active {
    display: block;
}

.qr-code-display canvas {
    border-radius: 8px;
}

.qr-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 64px 0;
}

.qr-loading.active {
    display: flex;
}

.qr-loading p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.qr-timer {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.qr-timer.active {
    display: flex;
}

.qr-timer.expired {
    color: #ff4444;
}

.qr-timer svg {
    opacity: 0.75;
}

.qr-status {
    min-height: 24px;
    font-size: 14px;
    margin-bottom: 16px;
}

.qr-status.success {
    color: #00d66f;
    font-weight: 600;
}

.qr-status.error {
    color: #ff4444;
    font-weight: 600;
}

.qr-status.scanning {
    color: #ffa500;
    font-weight: 600;
}

.qr-switch-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.qr-switch-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}



/* Comment Drawer */
.comment-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: none;
}

.comment-drawer.active {
    display: block;
}

.comment-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.comment-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 90vw;
    height: 100%;
    background: #1c1c1e;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.comment-drawer.active .comment-drawer-content {
    transform: translateX(0);
}

/* Comment Drawer Header */
.comment-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.comment-drawer-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.comment-drawer-header h3 span {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

.comment-close-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.comment-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Comments List */
.comments-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.comments-list::-webkit-scrollbar {
    width: 6px;
}

.comments-list::-webkit-scrollbar-track {
    background: transparent;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Comments Loading */
.comments-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    gap: 16px;
}

.comments-loading.active {
    display: flex;
}

.comments-loading p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Comments Empty */
.comments-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    gap: 12px;
    text-align: center;
}

.comments-empty.active {
    display: flex;
}

.comments-empty p {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.comments-empty span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Comment Item */
.comment-item {
    display: flex;
    padding: 12px 20px;
    gap: 12px;
    transition: background 0.2s;
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.comment-username {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.comment-username:hover {
    text-decoration: underline;
}

.comment-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.comment-text {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.comment-action-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    transition: color 0.2s;
}

.comment-action-btn:hover {
    color: rgba(255, 255, 255, 0.75);
}

.comment-like-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.comment-like-btn.liked {
    color: #fe2c55;
}

.comment-like-btn.liked svg {
    fill: #fe2c55;
}

.comment-like-count {
    font-size: 13px;
}

/* Comment Input Section */
.comment-input-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #1c1c1e;
}

.comment-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
}

.comment-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.comment-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.comment-post-btn {
    padding: 10px 20px;
    background: #fe2c55;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.4;
    pointer-events: none;
}

.comment-post-btn.active {
    opacity: 1;
    pointer-events: all;
}

.comment-post-btn.active:hover {
    background: #ff3d5c;
    transform: scale(1.05);
}