.actor-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.actor-photo {
    flex-shrink: 0;
}

.actor-photo img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.actor-photo .no-photo {
    width: 200px;
    height: 300px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #adb5bd;
    font-size: 14px;
}

.actor-info {
    flex: 1;
}

.actor-info h1 {
    margin: 0 0 10px;
    font-size: 28px;
    color: #2c3e50;
}

.actor-dates {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 14px;
}

.actor-biography {
    line-height: 1.8;
    color: #333;
}

/* .actor-movies h2 {
	font-size: 22px;
	color: #2c3e50;
	border-bottom: 2px solid #e9ecef;
	padding-bottom: 10px;
} */

.actor-movies ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 0;
}

.actor-movies ul li {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    transition: 0.2s;
}

.actor-movies ul li:hover {
    background: #e9ecef;
}

.actor-movies ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
}

.actor-movies ul li a:hover {
    color: #3498db;
}

.actor-movies ul li .role {
    color: #6c757d;
    font-size: 13px;
}

@media (max-width: 600px) {
    .actor-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .actor-photo img {
        width: 150px;
    }
}

.actors-header {
    margin-bottom: 30px;
}

.actors-header h1 {
    margin: 0;
}

.actors-grid {
    display: flex;
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0; */
}

.actor-card {
    display: flex;
    width: 23.5%;
    background: var(--color-bg);
    border-radius: 6px;
    border: 0.5px solid var(--color-border);
}

.actor-card a {
    width: 100%;
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.actor-img {
    display: flex;
}

.actor-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 6px;
}

.actor-card:hover {
    transform: translateY(-4px);
}

.actor-card .photo {
    width: 80px;
    height: 120px;
    border-radius: 5px 0px 0px 5px;
    object-fit: cover;
    background: url(../images/no-poster.svg) no-repeat center / 100% 100%;
    vertical-align: bottom;
}

.actor-card .name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.actor-card .name:hover {
    color: #3498db;
}

/* .actor-card .info {
    font-size: 13px;
    color: #6c757d;
    margin-top: 5px;
} */

.info-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.info-name-en {
    font-size: 12px;

    color: var(--color-text-secondary);
}

.info-career {
    font-size: 12px;
    color: #fff;
}

.info-movies-count {
    display: flex;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
}

/* .info-movies-text {} */
.info-movies-quantity {
    background: #151b20;
    padding: 2px 12px;
    border-radius: 6px 0px 6px 0px;
}

.load-more-wrap {
    text-align: center;
    margin: 30px 0;
}

.load-more-btn {
    padding: 12px 40px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.load-more-btn:hover {
    background: #2980b9;
}

.load-more-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.load-more-btn .spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

.total-count {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-top: 10px;
}

.no-actors {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

.dark-theme .actor-card {
    background: #2d2d2d;
}

.dark-theme .actor-card .name {
    color: #e9ecef;
}

.dark-theme .actor-card .info {
    color: #adb5bd;
}

.dark-theme .load-more-btn {
    background: #2980b9;
}

.dark-theme .load-more-btn:hover {
    background: #1a6d9e;
}

.back {
    text-decoration: none;
    color: #fff;
    padding: 0px 6px;
    width: auto;
    height: 44px;
    margin: 16px 6px;
    cursor: pointer;
    display: flex;
    border-radius: 30px;
    border: 1px solid var(--color-text-secondary);
}

.back:after {
    content: "";
    background-color: #20282d;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    opacity: 0;
    visibility: hidden;
    margin-top: -60px;
    -webkit-transition: margin-top .2s ease;
    transition: margin-top 0.2s ease;
}

.back_box {
    background-color: aliceblue;
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    color: #a1a1a1;
    align-items: center;
    gap: 9px;
    font-weight: 500;
}