/* Scam Reports Plugin Styles */

/* Base responsive rules for all images and content */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure all text is responsive */
p, span, div, h1, h2, h3, h4, h5, h6, a, button, input, textarea, label {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive container */
.scam-reports-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive images in all contexts */
.scam-card-image img,
.scam-detail-image img,
.scam-gallery-item img,
.scam-warning-content img,
.scam-comment-author img,
.scam-recent-comment-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

.scam-reports-list {
    margin-top: 40px;
}

/* Header Section */
.scam-header-section {
    text-align: center;
    padding: 20px 15px;
    background: #fff;
    border-radius: 2px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scam-detail-page-wrapper .scam-header-section {
    padding: 15px 15px;
    margin-bottom: 15px;
}

.scam-lock-icon {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

.scam-detail-page-wrapper .scam-lock-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.scam-main-title {
    font-size: 28px;
    font-weight: 900;
    color: #e74c3c;
    text-transform: uppercase;
    margin: 0 0 20px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.scam-detail-page-wrapper .scam-main-title {
    font-size: 20px;
    margin: 0 0 12px;
    letter-spacing: 1px;
}

.scam-stats {
    font-size: 16px;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.6;
}

.scam-detail-page-wrapper .scam-stats {
    font-size: 14px;
    margin: 0 0 12px;
    line-height: 1.5;
}

.scam-stats .scam-count {
    color: #e74c3c;
    font-weight: 900;
    font-size: 18px;
}

.scam-detail-page-wrapper .scam-stats .scam-count {
    font-size: 16px;
}

.scam-detail-page-wrapper .scam-tagline {
    font-size: 13px;
    margin: 0 0 15px;
}

.scam-detail-page-wrapper .scam-submit-btn {
    padding: 14px 35px;
    font-size: 15px;
}

.scam-submit-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: 3px solid #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 900;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5), 0 0 0 4px rgba(231, 76, 60, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.scam-submit-btn:hover::before {
    left: 100%;
}

.scam-submit-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(231, 76, 60, 0.6), 0 0 0 6px rgba(231, 76, 60, 0.3);
    border-color: #fff;
}

.scam-submit-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.5);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5), 0 0 0 4px rgba(231, 76, 60, 0.2);
    }
    50% {
        box-shadow: 0 8px 30px rgba(231, 76, 60, 0.7), 0 0 0 6px rgba(231, 76, 60, 0.3);
    }
}

/* Popular Scams Section */
.scam-popular-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 2px;
    margin-bottom: 30px;
}

.scam-popular-title {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
    text-transform: uppercase;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

.scam-popular-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scam-popular-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.scam-popular-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.scam-item-text {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.scam-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.scam-warning-count {
    background: #fff3cd;
    color: #856404;
    padding: 5px 12px;
    border-radius: 2px;
    font-weight: bold;
    font-size: 12px;
}

.scam-no-items {
    text-align: center;
    padding: 20px;
    color: #999;
    font-style: italic;
}

.scam-section-title {
    font-size: 24px;
    font-weight: bold;
    margin: 30px 0 20px;
    color: #333;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.scam-pinned-section {
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(to bottom, #fff5f5 0%, #ffffff 100%);
    border-left: 4px solid #e74c3c;
    border-radius: 2px;
}

.scam-pinned-section .scam-section-title {
    color: #e74c3c;
    font-size: 26px;
    border-bottom: 3px solid #e74c3c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.scam-card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.scam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.scam-card.pinned {
    border: 3px solid #e74c3c;
    background: linear-gradient(to bottom, #fff5f5 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3), 0 0 0 1px rgba(231, 76, 60, 0.1);
    position: relative;
}

.scam-card.pinned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e74c3c;
    z-index: 1;
}

.scam-card.pinned:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4), 0 0 0 1px rgba(231, 76, 60, 0.2);
}

.scam-pin-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scam-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.scam-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.scam-card-content {
    padding: 20px;
}

.scam-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #2c3e50;
    line-height: 1.4;
}

.scam-card-excerpt {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
    line-height: 1.6;
}

.scam-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.scam-view-details-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.scam-view-details-btn:hover {
    background: #c0392b;
    color: #fff;
    text-decoration: none;
}

/* Modal Styles */
.scam-modal {
    display: none !important;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
    padding: 20px;
    box-sizing: border-box;
}

.scam-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scam-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 2px;
    width: 90%;
    max-width: 800px;
    max-height: 96vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
    align-self: center;
}

.scam-report-form-modal {
    max-width: 900px;
}

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

.scam-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.scam-modal-close:hover {
    color: #e74c3c;
    background: #fff;
    transform: rotate(90deg);
}

#scam-modal-body {
    padding: 40px;
}

/* Detail Page Styles */
.scam-detail-page-wrapper {
    width: 100%;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 10px 0;
}

.scam-detail-page-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.scam-detail-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.scam-detail-card {
    background: #fff;
    border-radius: 2px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}

.scam-detail-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #e74c3c;
    line-height: 1.3;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: block;
}

.scam-detail-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.scam-detail-image {
    margin: 12px 0;
    border-radius: 2px;
    overflow: hidden;
}

.scam-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Styles */
.scam-detail-gallery {
    margin: 12px 0;
}

.scam-detail-gallery h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.scam-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.scam-gallery-item {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
}

.scam-alert-stamp {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: #fff;
    padding: 10px 18px;
    border-radius: 2px;
    font-weight: 900;
    font-size: 16px;
    z-index: 10;
    transform: rotate(-8deg);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.scam-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scam-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
}

.scam-gallery-item:hover img {
    transform: scale(1.05);
}

.scam-gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scam-gallery-item:hover::after {
    opacity: 1;
}

.scam-detail-content {
    margin-bottom: 10px;
}

.scam-detail-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.scam-detail-info-new {
    background: transparent;
    padding: 0;
    margin: 0 0 10px;
    border: none;
    box-shadow: none;
}

.scam-info-row {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scam-info-row:last-child {
    margin-bottom: 0;
}

.scam-info-row strong {
    color: #333;
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
}

.scam-info-row span {
    color: #333;
    font-weight: 500;
}

.scam-info-note {
    margin-top: 15px;
    padding: 10px;
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
    font-size: 14px;
    color: #856404;
}

.scam-info-note em {
    font-style: italic;
}

.scam-warning-content {
    background: #fff;
    padding: 12px;
    border-radius: 2px;
    border-left: 4px solid #e74c3c;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.scam-comment-notice {
    background: #e7f3ff;
    padding: 12px;
    border-radius: 2px;
    margin: 10px 0;
    border-left: 4px solid #3498db;
    text-align: center;
}

.scam-comment-notice p {
    margin: 0;
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.5;
}

.scam-detail-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 2px;
    margin-bottom: 30px;
}

.scam-detail-info h3 {
    margin: 0 0 20px;
    color: #2c3e50;
    font-size: 20px;
}

.scam-info-table {
    width: 100%;
    border-collapse: collapse;
}

.scam-info-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.scam-info-table tr:last-child {
    border-bottom: none;
}

.scam-info-table th {
    text-align: left;
    padding: 12px;
    width: 200px;
    color: #555;
    font-weight: 600;
}

.scam-info-table td {
    padding: 12px;
    color: #333;
}

.scam-info-table a {
    color: #3498db;
    text-decoration: none;
}

.scam-info-table a:hover {
    text-decoration: underline;
}

/* Comments Section */
.scam-comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.scam-comments-wrapper {
    margin-top: 30px;
}

.scam-comments-wrapper .comments-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.no-comments-yet {
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 20px 0;
}

.scam-comments-section .comment-list,
.scam-comments-wrapper .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.scam-comments-section .comment,
.scam-comments-wrapper .comment {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 2px;
    border-left: 4px solid #3498db;
}

.scam-comment-item {
    list-style: none;
    margin-bottom: 15px;
}

.scam-comments-section .comment-author,
.scam-comments-wrapper .comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.scam-comments-section .comment-author img,
.scam-comments-wrapper .comment-author img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.scam-comments-section .comment-date,
.scam-comments-wrapper .comment-date {
    font-size: 12px;
    color: #888;
    font-weight: normal;
    margin-left: auto;
}

.scam-comments-section .comment-content,
.scam-comments-wrapper .comment-content {
    margin: 15px 0;
    line-height: 1.6;
    color: #333;
    padding-left: 60px;
}

.scam-comment-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.scam-like-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #666;
}

.scam-like-btn:hover {
    background: #f0f0f0;
    border-color: #e74c3c;
}

.scam-like-btn.liked {
    background: #ffe5e5;
    border-color: #e74c3c;
    color: #e74c3c;
}

.scam-like-btn.liked .scam-like-icon {
    color: #e74c3c;
}

.scam-like-count {
    font-weight: bold;
}

.scam-comment-form,
#commentform {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 2px;
    margin-top: 30px;
}

.scam-comment-form textarea,
#commentform textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.scam-comment-form .comment-form-author,
.scam-comment-form .comment-form-email,
.scam-comment-form .comment-form-url,
#commentform .comment-form-author,
#commentform .comment-form-email,
#commentform .comment-form-url {
    margin-bottom: 15px;
}

.scam-comment-form input[type="text"],
.scam-comment-form input[type="email"],
.scam-comment-form input[type="url"],
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    box-sizing: border-box;
}

.scam-comment-form input[type="submit"],
.scam-submit-comment,
#commentform input[type="submit"] {
    padding: 12px 30px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.scam-comment-form input[type="submit"]:hover,
.scam-submit-comment:hover,
#commentform input[type="submit"]:hover {
    background: #2980b9;
}

.scam-edit-comment {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.scam-edit-comment:hover {
    text-decoration: underline;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
}

.comment-navigation a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.comment-navigation a:hover {
    text-decoration: underline;
}

.no-comments {
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    color: #856404;
}

/* Form Tố Cáo Styles */
.scam-report-form-wrapper {
    padding: 40px;
}

.scam-form-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 0 30px;
    text-align: center;
    text-transform: uppercase;
}

.scam-report-form {
    max-width: 100%;
}

.scam-form-group {
    margin-bottom: 25px;
}

.scam-form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.scam-form-group .required {
    color: #e74c3c;
}

.scam-form-input,
.scam-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.scam-form-input:focus,
.scam-form-textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.scam-form-input[required] {
    border-left: 3px solid #e74c3c;
}

.scam-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.scam-media-upload {
    margin-top: 10px;
}

.scam-add-media-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.scam-add-media-btn:hover {
    background: #2980b9;
}

.scam-media-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.scam-media-item {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 2px;
    overflow: hidden;
    border: 2px solid #ddd;
}

.scam-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scam-remove-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #e74c3c;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.scam-remove-media:hover {
    background: #c0392b;
}

.scam-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.scam-submit-form-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 2px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scam-submit-form-btn:hover:not(:disabled) {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

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

.scam-form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    animation: scam-fadeIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scam-form-message.success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.scam-form-message.success::before {
    content: '✓';
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.scam-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.scam-form-message.error::before {
    content: '✕';
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

@keyframes scam-fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Recent Comments Section */
.scam-recent-comments-section {
    background: #fff;
    padding: 30px;
    border-radius: 2px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scam-comments-section-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

.scam-recent-comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scam-recent-comment-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 2px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.scam-recent-comment-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.scam-comment-avatar {
    flex-shrink: 0;
}

.scam-comment-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.scam-comment-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}

.scam-comment-author {
    color: #2c3e50;
    font-weight: bold;
}

.scam-comment-on {
    color: #666;
}

.scam-comment-post-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.scam-comment-post-link:hover {
    text-decoration: underline;
}

.scam-comment-date {
    color: #888;
    font-size: 12px;
    margin-left: auto;
}

.scam-comment-text {
    color: #333;
    line-height: 1.6;
    margin: 12px 0;
    padding-left: 52px;
}

.scam-fake-comments .scam-recent-comment-item {
    opacity: 0.9;
}

.scam-fake-comment .scam-like-btn {
    cursor: default;
    pointer-events: none;
}

.scam-fake-comment .scam-like-btn:hover {
    background: #fff;
    border-color: #ddd;
}

/* Detail Page Additional Styles */
.scam-detail-notes {
    margin: 10px 0;
    padding: 12px;
    background: #fffbf0;
    border-radius: 2px;
    border-left: 4px solid #ffc107;
}

.scam-note-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #856404;
}

.scam-note-item:last-child {
    margin-bottom: 0;
}

.scam-note-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.scam-note-label {
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
}

.scam-note-text {
    flex: 1;
}

/* Responsive Styles - Mobile First */
@media (max-width: 480px) {
    * {
        box-sizing: border-box;
    }
    
    .scam-reports-container {
        padding: 10px;
        width: 100%;
    }
    
    .scam-header-section {
        padding: 15px 10px;
    }
    
    .scam-lock-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .scam-main-title {
        font-size: 16px;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .scam-stats {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
        word-wrap: break-word;
    }
    
    .scam-stats .scam-count {
        font-size: 13px;
    }
    
    .scam-tagline {
        font-size: 11px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .scam-submit-btn {
        padding: 14px 25px;
        font-size: 13px;
        max-width: 100%;
        letter-spacing: 1.5px;
        border-width: 2px;
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.5), 0 0 0 3px rgba(231, 76, 60, 0.2);
    }
    
    .scam-submit-btn:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 6px 25px rgba(231, 76, 60, 0.6), 0 0 0 4px rgba(231, 76, 60, 0.3);
    }
    
    .scam-detail-page-wrapper .scam-header-section {
        padding: 12px 8px;
    }
    
    .scam-detail-page-wrapper .scam-lock-icon {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .scam-detail-page-wrapper .scam-main-title {
        font-size: 14px;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
    
    .scam-detail-page-wrapper .scam-stats {
        font-size: 10px;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .scam-detail-page-wrapper .scam-stats .scam-count {
        font-size: 11px;
    }
    
    .scam-detail-page-wrapper .scam-tagline {
        font-size: 9px;
        margin-bottom: 8px;
    }
    
    .scam-detail-page-wrapper .scam-submit-btn {
        padding: 12px 25px;
        font-size: 12px;
        width: 100%;
        letter-spacing: 1.5px;
        border-width: 2px;
    }
    
    .scam-popular-section {
        padding: 15px 10px;
    }
    
    .scam-popular-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .scam-popular-item {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .scam-item-text {
        font-size: 14px;
        width: 100%;
        word-break: break-word;
    }
    
    .scam-item-meta {
        width: 100%;
        justify-content: flex-start;
    }
    
    .scam-warning-count {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .scam-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .scam-card {
        margin-bottom: 15px;
        width: 100%;
    }
    
    .scam-card-image {
        height: 180px;
    }
    
    .scam-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .scam-card-content {
        padding: 15px;
    }
    
    .scam-card-title {
        font-size: 15px;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .scam-card-excerpt {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .scam-card-meta {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .scam-view-details-btn {
        padding: 10px;
        font-size: 12px;
    }
    
    .scam-pin-badge {
        font-size: 10px;
        padding: 4px 8px;
        top: 8px;
        right: 8px;
    }
    
    .scam-section-title {
        font-size: 18px;
        margin: 20px 0 15px;
    }
    
    .scam-pinned-section {
        padding: 15px 10px;
        margin-bottom: 30px;
    }
    
    .scam-pinned-section .scam-section-title {
        font-size: 18px;
    }
    
    .scam-modal {
        padding: 0;
        align-items: flex-start;
        justify-content: center;
    }
    
    .scam-modal-content {
        width: 100%;
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
        align-self: flex-start;
        max-width: 100%;
    }
    
    .scam-modal-close {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
    
    .scam-report-form-wrapper {
        padding: 20px 15px;
    }
    
    .scam-form-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .scam-form-group {
        margin-bottom: 20px;
    }
    
    .scam-form-group label {
        font-size: 13px;
    }
    
    .scam-form-input,
    .scam-form-textarea {
        font-size: 14px;
        padding: 10px 12px;
        width: 100%;
    }
    
    .scam-form-textarea {
        min-height: 100px;
    }
    
    .scam-add-media-btn {
        padding: 10px 15px;
        font-size: 12px;
        width: 100%;
    }
    
    .scam-media-preview {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
    
    .scam-media-preview-item {
        height: 80px;
    }
    
    .scam-form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .scam-submit-form-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
    
    .scam-detail-page-wrapper {
        padding: 10px 0;
    }
    
    .scam-detail-page-container {
        padding: 0 10px;
    }
    
    .scam-detail-card {
        padding: 15px 12px;
    }
    
    .scam-detail-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding: 10px 15px;
    }
    
    .scam-detail-info-new {
        padding: 0;
    }
    
    .scam-info-row {
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px 0;
        line-height: 1.6;
    }
    
    .scam-info-row strong {
        min-width: auto;
        width: 100%;
        display: block;
        margin-bottom: 5px;
    }
    
    .scam-info-row span {
        width: 100%;
        word-break: break-word;
    }
    
    .scam-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .scam-gallery-item {
        width: 100%;
    }
    
    .scam-gallery-item img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
    
    .scam-alert-stamp {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .scam-detail-gallery h3,
    .scam-detail-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .scam-warning-content {
        padding: 15px;
        font-size: 14px;
        line-height: 1.7;
    }
    
    .scam-warning-content p {
        margin-bottom: 10px;
    }
    
    .scam-warning-content img {
        max-width: 100%;
        height: auto;
        margin: 10px 0;
    }
    
    .scam-comment-notice {
        padding: 12px;
        font-size: 13px;
    }
    
    .scam-comment-notice p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .scam-detail-notes {
        padding: 12px;
    }
    
    .scam-note-item {
        font-size: 12px;
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .scam-note-label {
        font-weight: bold;
    }
    
    .scam-note-text {
        width: 100%;
        word-wrap: break-word;
        line-height: 1.6;
    }
    
    .scam-back-button {
        padding: 10px 18px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    
    .scam-detail-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .scam-action-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
        font-size: 13px;
    }
    
    /* Comments responsive */
    .scam-comments-section {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .scam-comments-wrapper .comments-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .scam-comments-section .comment,
    .scam-comments-wrapper .comment {
        padding: 15px;
    }
    
    .scam-comments-section .comment-author,
    .scam-comments-wrapper .comment-author {
        flex-wrap: wrap;
    }
    
    .scam-comments-section .comment-author img,
    .scam-comments-wrapper .comment-author img {
        width: 40px;
        height: 40px;
    }
    
    .scam-comments-section .comment-content,
    .scam-comments-wrapper .comment-content {
        padding-left: 0;
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .scam-comment-actions {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .scam-like-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .scam-comment-form,
    #commentform {
        padding: 15px;
    }
    
    .scam-comment-form textarea,
    #commentform textarea {
        min-height: 100px;
        font-size: 14px;
        padding: 12px;
    }
    
    .scam-comment-form input[type="text"],
    .scam-comment-form input[type="email"],
    .scam-comment-form input[type="url"],
    #commentform input[type="text"],
    #commentform input[type="email"],
    #commentform input[type="url"] {
        font-size: 14px;
        padding: 10px;
    }
    
    .scam-comment-form input[type="submit"],
    .scam-submit-comment,
    #commentform input[type="submit"] {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
    
    /* Recent comments */
    .scam-recent-comments-section {
        padding: 15px 10px;
    }
    
    .scam-comments-section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .scam-recent-comment-item {
        padding: 12px;
    }
    
    .scam-comment-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .scam-comment-avatar {
        width: 35px;
        height: 35px;
    }
    
    .scam-comment-info {
        font-size: 12px;
    }
    
    .scam-comment-text {
        font-size: 13px;
        line-height: 1.6;
        word-wrap: break-word;
    }
}

@media (max-width: 768px) {
    .scam-reports-container {
        padding: 15px;
        width: 100%;
    }
    
    .scam-header-section {
        padding: 20px 15px;
    }
    
    .scam-lock-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .scam-main-title {
        font-size: 22px;
        letter-spacing: 1px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .scam-stats {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .scam-stats .scam-count {
        font-size: 16px;
    }
    
    .scam-tagline {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .scam-submit-btn {
        padding: 14px 32px;
        font-size: 14px;
        letter-spacing: 1.8px;
        border-width: 2.5px;
    }
    
    .scam-detail-page-wrapper .scam-header-section {
        padding: 15px 10px;
    }
    
    .scam-detail-page-wrapper .scam-lock-icon {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .scam-detail-page-wrapper .scam-main-title {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .scam-detail-page-wrapper .scam-stats {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    .scam-detail-page-wrapper .scam-stats .scam-count {
        font-size: 14px;
    }
    
    .scam-detail-page-wrapper .scam-tagline {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .scam-detail-page-wrapper .scam-submit-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .scam-popular-section {
        padding: 20px 15px;
    }
    
    .scam-popular-title {
        font-size: 20px;
    }
    
    .scam-popular-item {
        padding: 14px 18px;
    }
    
    .scam-item-text {
        font-size: 15px;
    }
    
    .scam-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .scam-card-image {
        height: 200px;
    }
    
    .scam-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .scam-modal {
        padding: 10px;
        align-items: center;
        justify-content: center;
    }
    
    .scam-modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 95vh;
        margin: auto;
        align-self: center;
    }
    
    .scam-report-form-wrapper {
        padding: 30px 20px;
    }
    
    .scam-form-title {
        font-size: 22px;
    }
    
    .scam-form-input,
    .scam-form-textarea {
        font-size: 14px;
    }
    
    .scam-detail-page-wrapper {
        padding: 15px 0;
    }
    
    .scam-detail-page-container {
        padding: 0 15px;
    }
    
    .scam-detail-card {
        padding: 25px 20px;
    }
    
    .scam-detail-title {
        font-size: 18px;
        margin-bottom: 20px;
        padding: 12px 18px;
    }
    
    .scam-detail-info-new {
        padding: 0;
    }
    
    .scam-info-row {
        font-size: 15px;
        padding: 12px 0;
        line-height: 1.7;
    }
    
    .scam-info-row strong {
        min-width: 120px;
    }
    
    .scam-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .scam-gallery-item img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
    }
    
    .scam-detail-gallery h3,
    .scam-detail-content h3 {
        font-size: 18px;
    }
    
    .scam-warning-content {
        padding: 20px;
        font-size: 15px;
        line-height: 1.8;
    }
    
    .scam-warning-content img {
        max-width: 100%;
        height: auto;
    }
    
    .scam-comment-notice {
        padding: 18px;
    }
    
    .scam-comment-notice p {
        font-size: 15px;
    }
    
    .scam-detail-notes {
        padding: 18px;
    }
    
    .scam-note-item {
        padding: 15px;
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .scam-alert-stamp {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .scam-back-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .scam-detail-actions {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .scam-action-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    /* Comments responsive */
    .scam-comments-section .comment,
    .scam-comments-wrapper .comment {
        padding: 18px;
    }
    
    .scam-comments-section .comment-content,
    .scam-comments-wrapper .comment-content {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .scam-comment-form,
    #commentform {
        padding: 20px;
    }
    
    .scam-comment-form textarea,
    #commentform textarea {
        font-size: 14px;
    }
    
    #scam-modal-body {
        padding: 20px;
    }
    
    .scam-detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .scam-info-table th {
        width: 120px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .scam-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .scam-modal-content {
        width: 85%;
    }
}

.scam-detail-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.scam-action-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scam-action-btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

.scam-comment-btn:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.scam-copy-btn:hover {
    background: #27ae60;
    color: #fff;
    border-color: #27ae60;
}

.scam-remove-btn:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.scam-detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 0 25px;
}

.scam-detail-gallery h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.scam-detail-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.scam-warning-content {
    background: #fff;
    padding: 20px;
    border-radius: 2px;
    border-left: 4px solid #e74c3c;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}


/* Loading State */
.scam-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.scam-loading::after {
    content: "...";
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

/* Loading Spinner */
.scam-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: scam-spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

/* Input Error State */
.scam-form-input.scam-input-error,
.scam-form-textarea.scam-input-error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Image Loading State */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.scam-image-loaded {
    opacity: 1;
}

/* Lightbox Styles */
.scam-lightbox {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
    overflow: hidden;
}

.scam-lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    box-sizing: border-box;
}

.scam-lightbox-image-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scam-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.scam-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.scam-lightbox-close:hover {
    background: rgba(231, 76, 60, 0.8);
    transform: rotate(90deg);
}

.scam-lightbox-prev,
.scam-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 40px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 100001;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.scam-lightbox-prev {
    left: 20px;
}

.scam-lightbox-next {
    right: 20px;
}

.scam-lightbox-prev:hover,
.scam-lightbox-next:hover {
    background: rgba(231, 76, 60, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.scam-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 100001;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .scam-lightbox-content {
        padding: 50px 20px;
    }
    
    .scam-lightbox-image-wrapper {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .scam-lightbox-image {
        max-height: 85vh;
    }
    
    .scam-lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
    
    .scam-lightbox-prev,
    .scam-lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 32px;
    }
    
    .scam-lightbox-prev {
        left: 10px;
    }
    
    .scam-lightbox-next {
        right: 10px;
    }
    
    .scam-lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .scam-lightbox-content {
        padding: 40px 15px;
    }
    
    .scam-lightbox-image-wrapper {
        max-width: 100%;
        max-height: 80vh;
    }
    
    .scam-lightbox-image {
        max-height: 80vh;
    }
    
    .scam-lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
    
    .scam-lightbox-prev,
    .scam-lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .scam-lightbox-prev {
        left: 5px;
    }
    
    .scam-lightbox-next {
        right: 5px;
    }
    
    .scam-lightbox-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

