.hero {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(0, 255, 251, 0.1) 0%, rgba(0, 10, 10, 0.8) 100%);
    border: 1px solid rgba(0, 255, 251, 0.2);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 251, 0.5);
    position: relative;
    display: inline-block;
}

.hero h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 251, 0.3);
    background-color: transparent;
}

.btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(0, 255, 251, 0.5);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 251, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 14px;
}

.btn-block {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Service Cards */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 251, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.service-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Dashboard Cards & Sections */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(0, 255, 251, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.card-title {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.card-title i {
    margin-right: 10px;
}

.card-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Orbitron", sans-serif;
}

.card-change {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.section {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 255, 251, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 255, 251, 0.1);
}

.section-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Forms & Modals */
.form-group {
    margin-bottom: 20px;
}

.form-label,
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--card-bg);
    border: 1px solid rgba(0, 255, 251, 0.2);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 251, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Auth Cards */
.auth-container {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(0, 255, 251, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.auth-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.auth-header p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 251, 0.5);
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.tools-table,
.sessions-table {
    width: 100%;
    border-collapse: collapse;
}

.tools-table th,
.tools-table td,
.sessions-table th,
.sessions-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 251, 0.1);
}

.tools-table th,
.sessions-table th {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.tools-table tr:hover,
.sessions-table tr:hover {
    background-color: rgba(0, 255, 251, 0.05);
}

.tool-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-published {
    background-color: rgba(0, 255, 65, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.status-pending {
    background-color: rgba(255, 165, 0, 0.1);
    color: orange;
    border: 1px solid orange;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--modal-bg);
    z-index: 2000;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal[style*="display: none"],
.modal[style*="display:none"] {
    display: none !important;
}

.modal.active,
.modal[style*="display: block"]:not([style*="display: none"]):not([style*="display:none"]),
.modal[style*="display:flex"]:not([style*="display: none"]):not([style*="display:none"]),
.modal[style*="display: flex"]:not([style*="display: none"]):not([style*="display:none"]) {
    display: flex !important;
}

.modal-content {
    background-color: var(--card-bg);
    margin: auto;
    padding: 24px;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    max-width: 600px;
    width: 92%;
    box-shadow: 0 0 30px rgba(0, 255, 251, 0.3);
    animation: modalFadeIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 255, 251, 0.2);
}

.modal-title {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.close-modal {
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 251, 0.2);
}

/* Flash Toast Notifications */
.flash-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.flash-toast {
    padding: 15px 20px;
    border-radius: 5px;
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 251, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flash-toast.success {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.flash-toast.error {
    border-color: var(--error-color);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-color);
    opacity: 0.7;
}

.empty-state i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ==========================================
   infocyn Profile Page Dedicated Styling
   ========================================== */
.profile-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.profile-header {
    background: linear-gradient(135deg, rgba(18, 21, 32, 0.95) 0%, rgba(10, 11, 16, 0.98) 100%);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    box-shadow: 0 0 25px rgba(0, 255, 251, 0.2);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    box-shadow: 0 0 10px var(--primary-color);
}

.profile-avatar-container {
    position: relative;
    width: 130px;
    height: 130px;
    flex-shrink: 0;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 251, 0.4);
    background: var(--card-bg);
}

.profile-verified {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--accent-color);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 0 10px var(--accent-color);
}

.profile-info {
    flex: 1;
    min-width: 280px;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.profile-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 251, 0.3);
    margin: 0;
}

.profile-handle {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    opacity: 0.9;
}

.profile-rank {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 251, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.profile-bio {
    color: var(--text-color);
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 12px 0 20px 0;
    max-width: 750px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 251, 0.15);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(224, 224, 224, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.profile-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid rgba(0, 255, 251, 0.2);
    margin-bottom: 25px;
    overflow-x: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    opacity: 0.7;
}

.tab-btn:hover {
    color: var(--primary-color);
    opacity: 1;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 255, 251, 0.4);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

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

/* ─── Modern Cyberpunk Marketplace Design System ──────────────── */
.marketplace-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.marketplace-hero {
    background: linear-gradient(135deg, rgba(18, 21, 32, 0.95) 0%, rgba(10, 11, 16, 0.98) 100%);
    border: 1px solid rgba(0, 255, 251, 0.3);
    border-radius: 16px;
    padding: 35px 32px;
    box-shadow: 0 0 35px rgba(0, 255, 251, 0.2), inset 0 0 20px rgba(0, 255, 251, 0.05);
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.marketplace-hero-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 255, 251, 0.15) 0%, rgba(0, 255, 65, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.marketplace-stats-bar {
    display: flex;
    gap: 16px;
    background: rgba(8, 10, 15, 0.75);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 251, 0.25);
    backdrop-filter: blur(8px);
}

.marketplace-stat-item {
    text-align: center;
    min-width: 85px;
}

.marketplace-stat-val {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-display);
    text-shadow: 0 0 10px rgba(0, 255, 251, 0.4);
}

.marketplace-stat-lbl {
    font-size: 0.72rem;
    color: rgba(224, 224, 224, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.marketplace-stat-divider {
    width: 1px;
    background: rgba(0, 255, 251, 0.2);
}

/* Sticky Responsive Filter Toolbar */
.marketplace-filter-toolbar {
    position: sticky;
    top: 75px;
    z-index: 100;
    background: rgba(10, 11, 16, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 251, 0.25);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 255, 251, 0.1);
}

.marketplace-filter-form {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1fr auto;
    gap: 14px;
    align-items: center;
}

.marketplace-filter-form .form-control,
.marketplace-filter-form select,
.marketplace-filter-form input,
.marketplace-filter-form .btn {
    height: 44px !important;
    box-sizing: border-box !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
}

.marketplace-filter-form select option {
    background-color: #0d111a;
    color: #fff;
}

/* Products Responsive Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tool-card {
    background: rgba(18, 21, 32, 0.75);
    border: 1px solid rgba(0, 255, 251, 0.2);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(12px);
}

.tool-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 251, 0.45);
    box-shadow: 0 6px 20px rgba(0, 255, 251, 0.12);
}

.tool-card-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #090a0f;
}

.tool-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.4s ease;
}

.tool-card:hover .tool-image {
    transform: scale(1.02);
}

.tool-badge-category {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.tool-badge-price {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: rgba(0, 255, 251, 0.95);
    color: #000;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-display);
    box-shadow: 0 0 12px rgba(0, 255, 251, 0.5);
}

.tool-overlay {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(18, 21, 32, 0.85) 0%, rgba(10, 11, 16, 0.98) 100%);
}

.tool-title {
    font-size: 1.2rem;
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.tool-card:hover .tool-title {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 255, 251, 0.4);
}

.tool-description-clamped {
    font-size: 0.88rem;
    color: rgba(224, 224, 224, 0.78);
    line-height: 1.55;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.7em;
}

/* Publisher Profile Link Component */
.publisher-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.88rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 5;
    position: relative;
}

.publisher-profile-link:hover {
    opacity: 0.88;
    transform: translateX(2px);
}

.publisher-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 251, 0.4);
    background-color: #000;
    flex-shrink: 0;
}

.publisher-verified-icon {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-left: 3px;
}

.tool-stats-row {
    display: flex;
    gap: 14px;
    font-size: 0.82rem;
    color: rgba(224, 224, 224, 0.75);
}

.tool-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tool-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 255, 251, 0.15);
}

.tool-footer-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--font-display);
}

.tool-footer-updated {
    font-size: 0.78rem;
    color: rgba(224, 224, 224, 0.55);
}

.tool-gallery-preview {
    display: flex;
    gap: 5px;
    padding: 8px 15px 12px;
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
}

.tool-gallery-thumb {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(0, 255, 251, 0.3);
    transition: transform 0.2s ease;
}

.tool-gallery-thumb:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

/* Tool Detail Showcase Gallery */
.tool-showcase-frame {
    width: 100%;
    height: 420px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: radial-gradient(circle at center, #0f1524 0%, #050811 100%);
    border: 1px solid rgba(0, 255, 251, 0.3);
    box-shadow: 0 0 25px rgba(0, 255, 251, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tool-showcase-frame:hover img {
    transform: scale(1.02);
}

.gallery-thumbs-strip {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 8px 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.gallery-thumb-item {
    width: 100px;
    height: 65px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid rgba(0, 255, 251, 0.2);
    opacity: 0.65;
    transition: all 0.25s ease;
    background: #050811;
}

.gallery-thumb-item:hover,
.gallery-thumb-item.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(0, 255, 251, 0.5);
    transform: translateY(-2px);
}

/* ================================================================
   infocyn — User Dashboard Enhanced Design Tokens & Components
   ================================================================ */

/* Glassmorphism Section Panels */
.dash-card-glass {
    background: linear-gradient(135deg, rgba(16, 22, 38, 0.85) 0%, rgba(10, 14, 26, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 251, 0.15);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dash-card-glass:hover {
    border-color: rgba(0, 255, 251, 0.35);
    box-shadow: 0 12px 35px rgba(0, 255, 251, 0.1);
    transform: translateY(-3px);
}

/* Stat Grid & Cards */
.dash-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.dash-stat-card {
    background: linear-gradient(145deg, rgba(18, 26, 44, 0.9) 0%, rgba(10, 15, 28, 0.95) 100%);
    border: 1px solid rgba(0, 255, 251, 0.18);
    border-radius: 16px;
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dash-stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.7;
}

.dash-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 251, 0.4);
    box-shadow: 0 8px 30px rgba(0, 255, 251, 0.12);
}

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

.dash-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.dash-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 255, 251, 0.08);
    border: 1px solid rgba(0, 255, 251, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    box-shadow: 0 0 12px rgba(0, 255, 251, 0.15);
}

.dash-stat-number {
    font-family: "Orbitron", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.dash-stat-subtext {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Quick Filter & Action Bar */
.dash-filter-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(13, 18, 32, 0.8);
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(0, 255, 251, 0.12);
    margin-bottom: 24px;
}

/* Upload Dropzone Container */
.dash-upload-box {
    background: rgba(0, 255, 251, 0.02);
    border: 2px dashed rgba(0, 255, 251, 0.25);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.dash-upload-box:hover {
    border-color: var(--primary-color);
    background: rgba(0, 255, 251, 0.05);
    box-shadow: inset 0 0 15px rgba(0, 255, 251, 0.08);
}

.dash-image-slot {
    background: rgba(10, 14, 26, 0.9);
    border: 1px solid rgba(0, 255, 251, 0.18);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.25s ease;
}

.dash-image-slot:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Status Badges */
.dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dash-badge-live {
    background: rgba(0, 230, 118, 0.12);
    color: #00e676;
    border: 1px solid rgba(0, 230, 118, 0.4);
}

.dash-badge-pending {
    background: rgba(255, 165, 0, 0.12);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.dash-badge-banned {
    background: rgba(255, 51, 102, 0.12);
    color: #ff3366;
    border: 1px solid rgba(255, 51, 102, 0.4);
}

/* Sidebar Mobile Overlay Backdrop */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 16, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 190;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ─── Cyberpunk Contact Control Panel System ───────────────── */
.contact-page-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    box-sizing: border-box;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-form-card {
    background: rgba(18, 21, 32, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 251, 0.3);
    border-radius: 16px;
    padding: 38px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 255, 251, 0.04);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 90px;
}

.contact-info-card {
    background: rgba(18, 21, 32, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 251, 0.25);
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-badge-online {
    background: rgba(0, 255, 65, 0.12);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.contact-badge-pgp {
    background: rgba(0, 255, 251, 0.12);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.contact-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 255, 251, 0.12);
    font-size: 0.88rem;
}

.contact-status-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-faq-item {
    background: rgba(8, 10, 15, 0.65);
    border: 1px solid rgba(0, 255, 251, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-faq-item:hover {
    border-color: var(--primary-color);
    background: rgba(8, 10, 15, 0.85);
}

.contact-faq-question {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-color);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-faq-answer {
    font-size: 0.85rem;
    color: rgba(224, 224, 224, 0.8);
    line-height: 1.5;
    margin: 0;
}

.contact-notice-card {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(18, 21, 32, 0.92) 100%);
    border: 1px solid #ff9900;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.15);
}

/* ── Logout Confirmation Modal ──────────────────────────────── */
.logout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 8, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInModal 0.25s ease-out forwards;
}

.logout-modal {
    background: linear-gradient(145deg, rgba(18, 21, 32, 0.96) 0%, rgba(8, 10, 15, 0.98) 100%);
    border: 1px solid rgba(255, 51, 102, 0.4);
    box-shadow: 0 0 45px rgba(255, 51, 102, 0.25), 0 0 15px rgba(0, 255, 251, 0.1);
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    padding: 32px 28px;
    text-align: center;
    animation: scaleUpModal 0.25s ease-out forwards;
}

.logout-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 51, 102, 0.12);
    border: 1px solid rgba(255, 51, 102, 0.4);
    color: var(--error-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

.logout-modal-title {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.logout-modal-text {
    color: #8899a6;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 24px;
}

.logout-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.logout-modal-cancel {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
    font-family: 'Orbitron', sans-serif;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.logout-modal-confirm {
    flex: 1;
    background: linear-gradient(135deg, #ff3366 0%, #cc0033 100%);
    border: 1px solid #ff3366;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.4);
    transition: all 0.2s ease;
}

.logout-modal-confirm:hover {
    box-shadow: 0 0 25px rgba(255, 51, 102, 0.6);
    transform: translateY(-1px);
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUpModal {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── Reusable Pagination Component ─────────────────────────── */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(18, 21, 32, 0.65);
    border: 1px solid rgba(0, 255, 251, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    margin-top: 24px;
}

.pagination-info {
    color: #8899a6;
    font-size: 0.88rem;
}

.pagination-info strong {
    color: var(--primary-color);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 251, 0.25);
    border-radius: 8px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    background: rgba(0, 255, 251, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 251, 0.2);
}

.pagination-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(0, 255, 251, 0.4);
}

.pagination-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
}

.pagination-num {
    min-width: 36px;
    padding: 7px 10px;
}

.pagination-ellipsis {
    color: #8899a6;
    padding: 0 4px;
}

.pagination-per-page {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8899a6;
    font-size: 0.85rem;
}

.pagination-select {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 251, 0.3);
    border-radius: 6px;
    color: var(--primary-color);
    padding: 5px 10px;
    font-size: 0.85rem;
    cursor: pointer;
}

/* ================================================================
   TikTok-Style Centered Social Media Profile Component
   ================================================================ */
.tiktok-profile-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 15px 50px;
}

.tiktok-header {
    background: linear-gradient(180deg, rgba(18, 21, 32, 0.85) 0%, rgba(8, 10, 15, 0.95) 100%);
    border: 1px solid rgba(0, 255, 251, 0.2);
    border-radius: 20px;
    padding: 40px 24px 32px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 251, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.tiktok-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), var(--primary-color), transparent);
    box-shadow: 0 0 15px var(--primary-color);
}

/* Spiderweb Overlay Graphics in Card Corners */
.spiderweb-corner {
    position: absolute;
    color: rgba(0, 255, 251, 0.18);
    font-size: 48px;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(0, 255, 251, 0.3));
    transition: color 0.4s ease, filter 0.4s ease;
}

.spiderweb-tl {
    top: 12px;
    left: 16px;
    transform: rotate(-10deg);
}

.spiderweb-br {
    bottom: 12px;
    right: 16px;
    transform: rotate(170deg);
}

.tiktok-header:hover .spiderweb-corner {
    color: rgba(0, 255, 251, 0.4);
    filter: drop-shadow(0 0 15px rgba(0, 255, 251, 0.6));
}

/* 1. Profile Picture Centered */
.tiktok-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 18px auto 20px;
    cursor: pointer;
    border-radius: 50%;
}

/* Golden Crown Positioned BEHIND Top Edge of Avatar */
/* Golden Crown Positioned ON TOP Edge of Avatar */
.tiktok-golden-crown {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    color: #ffd700;
    z-index: 10;
    pointer-events: none;
    animation: crownGlowShine 3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
}

@keyframes crownGlowShine {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 24px rgba(255, 140, 0, 0.7));
        color: #ffd700;
    }
    50% {
        filter: drop-shadow(0 0 26px rgba(255, 240, 100, 1)) drop-shadow(0 0 40px rgba(255, 180, 0, 0.95));
        color: #fff4a3;
    }
}

/* Admin Majestic Golden Falcon Wings Attached BEHIND Avatar Upper Sides */
.admin-falcon-wing {
    position: absolute;
    top: 32%;
    width: 150px;
    height: 100px;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.95)) drop-shadow(0 0 30px rgba(255, 140, 0, 0.8));
}

.admin-falcon-wing.wing-left {
    left: -96px;
    transform-origin: 85% 50%;
    animation: falconWingFlapLeft 3.6s ease-in-out infinite;
}

.admin-falcon-wing.wing-right {
    right: -96px;
    transform-origin: 15% 50%;
    animation: falconWingFlapRight 3.6s ease-in-out infinite;
}

/* Upward & Outward Soaring Wing Animations */
@keyframes falconWingFlapLeft {
    0%, 100% {
        transform: translateY(-65%) rotate(-15deg) scale(1);
    }
    50% {
        transform: translateY(-75%) rotate(-25deg) scale(1.06);
    }
}

@keyframes falconWingFlapRight {
    0%, 100% {
        transform: translateY(-65%) rotate(15deg) scale(1);
    }
    50% {
        transform: translateY(-75%) rotate(25deg) scale(1.06);
    }
}

/* Darknet Horror Sound Control Button */
.tiktok-horror-sound-btn {
    background: rgba(255, 0, 60, 0.12);
    border: 1px solid rgba(255, 0, 60, 0.4);
    color: #ff3366;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 0 12px rgba(255, 0, 60, 0.2);
}

.tiktok-horror-sound-btn:hover {
    background: rgba(255, 0, 60, 0.25);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
    color: #fff;
}

.tiktok-horror-sound-btn.playing {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 255, 251, 0.12);
    box-shadow: 0 0 15px rgba(0, 255, 251, 0.3);
}

.tiktok-avatar {
    position: relative;
    z-index: 5;
    /* In FRONT of Crown (z-index: 2) and Wings (z-index: 1) */
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3.5px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 255, 251, 0.35);
    background: var(--card-bg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tiktok-avatar-wrapper:hover .tiktok-avatar {
    transform: scale(1.06);
    box-shadow: 0 0 35px var(--primary-color);
}

/* 2. User Info Section */
.tiktok-user-info {
    margin-bottom: 22px;
}

.tiktok-display-name {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 0 12px rgba(0, 255, 251, 0.3);
}

.tiktok-verified-icon {
    color: #1da1f2;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(29, 161, 242, 0.5));
}

.tiktok-username-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.tiktok-username {
    font-size: 0.98rem;
    color: rgba(224, 224, 224, 0.65);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.tiktok-copy-btn {
    background: transparent !important;
    border: none !important;
    color: var(--primary-color);
    padding: 0 4px;
    font-size: 0.92rem;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    box-shadow: none !important;
}

.tiktok-copy-btn:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* 3. Statistics Section (Horizontal TikTok Row) */
.tiktok-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tiktok-stat-item {
    text-align: center;
}

.tiktok-stat-val {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 3px;
}

.tiktok-stat-val i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.tiktok-stat-lbl {
    font-size: 0.78rem;
    color: rgba(224, 224, 224, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.tiktok-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(0, 255, 251, 0.15);
}

/* 4. Action Buttons (Equal Width, Responsive) */
.tiktok-actions-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto 22px;
    width: 100%;
}

.tiktok-action-btn {
    flex: 1;
    min-width: 130px;
    padding: 11px 20px;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.tiktok-action-btn:active {
    transform: scale(0.97);
}

.tiktok-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #000;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 18px rgba(0, 255, 251, 0.35);
}

.tiktok-btn-primary:hover {
    box-shadow: 0 0 28px rgba(0, 255, 251, 0.6);
    transform: translateY(-2px);
    color: #000;
}

.tiktok-btn-secondary {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 251, 0.3);
    color: var(--primary-color);
}

.tiktok-btn-secondary:hover {
    background: rgba(0, 255, 251, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.tiktok-btn-following {
    background: rgba(0, 255, 65, 0.15);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

.tiktok-btn-following:hover {
    background: rgba(0, 255, 65, 0.25);
    box-shadow: 0 0 22px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

/* 5. Biography Description */
.tiktok-bio {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(224, 224, 224, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    word-break: break-word;
}

.tiktok-bio p {
    margin: 0;
}

/* 6. TikTok Navigation Tabs */
.tiktok-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 2px solid rgba(0, 255, 251, 0.15);
    margin-bottom: 28px;
}

.tiktok-tab-btn {
    background: transparent;
    border: none;
    color: rgba(224, 224, 224, 0.65);
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.tiktok-tab-btn:hover {
    color: var(--primary-color);
}

.tiktok-tab-btn.active {
    color: var(--primary-color);
}

.tiktok-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tiktok-tab-btn.active::after {
    transform: scaleX(1);
}

/* Skeleton Loaders */
.tiktok-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.tiktok-skeleton-card {
    height: 240px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(18, 21, 32, 0.6) 25%, rgba(0, 255, 251, 0.08) 50%, rgba(18, 21, 32, 0.6) 75%);
    background-size: 200% 100%;
    animation: tiktokSkeletonShimmer 1.5s infinite;
}

@keyframes tiktokSkeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM CYBER PRELOADER & TELEGRAM SKELETON ENGINE
   ═══════════════════════════════════════════════════════════ */
.cyber-preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #05070a;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

.cyber-preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Preloader Matrix Rain Background Canvas */
.preloader-matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.35;
    pointer-events: none;
}

/* Spider Webs in Corners */
.cyber-spider-web {
    position: absolute;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.6;
    animation: webGlow 3s ease-in-out infinite alternate;
}

.web-top-left { top: 0; left: 0; }
.web-top-right { top: 0; right: 0; }
.web-bottom-left { bottom: 0; left: 0; }
.web-bottom-right { bottom: 0; right: 0; }

@keyframes webGlow {
    0% { opacity: 0.4; filter: drop-shadow(0 0 2px rgba(0, 255, 102, 0.3)); }
    100% { opacity: 0.85; filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.7)); }
}

.cyber-preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 20;
}

/* Realistic Crawling Beetle (No Circular Border) */
.cyber-bug-stage {
    position: relative;
    width: 120px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    box-shadow: none;
}

.real-beetle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: realBeetleCrawl 1.8s ease-in-out infinite alternate;
}

.real-beetle-svg {
    filter: drop-shadow(0 0 16px rgba(0, 255, 102, 0.8));
}

/* Realistic Alternating Leg Movement Animation */
.leg-left .leg-1, .leg-left .leg-3, .leg-right .leg-2 {
    transform-origin: center;
    animation: legStepGroupA 0.3s ease-in-out infinite alternate;
}

.leg-right .leg-1, .leg-right .leg-3, .leg-left .leg-2 {
    transform-origin: center;
    animation: legStepGroupB 0.3s ease-in-out infinite alternate;
}

@keyframes legStepGroupA {
    0% { transform: rotate(-8deg) scaleY(0.92); }
    100% { transform: rotate(10deg) scaleY(1.08); }
}

@keyframes legStepGroupB {
    0% { transform: rotate(10deg) scaleY(1.08); }
    100% { transform: rotate(-8deg) scaleY(0.92); }
}

@keyframes realBeetleCrawl {
    0% { transform: translateY(25px) rotate(-3deg); }
    50% { transform: translateY(0px) rotate(3deg); }
    100% { transform: translateY(-25px) rotate(-3deg); }
}

.cyber-preloader-text {
    font-family: 'Orbitron', monospace, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 14px rgba(0, 255, 102, 0.6);
}

.cyber-blink {
    color: #00ff66;
    animation: blink 0.8s infinite;
}

.cyber-preloader-subtext {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(0, 255, 102, 0.75);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Green Percentage & Progress Bar */
.cyber-progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.cyber-progress-counter {
    font-family: 'Orbitron', monospace, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: #00ff66;
    text-shadow: 0 0 14px rgba(0, 255, 102, 0.85), 0 0 28px rgba(0, 255, 102, 0.5);
    letter-spacing: 2px;
}

.cyber-preloader-bar {
    width: 250px;
    height: 6px;
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.15);
}

.cyber-preloader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00b347, #00ff66, #00fffb);
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(0, 255, 102, 0.85);
    transition: width 0.05s linear;
}

@keyframes cyberSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes cyberPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 10px #00fffb); }
}

@keyframes cyberPreloaderProgress {
    0% { left: -40%; width: 40%; }
    50% { width: 60%; }
    100% { left: 100%; width: 40%; }
}

/* Telegram-Style Chat Skeletons & Image Shimmers */
.telegram-skeleton-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    width: 100%;
}

.telegram-skeleton-bubble {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    max-width: 75%;
}

.telegram-skeleton-bubble.outgoing {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.telegram-skeleton-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(0, 255, 251, 0.15) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: tgShimmer 1.4s infinite ease-in-out;
    flex-shrink: 0;
}

.telegram-skeleton-box {
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(18, 21, 32, 0.7);
    border: 1px solid rgba(0, 255, 251, 0.12);
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 220px;
}

.telegram-skeleton-line {
    height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(0, 255, 251, 0.18) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: tgShimmer 1.4s infinite ease-in-out;
}

.telegram-skeleton-line.short { width: 50%; }
.telegram-skeleton-line.medium { width: 80%; }
.telegram-skeleton-line.long { width: 100%; }

@keyframes tgShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Progressive Image Shimmer (Blur-Up Loading) */
img.img-loading-shimmer {
    background: linear-gradient(90deg, rgba(18, 21, 32, 0.8) 25%, rgba(0, 255, 251, 0.15) 50%, rgba(18, 21, 32, 0.8) 75%) !important;
    background-size: 200% 100% !important;
    animation: tgShimmer 1.5s infinite ease-in-out !important;
    opacity: 0.5;
    filter: blur(5px);
    transition: opacity 0.4s ease, filter 0.4s ease;
}

img.img-loaded {
    opacity: 1 !important;
    filter: blur(0) !important;
}

/* Contact Page Styles */
.contact-page-card {
    background: rgba(18, 21, 32, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 251, 0.3);
    padding: 36px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 255, 251, 0.04);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-submit-btn {
    padding: 14px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 25px rgba(0, 255, 251, 0.3);
}

/* Marketplace Hero & Podium Styles */
.marketplace-hero-title {
    font-family: var(--font-display);
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0, 255, 251, 0.4);
}

.marketplace-hero-desc {
    color: rgba(224, 224, 224, 0.85);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.5;
    margin: 0;
}

.marketplace-podium-banner {
    margin-bottom: 45px;
    background: linear-gradient(180deg, rgba(10, 14, 22, 0.95) 0%, rgba(6, 8, 14, 0.98) 100%);
    border: 1px solid rgba(0, 255, 251, 0.25);
    border-radius: 22px;
    padding: 30px 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.marketplace-podium-title {
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.marketplace-podium-sub {
    font-size: 0.85rem;
    color: #8899a6;
    margin-top: 6px;
}

/* Podium Layout Base (Fixed 3-Column Grid) */
.podium-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: end;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.podium-slot {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.podium-item-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 260px;
    display: block;
}

.podium-vendor-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 10px 8px;
    text-align: center;
    position: relative;
    transition: transform 0.25s ease;
}

.podium-item-link:hover .podium-vendor-card {
    transform: translateY(-6px);
}

.podium-item-gold .podium-vendor-card {
    transform: translateY(-12px);
}

.podium-item-gold:hover .podium-vendor-card {
    transform: translateY(-18px);
}

/* Crown Icon Above Avatar */
.podium-crown-wrap {
    margin-bottom: 6px;
}

.podium-item-gold .podium-crown-wrap i {
    font-size: 48px;
    color: #ffd700;
    filter: drop-shadow(0 0 14px #ffd700);
}

.podium-item-silver .podium-crown-wrap i {
    font-size: 36px;
    color: #e0e0e0;
    filter: drop-shadow(0 0 12px #e0e0e0);
}

.podium-item-diamond .podium-crown-wrap i {
    font-size: 34px;
    color: #00f0ff;
    filter: drop-shadow(0 0 12px #00f0ff);
}

/* Avatar Wrap & Circular Border */
.podium-avatar-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
}

.podium-item-gold .podium-avatar-wrap {
    width: 110px;
    height: 110px;
}

.podium-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.podium-item-gold .podium-avatar-img {
    border: 4px solid #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.85);
}

.podium-item-silver .podium-avatar-img {
    border: 3.5px solid #e0e0e0;
    box-shadow: 0 0 22px rgba(224, 224, 224, 0.85);
}

.podium-item-diamond .podium-avatar-img {
    border: 3.5px solid #00f0ff;
    box-shadow: 0 0 22px rgba(0, 240, 255, 0.85);
}

/* Shield Rank Badge Under Avatar Circle */
.podium-shield-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 900;
    font-family: var(--font-display);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 24px;
}

.podium-item-gold .podium-shield-badge {
    background: linear-gradient(180deg, #ffd700 0%, #10141d 100%);
    color: #000;
    border: 1.5px solid #ffd700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

.podium-item-silver .podium-shield-badge {
    background: linear-gradient(180deg, #e0e0e0 0%, #10141d 100%);
    color: #000;
    border: 1.5px solid #e0e0e0;
    box-shadow: 0 0 12px rgba(224, 224, 224, 0.8);
}

.podium-item-diamond .podium-shield-badge {
    background: linear-gradient(180deg, #00f0ff 0%, #10141d 100%);
    color: #000;
    border: 1.5px solid #00f0ff;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.8);
}

/* Details Below Circle */
.podium-username {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.podium-item-gold .podium-username {
    font-size: 1.2rem;
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.85);
}

.podium-badge-pill {
    display: inline-block;
    font-size: 0.76rem;
    padding: 3px 12px;
    border-radius: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.podium-item-gold .podium-badge-pill {
    background: rgba(255, 215, 0, 0.18);
    border: 1.5px solid #ffd700;
    color: #ffd700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.podium-item-silver .podium-badge-pill {
    background: rgba(224, 224, 224, 0.18);
    border: 1.5px solid #e0e0e0;
    color: #e0e0e0;
}

.podium-item-diamond .podium-badge-pill {
    background: rgba(0, 240, 255, 0.18);
    border: 1.5px solid #00f0ff;
    color: #00f0ff;
}

.podium-sales-count {
    font-size: 0.8rem;
    color: #8899a6;
}

.podium-sales-count strong {
    color: #fff;
    font-size: 0.95rem;
}

/* ─── Google AdSense & Ads Unit System ───────────────── */
.darkshop-ad-container {
    width: 100%;
    margin: 20px auto;
    padding: 14px 16px;
    background: rgba(10, 14, 24, 0.7);
    border: 1px dashed rgba(0, 255, 251, 0.2);
    border-radius: 12px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease;
}

.darkshop-ad-container:hover {
    border-color: rgba(0, 255, 251, 0.4);
}

.darkshop-ad-container .ad-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: rgba(0, 255, 251, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.darkshop-ad-container .ad-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 60px;
    overflow: hidden;
}

.darkshop-ad-container ins.adsbygoogle {
    display: block !important;
    margin: 0 auto;
}

/* ─── Cyberpunk Comments & Reviews System ───────────────── */
.comments-widget {
    background: rgba(14, 18, 28, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 251, 0.2);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.comments-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 255, 251, 0.12);
}

.comments-widget-title {
    color: var(--primary-color);
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comments-count-pill {
    background: rgba(0, 255, 251, 0.12);
    border: 1px solid rgba(0, 255, 251, 0.3);
    color: var(--primary-color);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.comment-input-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
    background: rgba(8, 11, 18, 0.6);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 251, 0.15);
}

.comment-input-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 251, 0.2);
}

.comment-input-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-textarea {
    width: 100%;
    background: rgba(5, 7, 12, 0.7);
    border: 1px solid rgba(0, 255, 251, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.5;
    resize: vertical;
    min-height: 70px;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.comment-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(0, 255, 251, 0.25);
    background: rgba(5, 7, 12, 0.9);
}

.comment-input-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.comment-card {
    background: rgba(8, 12, 20, 0.65);
    border: 1px solid rgba(0, 255, 251, 0.12);
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color 0.2s ease;
}

.comment-card:hover {
    border-color: rgba(0, 255, 251, 0.25);
}

.comment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.comment-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.comment-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    object-fit: cover;
    flex-shrink: 0;
}

.comment-username {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

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

.comment-role-badge {
    background: rgba(0, 255, 251, 0.12);
    border: 1px solid rgba(0, 255, 251, 0.3);
    color: var(--primary-color);
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-meta-right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: rgba(224, 224, 224, 0.5);
}

.comment-text-content {
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.55;
    margin: 0 0 8px 0;
    word-break: break-word;
    padding-left: 38px;
}

.comment-action-bar {
    padding-left: 38px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-reply-link {
    background: none;
    border: none;
    color: rgba(0, 255, 251, 0.8);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.btn-reply-link:hover {
    color: var(--primary-color);
}

.btn-delete-icon {
    background: rgba(255, 51, 102, 0.08);
    border: 1px solid rgba(255, 51, 102, 0.25);
    color: #ff3366;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-delete-icon:hover {
    background: rgba(255, 51, 102, 0.2);
    border-color: #ff3366;
}

.replies-thread-container {
    margin-top: 10px;
    margin-left: 20px;
    padding-left: 14px;
    border-left: 2px solid rgba(0, 255, 251, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reply-card {
    background: rgba(4, 6, 12, 0.55);
    border: 1px solid rgba(0, 255, 251, 0.08);
    border-radius: 8px;
    padding: 10px 12px;
}

.reply-text-content {
    font-size: 0.86rem;
    color: rgba(224, 224, 224, 0.85);
    line-height: 1.45;
    margin: 0;
    padding-left: 32px;
    word-break: break-word;
}
/* ═══════════════════════════════════════════════════════════════════════════
   [local fix] Arabic/RTL text overlap in tool cards
   The original clamps card descriptions with -webkit-line-clamp (flex box).
   Chromium renders bidi (Arabic) content in line-clamped boxes broken: the
   lines stack on top of each other. Block layout handles bidi correctly, so
   we clamp with max-height instead and let each paragraph pick its natural
   base direction via unicode-bidi: plaintext.
   ═══════════════════════════════════════════════════════════════════════════ */
.tool-description-clamped {
    display: block;
    -webkit-box-orient: initial;
    -webkit-line-clamp: none;
    max-height: 3.1em; /* exactly two lines at line-height 1.55 */
    overflow: hidden;
    unicode-bidi: plaintext;
}

.tool-title {
    unicode-bidi: plaintext;
    word-break: break-word;
    line-height: 1.5;
}

.tool-card-cover {
    direction: ltr;
}


/* ═══════════════════════════════════════════════════════════════════════════
   [local fix] Rank badge / category badge overlap on marketplace cards
   The category badge element carries both CSS `left:12px` and inline
   `right:12px`, which stretches it across the whole card width. The
   "#N TOP TRENDING" rank badge sits at the same top-left corner, so the two
   labels render on top of each other. Fix: keep the category badge as a
   compact pill in the top-right corner (as its inline style intends) so both
   badges are fully visible.
   ═══════════════════════════════════════════════════════════════════════════ */
.tool-card > div[style*="z-index: 10"] ~ .tool-card-cover .tool-badge-category {
    left: auto !important;
    right: 12px !important;
    width: auto !important;
    max-width: 45% !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   [local fix] Remove the shopping-cart (Verified Sales) badge from the cards
   Per request: the cart icon next to the username is deleted entirely, so the
   author row keeps only the avatar, name and verified mark. The user avatar
   stays at its original 40px size.
   ═══════════════════════════════════════════════════════════════════════════ */
.tool-card .tool-stat-badge[title="Verified Sales"] {
    display: none;
}
