.profile-photo-guidelines-wrapper {
    background-color: #050505;
    color: #ffffff;
    padding: 60px 0;
}

.profile-photo-guidelines-wrapper .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-title-container {
    text-align: center;
    margin-bottom: 35px;
}

.title-underline {
    width: 45px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto;
    border-radius: 2px;
}

/* ================= OPTION 1: SPLIT LAYOUT STYLES ================= */
.guidelines-split-layout {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.guidelines-column {
    flex: 1;
}

.guidelines-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
    align-self: stretch;
}

.column-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.status-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon svg {
    width: 13px;
    height: 13px;
}

.status-icon.success {
    border: 2px solid #22c55e;
    color: #22c55e;
}

.status-icon.danger {
    border: 2px solid #ef4444;
    color: #ef4444;
}

.column-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.text-success {
    color: #22c55e;
}

.text-danger {
    color: #ef4444;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.guideline-card {
    background-color: #0b0b0d;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.guideline-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-image-container {
    position: relative;
    width: 100%;
    padding-top: 125%;
    background-color: #1a1a1a;
    overflow: hidden;
}

.guideline-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guideline-card:hover .guideline-image {
    transform: scale(1.04);
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 13px;
    font-weight: 500;
}

.card-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.card-badge svg {
    width: 12px;
    height: 12px;
}

.card-badge.success {
    background-color: #22c55e;
}

.card-badge.danger {
    background-color: #ef4444;
}

.card-label {
    background-color: #000000;
    padding: 12px 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.card-label p {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    color: #e5e5e7;
}

/* ================= OPTION 2: EXAMPLES LAYOUT STYLES ================= */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}

.example-card {
    background-color: #0f0f11;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 10px 10px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.example-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.25);
}

.avatar-gold-circle {
    position: relative;
    width: 112px;
    height: 112px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-image-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #1a1a1a;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 12px;
}

.avatar-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-gradient, #d4af37);
    border: 1px solid #0f0f11;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.avatar-badge svg {
    width: 12px;
    height: 12px;
}

.example-name {
    color: #ffffff;
}

.example-info-text {
    font-size: 13px;
    color: #88888b;
    font-weight: 500;
}

.verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.2px;
}

.pill-check-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #22c55e;
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-check-icon svg {
    width: 9px;
    height: 9px;
}

.example-card-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #88888b;
    font-size: 13px;
    font-weight: 600;
}

.stat-icon {
    width: 16px;
    height: 16px;
    stroke: #88888b;
}

.stat-icon-svg {
    width: 26px;
    height: 26px;
}

.success-svg,
.danger-svg {
    width: 15px;
    height: 15px;
}

/* ================= OPTION 3: VERIFICATION PROGRAM BANNER ================= */
.verification-banner {
    background-color: #0b0b0b;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.verification-banner-left {
    flex: 1.2;
    padding: 50px 40px;
}

.text-gold {
    color: #f3c155;
}

.verification-banner-desc {
    color: #a0a0a0;
    max-width: 450px;
}

.verification-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verification-bullets-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #e0e0e0;
}

.bullet-check-icon {
    width: 20px;
    height: 20px;
    border: 1.5px solid #f3c155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3c155;
    flex-shrink: 0;
}

.bullet-check-icon svg {
    width: 10px;
    height: 10px;
}

.verification-banner-center {
    flex: 1;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.verification-center-card {
    background-color: #050505;
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.avatar-gold-circle {
    width: 110px;
    height: 110px;
    border: 2px solid #f3c155;
    border-radius: 50%;
    padding: 4px;
    margin: 0 auto 20px;
    position: relative;
}

.avatar-image-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-badge.success {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background-color: #28a745;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #050505;
}

.avatar-badge.success svg {
    width: 14px;
    height: 14px;
}

.example-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.example-info-text {
    color: #777;
    font-size: 12px;
    margin-bottom: 8px;
}

.verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(40, 167, 69, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pill-check-icon {
    background: #28a745;
    color: white;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-check-icon svg {
    width: 8px;
    height: 8px;
}

.verification-banner-right {
    flex: 1.3;
    height: 420px;
}

.verification-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .verification-banner {
        flex-direction: column;
        text-align: center;
    }

    .verification-banner-left {
        align-items: center;
    }

    .verification-banner-right {
        width: 100%;
        height: 300px;
    }

    .verification-bullets-list li {
        justify-content: center;
    }
}

@media (max-width: 1100px) {
    .guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .verification-banner-center {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        padding: 40px 20px;
    }

    .verification-banner-right {
        height: 250px;
    }
}

@media (max-width: 900px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-photo-guidelines-wrapper {
        padding: 36px 0;
    }

    .guidelines-split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .guidelines-divider {
        display: none;
    }

    .guidelines-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .examples-grid {
        grid-template-columns: 1fr;
    }

    .verification-banner-left {
        padding: 30px 20px;
    }

    .verification-banner-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}