body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Playfair Display', Georgia, serif;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 16.5px;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

button, .btn, input[type="submit"] {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* Form help text styling */
.helptext, .form-text {
    color: #888888 !important;
    font-size: 0.875rem;
}

.navbar {
    background-color: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff !important;
}

.nav-text {
    color: #ffffff;
    margin-right: 1rem;
    display: inline-flex;
    align-items: center;
}

.nav-link-inline {
    color: #ff69b4 !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline;
    margin: 0;
    padding: 0;
}

.nav-link-inline:hover {
    color: #ff1493 !important;
    text-decoration: underline;
}

.nav-link {
    color: #ffffff !important;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff69b4 !important;
}

.accent-pink {
    color: #ff69b4 !important;
}

.accent-pink:hover {
    color: #ff1493 !important;
}

.accent-green {
    color: #90ee90 !important;
}

.accent-green:hover {
    color: #00ff00 !important;
}

.logout-link {
    color: #ff6b6b !important;
}

.admin-link {
    color: #ffd700 !important;
}

.main-container {
    max-width: 40%;
    margin: 3rem auto;
    padding: 2rem;
}

@media (max-width: 1400px) {
    .main-container {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .main-container {
        max-width: 90%;
    }
}

/* Mobile responsive for content pages */
@media (max-width: 768px) {
    .content-page .contact-form-container {
        border-radius: 0;
        padding: 1.5rem;
    }
}

.hero-section {
    text-align: center;
    padding: 3rem 0;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.feature-list {
    text-align: left;
    display: inline-block;
    margin-top: 2rem;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.btn-primary {
    background-color: #ff69b4;
    border-color: #ff69b4;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff1493;
    border-color: #ff1493;
    transform: translateY(-2px);
}

.btn-success {
    background-color: #90ee90;
    border-color: #90ee90;
    color: #0a0a0a;
    font-weight: bold;
}

.btn-success:hover {
    background-color: #00ff00;
    border-color: #00ff00;
    color: #0a0a0a;
}

.btn-danger {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.btn-danger:hover {
    background-color: #ff4444;
    border-color: #ff4444;
}

.form-control {
    background-color: #1a1a1a;
    border: 1px solid #3a3a3a;
    color: #ffffff !important;
    padding: 0.75rem;
    border-radius: 8px;
}

.form-control::placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

.form-control::-webkit-input-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

.form-control:-moz-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

.form-control::-moz-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

.form-control:-ms-input-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

input, textarea, select {
    color: #ffffff !important;
}

input::placeholder, textarea::placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

input::-webkit-input-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

input:-moz-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

input::-moz-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

input::-ms-input-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

textarea::placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

textarea::-webkit-input-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

textarea:-moz-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

textarea::-moz-placeholder {
    color: #cccccc !important;
    opacity: 1 !important;
}

.form-control:focus {
    background-color: #1a1a1a;
    border-color: #ff69b4;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
}

.form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Profile Page Styling - Twitter/Linktree Style */
.profile-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #0a0a0a;
    min-height: 100vh;
}

.profile-header-bg {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ff69b4 0%, #90ee90 100%);
}

.profile-card-section {
    padding: 0 1.5rem;
    position: relative;
    margin-bottom: 2rem;
}

.profile-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin-top: -80px;
    border: 2px solid #2a2a2a;
    position: relative;
    z-index: 10;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4 0%, #90ee90 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: #0a0a0a;
    margin: -60px auto 1.5rem;
    border: 4px solid #0a0a0a;
}

.profile-username {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    text-align: center;
}

.profile-subtitle {
    text-align: center;
    color: #888888;
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
}

.profile-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.info-item {
    text-align: center;
}

.info-label {
    display: block;
    color: #888888;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.info-value {
    display: block;
    color: #ff69b4;
    font-size: 1.5rem;
    font-weight: bold;
}

.badge-verified {
    display: inline-block;
    background-color: #90ee90;
    color: #0a0a0a;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge-unverified {
    display: inline-block;
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-claim-profile {
    background-color: #ff69b4;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.btn-claim-profile:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

/* Main Content Area */
.profile-content {
    padding: 0 1.5rem 2rem;
}

.content-section {
    background-color: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.section-header {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ff69b4;
}

/* Review Form Section */
.reviews-write-section {
    border: 2px solid #ff69b4;
    background-color: #0f0f0f;
}

.review-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group .form-control,
.form-group .form-select {
    background-color: #1a1a1a;
    border: 1px solid #3a3a3a;
    color: #ffffff !important;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-group .form-select {
    cursor: pointer;
}

.form-group .form-select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit-review {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    align-self: flex-start;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

/* Reviews Feed */
.reviews-feed-section {
    background-color: #1a1a1a;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    background-color: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-left: 4px solid #ff69b4;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.review-item:hover {
    border-left-color: #90ee90;
    background-color: #151515;
}

.review-top {
    margin-bottom: 1rem;
}

.reviewer-profile-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.reviewer-profile-link:hover .reviewer-username {
    color: #ff69b4;
}

.reviewer-profile {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #90ee90 0%, #ff69b4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0a0a0a;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.reviewer-details {
    flex: 1;
}

.reviewer-username {
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    font-size: 0.95rem;
}

.review-timestamp {
    color: #666666;
    font-size: 0.85rem;
    margin: 0;
}

.review-metrics-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #1a1a1a;
    padding: 0.4rem 0.9rem;
    border-radius: 16px;
    font-size: 0.85rem;
}

.metric-icon {
    font-size: 1rem;
}

.metric-text {
    color: #e0e0e0;
    font-weight: 500;
}

/* Amount Badge */
.amount-badge {
    background-color: rgba(144, 238, 144, 0.1);
    border: 1px solid #90ee90;
}

.amount-badge .metric-text {
    color: #90ee90;
}

.review-text {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state-text {
    color: #666666;
    font-size: 1rem;
    margin: 0;
}

/* Form Errors */
.form-errors {
    background-color: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.error-message:last-child {
    margin-bottom: 0;
}

/* Form Section Title */
.form-section-title {
    color: #ff69b4;
    font-size: 1rem;
    font-weight: bold;
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.form-section-title:first-child {
    margin-top: 0;
}

/* Edit Profile Section */
.edit-profile-section {
    border: 2px solid #90ee90;
    background-color: #0f0f0f;
}

.profile-edit-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Social Links Section */
.links-section {
    background-color: #1a1a1a;
}

.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.social-link-item:hover {
    border-color: #ff69b4;
    background-color: #151515;
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.8rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.social-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 100px;
}

.social-handle {
    color: #888888;
    font-size: 0.9rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-link-item.twitter:hover {
    border-color: #1DA1F2;
}

.social-link-item.telegram:hover {
    border-color: #0088cc;
}

.social-link-item.instagram:hover {
    border-color: #E1306C;
}

.social-link-item.discord:hover {
    border-color: #5865F2;
}

.social-link-item.snapchat:hover {
    border-color: #FFFC00;
}

.social-link-item.other:hover {
    border-color: #90ee90;
}

.card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}

.search-box {
    text-align: center;
    margin: 2rem 0;
}

.search-box input {
    font-size: 1.2rem;
    padding: 1rem;
}

.profile-header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 2px solid #2a2a2a;
    margin-bottom: 2rem;
}

.profile-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff69b4;
}

.badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.badge-claimed {
    background-color: #90ee90;
    color: #0a0a0a;
}

.badge-unclaimed {
    background-color: #ff6b6b;
    color: #ffffff;
}

.review-item {
    background-color: #0f0f0f;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid #ff69b4;
}

.review-author {
    color: #90ee90;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.review-date {
    color: #888888;
    font-size: 0.9rem;
}

.review-comment {
    margin-top: 1rem;
    line-height: 1.6;
}

.alert {
    border-radius: 8px;
    border: none;
}

.alert-success {
    background-color: #1a3a1a;
    color: #90ee90;
}

.alert-warning {
    background-color: #3a3a1a;
    color: #ffd700;
}

.alert-danger {
    background-color: #3a1a1a;
    color: #ff6b6b;
}

.alert-info {
    background-color: #1a2a3a;
    color: #69b4ff;
}

.pending-user-card {
    background-color: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.user-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.sender-badge {
    background-color: #ff69b4;
    color: #ffffff;
}

.receiver-badge {
    background-color: #90ee90;
    color: #0a0a0a;
}

.form-check-input {
    background-color: #1a1a1a;
    border-color: #3a3a3a;
}

.form-check-input:checked {
    background-color: #ff69b4;
    border-color: #ff69b4;
}

.form-check-label {
    color: #ffffff;
    margin-left: 0.5rem;
}

/* Search Result Link Wrapper */
.search-result-link {
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.search-result-item {
    background-color: #0f0f0f;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-item:hover {
    border-color: #ff69b4;
    background-color: #151515;
    box-shadow: 0 4px 16px rgba(255, 105, 180, 0.15);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.result-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4 0%, #90ee90 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.result-info {
    flex: 1;
}

.result-username {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.4rem 0;
    font-family: 'Playfair Display', serif;
}

.result-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.verified {
    background-color: rgba(144, 238, 144, 0.2);
    color: #90ee90;
    border: 1px solid #90ee90;
}

.status-badge.unverified {
    background-color: rgba(255, 107, 107, 0.2);
    color: #ff9999;
    border: 1px solid #ff9999;
}

.result-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a2a;
}

.size-label {
    color: #888888;
    font-size: 0.9rem;
}

.size-rating {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: bold;
}

.no-results {
    text-align: center;
    color: #888888;
    font-size: 1.2rem;
    padding: 3rem 0;
}

.claim-username-box {
    background-color: #0f0f0f;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    margin: 2rem auto 0;
    transition: all 0.3s ease;
}

.claim-username-box:hover {
    border-color: #ff69b4;
    background-color: #151515;
}

.btn-claim-username {
    display: inline-block;
    background-color: #ff69b4;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-claim-username:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

/* Badges Reference Table */
.badges-reference {
    margin: 3rem auto;
    max-width: 700px;
}

.badges-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.badges-table {
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border-collapse: collapse;
    border: 1px solid #2a2a2a;
}

.badges-table thead {
    background-color: #0f0f0f;
}

.badges-table th {
    color: #ff69b4;
    padding: 1rem;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #ff69b4;
}

.badges-table tbody tr {
    border-bottom: 1px solid #2a2a2a;
    transition: background-color 0.3s ease;
}

.badges-table tbody tr:hover {
    background-color: #0f0f0f;
}

.badges-table tbody tr.whale-row {
    background-color: rgba(144, 238, 144, 0.05);
}

.badges-table tbody tr.whale-row:hover {
    background-color: rgba(144, 238, 144, 0.1);
}

.badges-table td {
    color: #ffffff;
    padding: 1rem;
}

.badge-emoji {
    font-size: 1.8rem;
    text-align: center;
}

.badges-table tbody tr:last-child {
    border-bottom: none;
}

/* Receiver Profile Styles */
.receiver-profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.receiver-profile-header {
    background: linear-gradient(135deg, #ff69b4 0%, #ff69b4 30%, #ffffff 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.2);
}

.receiver-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #90ee90);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    color: #0a0a0a;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 4px solid #0a0a0a;
}

.receiver-avatar-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 4px solid #0a0a0a;
    display: block;
}

.receiver-username {
    color: #0a0a0a;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.receiver-subtitle {
    color: #0a0a0a;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.receiver-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 8px;
    flex: 1;
}

.stat-label {
    display: block;
    color: #0a0a0a;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.stat-value {
    display: block;
    color: #ff69b4;
    font-size: 1.5rem;
    font-weight: 800;
}

.receiver-content {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
}

.edit-profile-section {
    margin-bottom: 2rem;
}

.btn-edit-profile {
    background-color: #ff69b4;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.btn-edit-profile:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

.reviews-section {
    margin-bottom: 2rem;
}

.reviews-section h2 {
    color: #ff69b4;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    background-color: #0f0f0f;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff69b4;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #90ee90);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    flex-shrink: 0;
}

.reviewer-avatar-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-avatar-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.reviewer-avatar-link:hover {
    transform: scale(1.1);
}

.reviewer-name-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.reviewer-name-link:hover .reviewer-name {
    color: #ff69b4;
}

.reviewer-name {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    transition: color 0.2s ease;
    cursor: pointer;
}

.review-date {
    color: #888888;
    font-size: 0.85rem;
    margin: 0;
}

.review-trust-score {
    color: #90ee90;
    font-size: 1.2rem;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-state-text {
    color: #888888;
    font-size: 1.1rem;
}

.write-review-section {
    background-color: #0f0f0f;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.write-review-section h2 {
    color: #90ee90;
    margin-bottom: 1.5rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-form .form-control {
    background-color: #1a1a1a;
    border: 1px solid #3a3a3a;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 6px;
}

.review-form .form-control:focus {
    background-color: #1a1a1a;
    border-color: #90ee90;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(144, 238, 144, 0.25);
}

.btn-submit-review {
    background-color: #90ee90;
    color: #0a0a0a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.btn-submit-review:hover {
    background-color: #00ff00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 238, 144, 0.4);
}

/* Header Social Links */
.header-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.header-social-icon {
    font-size: 1.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.header-social-icon:hover {
    transform: scale(1.2) translateY(-2px);
}

.header-social-icon::after {
    content: attr(title);
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff69b4;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.header-social-icon:hover::after {
    opacity: 1;
}

/* Collapsible Headers */
.collapsible-header {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.collapsible-header:hover {
    color: #ff69b4;
}

.collapsible-header::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hidden-collapsible {
    display: none !important;
}

.collapsible-header:has(~ .hidden-collapsible.hidden-collapsible)::after {
    transform: rotate(-90deg);
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.site-footer {
    background-color: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff69b4;
}

.footer-separator {
    color: #666;
    margin: 0 1rem;
}

.footer-copyright {
    color: #888;
    font-size: 0.85rem;
}

/* ========================================
   CONTENT PAGE STYLES (CONTACT, TERMS, PRIVACY)
   ======================================== */
.content-page {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.page-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.effective-date {
    color: #888888;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Contact Form Styles */
.contact-form-container {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 8px;
    width: 100%;
}

.contact-form .form-control::placeholder {
    color: #666666;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: #0a0a0a;
    border-color: #ff69b4;
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
}

.btn-submit-contact {
    background-color: #ff69b4;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit-contact:hover {
    background-color: #ff1493;
    transform: translateY(-2px);
}

/* Legal Page Styles */
.legal-page {
    max-width: 900px;
}

.legal-content {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2.5rem;
    line-height: 1.8;
}

.legal-content h2 {
    color: #ff69b4;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.legal-content h3 {
    color: #90ee90;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #ffffff;
}

.legal-link {
    color: #ff69b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ff1493;
    text-decoration: underline;
}

.legal-note {
    background-color: #0a0a0a;
    border-left: 3px solid #ff69b4;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 4px;
    color: #cccccc;
    font-size: 0.95rem;
}

.last-updated {
    color: #888888;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a2a;
}

/* Error Message in Forms */
.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablets and smaller */
@media (max-width: 991px) {
    .main-container {
        width: 70% !important;
        max-width: 100% !important;
    }
    
    .content-page {
        width: 85%;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
}

/* Mobile phones */
@media (max-width: 767px) {
    .main-container {
        width: 95% !important;
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    /* Profile pages take full width on mobile */
    .profile-wrapper,
    .receiver-profile-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .main-container.profile-page {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .receiver-profile-header {
        padding: 1rem !important;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-page {
        width: 100%;
        padding: 0;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .footer-separator {
        margin: 0 0.5rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    /* Profile cards - full width on mobile */
    .profile-card {
        padding: 1rem;
        border-radius: 0;
    }
    
    .profile-card-section {
        border-radius: 0;
    }
    
    .profile-info-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-item {
        width: 100%;
        text-align: left;
    }
    
    /* Forms */
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100% !important;
    }
    
    /* Search results */
    .search-result-item {
        padding: 1rem;
    }
    
    /* Reviews */
    .review-item {
        padding: 1rem;
    }
    
    .review-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-metrics {
        margin-top: 0.75rem;
        width: 100%;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .nav-link {
        margin-left: 0.5rem;
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .btn-submit-contact,
    .btn-submit-review {
        padding: 0.6rem 1.5rem;
    }
    
    .legal-content {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
    }
}

/* User Badge Inline (next to username) */
.user-badge-inline {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Safety Section */
.safety-section {
    background-color: #1a1a1a;
    border: 2px solid #ff69b4;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.safety-title {
    color: #ff69b4;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.safety-text {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* FAQs Page Styles */
.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h2 {
    color: #ff69b4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: #90ee90;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.faq-item p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-item ul,
.faq-item ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.badge-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .badge-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.benefit-section {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #2a2a2a;
}

.benefit-section h3 {
    margin-top: 0;
}

.safety-reminder {
    background-color: #1a1a1a;
    border-left: 3px solid #ff69b4;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    font-style: italic;
}

.launch-message {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(144, 238, 144, 0.1) 100%);
    border: 2px solid #ff69b4;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.launch-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Verified Badge Inline (next to username) */
.verified-badge-inline {
    color: #90ee90;
    font-size: 1.3rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Trust Score Color Coding */
.trust-score-high {
    color: #90ee90 !important;
}

.trust-score-medium {
    color: #ffffff !important;
}

.trust-score-low {
    color: #ff6b6b !important;
}

/* Safety Indicator */
.safety-indicator {
    font-size: 1.5rem;
}

/* Report Safety Section */
.report-safety-section {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-report-safety {
    background-color: transparent;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-report-safety:hover {
    background-color: #ff6b6b;
    color: #0a0a0a;
}

/* Modal Styling */
.modal-content {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
}

.modal-header {
    border-bottom: 1px solid #2a2a2a;
}

.modal-footer {
    border-top: 1px solid #2a2a2a;
}

.modal-title {
    color: #ff69b4;
}

.safety-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-check {
    padding: 1rem;
    background-color: #0a0a0a;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.75rem;
    cursor: pointer;
}

.form-check-label {
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.6;
}

.btn-close-white {
    filter: invert(1);
}

/* Custom Tooltips */
.has-tooltip {
    position: relative;
    cursor: help;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0.5rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 1000;
    border: 1px solid #3a3a3a;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2a2a2a transparent transparent transparent;
}

.has-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Safety Report Section Styling */
.safety-report-header {
    background-color: transparent;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    text-align: center;
    margin: 1.5rem 0 0 0;
}

.safety-report-header:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

.safety-report-form {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

/* First Review Form Styling */
.first-review-form {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #2a2a2a;
}

.first-review-form .form-group label {
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    display: block;
}

.first-review-form .form-control,
.first-review-form .form-select {
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    padding: 0.75rem;
    border-radius: 8px;
}

.first-review-form .form-control:focus,
.first-review-form .form-select:focus {
    background-color: #0a0a0a;
    border-color: #ff69b4;
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 180, 0.25);
}

.first-review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.link-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.first-review-form .form-group.full-width {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .first-review-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* First Review Box - Wider on Desktop */
.first-review-box {
    max-width: 800px !important;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .first-review-box {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Unclaimed Badge Styling */
.status-badge.unclaimed {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

/* Signup Page Styles */
.user-type-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-user-type {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #3a3a3a;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-user-type:hover {
    border-color: #ff69b4;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 105, 180, 0.2);
}

.user-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.user-type-label {
    color: #ff69b4;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.user-type-desc {
    color: #cccccc;
    font-size: 0.9rem;
}

.btn-back {
    background-color: transparent;
    border: 1px solid #3a3a3a;
    color: #90ee90;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.2s;
}

.btn-back:hover {
    background-color: rgba(144, 238, 144, 0.1);
    border-color: #90ee90;
}

.sender-info-box {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    color: #ffffff;
    line-height: 1.8;
}

.receivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.receiver-card {
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
}

.receiver-card:hover {
    border-color: #ff69b4;
    transform: translateY(-2px);
}

.receiver-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4 0%, #90ee90 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0a0a0a;
    margin: 0 auto 1rem;
}

.receiver-card-link {
    text-decoration: none;
    display: block;
}

.receiver-card .receiver-username {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.receiver-twitter {
    color: #90ee90;
    font-size: 0.75rem;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.btn-submit-auth {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: all 0.2s;
}

.btn-submit-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

@media (max-width: 768px) {
    .user-type-buttons {
        grid-template-columns: 1fr;
    }
    
    .receivers-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    /* Receiver Profile Mobile Responsive - Full Width */
    .receiver-profile-container {
        max-width: 100vw !important;
        width: 100vw;
        padding: 0 !important;
        margin: 0 !important;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .receiver-profile-header {
        border-radius: 0;
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .receiver-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin: 0 auto 1rem;
    }
    
    .receiver-avatar-image {
        width: 100px;
        height: 100px;
        margin: 0 auto 1rem;
    }
    
    .receiver-username {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .receiver-stats {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .receiver-content {
        padding: 0 !important;
        width: 100%;
    }
    
    .content-section {
        margin: 0 !important;
        padding: 1rem !important;
        border-radius: 0 !important;
    }
    
    .reviews-section {
        padding: 0 !important;
    }
    
    .review-card {
        padding: 1rem;
        border-radius: 0;
        margin: 0;
    }
}

/* Honor Type Styling */
.honor-type {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(144, 238, 144, 0.1) 100%);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff69b4;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.honor-comment {
    color: #cccccc;
    padding: 0.75rem 1rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.receiver-bio {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
    padding: 1rem;
    background-color: rgba(255, 105, 180, 0.05);
    border-left: 3px solid #ff69b4;
    border-radius: 4px;
}
