.project-page {
    display: flex;
    align-items: stretch;
    min-height: 700px;
    background: #070d18;
}

.project-page .Project-Menu,
.project-page .Project-Listing {
    float: none;
}

.my-projects-listing {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 34px 28px;
}

.my-projects-header,
.my-project-card,
.my-projects-empty,
.my-projects-stats article {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.my-projects-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.16), rgba(42, 129, 188, 0.18)), rgba(255, 255, 255, 0.08);
}

.my-projects-header p {
    margin: 0 0 8px;
    color: #ffcc00;
    font-family: sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.my-projects-header h2,
.my-projects-empty h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Copperplate Gothic", sans-serif;
    font-size: 2rem;
    line-height: 1.2;
}

.my-projects-header span,
.my-projects-empty p {
    display: block;
    margin-top: 8px;
    color: #d8dcff;
    font-family: sans-serif;
    line-height: 1.6;
}

.my-projects-header a,
.my-projects-empty a,
.my-project-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 8px;
    color: #ffffff;
    font-family: sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.my-project-actions .danger-link {
    background: #dc2626;
}

.my-projects-message {
    padding: 12px 14px;
    border-radius: 8px;
    font-family: sans-serif;
    font-weight: 700;
}

.my-projects-message.success {
    background: #d1fae5;
    color: #065f46;
}

.my-projects-message.error {
    background: #fee2e2;
    color: #991b1b;
}

.my-projects-header a,
.my-projects-empty a {
    background: linear-gradient(90deg, #ff8c00, #ff2e00);
    white-space: nowrap;
}

.my-projects-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.my-projects-stats article {
    padding: 18px;
    font-family: sans-serif;
}

.my-projects-stats span,
.my-projects-stats small {
    display: block;
    color: #d8dcff;
}

.my-projects-stats strong {
    display: block;
    margin: 8px 0;
    color: #ffcc00;
    font-size: 1.75rem;
    line-height: 1.1;
}

.my-projects-stats small {
    color: #a8f0c2;
}

.my-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.my-project-card {
    overflow: hidden;
}

.my-project-poster {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #121433;
    color: #cbd0ee;
    font-family: sans-serif;
}

.my-project-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-status {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 204, 0, 0.88);
    color: #382a00;
    font-family: sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
}

.status-approved,
.status-live {
    background: rgba(34, 197, 94, 0.9);
    color: #04240f;
}

.status-rejected {
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
}

.my-project-body {
    padding: 18px;
}

.my-project-body h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Copperplate Gothic", sans-serif;
    font-size: 1.25rem;
}

.my-project-body p {
    display: -webkit-box;
    min-height: 48px;
    margin: 10px 0 0;
    overflow: hidden;
    color: #d8dcff;
    font-family: sans-serif;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.project-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #f7f7ff;
    font-family: sans-serif;
    font-size: 0.82rem;
}

.project-numbers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.project-numbers div {
    padding: 12px;
    border-radius: 8px;
    background: rgba(5, 12, 25, 0.5);
    font-family: sans-serif;
}

.project-numbers strong,
.project-numbers span,
.project-extra span {
    display: block;
}

.project-numbers strong {
    color: #ffcc00;
    font-size: 1.05rem;
}

.project-numbers span {
    margin-top: 5px;
    color: #d8dcff;
    font-size: 0.8rem;
}

.project-extra {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    color: #cbd0ee;
    font-family: sans-serif;
    font-size: 0.86rem;
}

.my-project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.my-project-actions a {
    min-height: 32px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

.my-project-actions a:first-child {
    background: #2563eb;
}

.my-project-actions a:nth-child(2) {
    background: #16a34a;
}

.my-project-actions a:nth-child(3) {
    background: #ff7a00;
}

.my-projects-empty {
    max-width: 700px;
    margin: 36px auto;
    padding: 32px;
    text-align: center;
}

.my-projects-empty a {
    margin-top: 18px;
}

@media (max-width: 1100px) {
    .my-projects-stats,
    .my-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .project-page {
        display: block;
    }

    .my-projects-listing {
        padding: 24px 16px;
    }

    .my-projects-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .my-projects-stats,
    .my-projects-grid,
    .project-numbers {
        grid-template-columns: 1fr;
    }

    .my-projects-header h2,
    .my-projects-empty h2 {
        font-size: 1.45rem;
    }
}
