:root {
    --bg-primary: #0f1419;
    --bg-secondary: #161b22;
    --bg-tertiary: #1f2937;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --accent-gold: #fbbf24;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
}

body { 
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

.movie-detail { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.movie-header { 
    display: flex; 
    gap: 25px; 
    margin: 20px 0 30px 0; 
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.movie-poster { 
    flex: 0 0 300px; 
    position: relative;
    width: 300px;
}

.poster-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease;
    transform-style: preserve-3d;
    width: 100%;
    aspect-ratio: 2/3; }

.poster-container:hover {
    transform: translateY(-8px) rotateY(5deg) rotateX(5deg);
}

.movie-poster-img { 
    width: 100%; 
    height: 100%;
    object-fit: cover; border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition: all 0.4s ease;
    display: block;
}

.movie-poster-img.loading {
    opacity: 0.6;
    filter: blur(5px);
}

.movie-poster-img.loaded {
    opacity: 1;
    filter: blur(0);
}

.movie-poster-img.error {
    opacity: 0.3;
}

.poster-container::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 15px;
    right: 15px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

.no-poster { 
    width: 100%; 
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    border-radius: 16px; 
    color: var(--text-secondary);
    font-size: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 2px solid var(--border-color);
}

.breadcrumb { 
    margin-bottom: 20px; 
    font-size: 14px; 
    color: #ccc; 
}
.breadcrumb a { 
    color: var(--accent-gold); 
    text-decoration: none; 
}
.breadcrumb a:hover { 
    text-decoration: underline; 
}
.breadcrumb .separator { 
    margin: 0 8px; 
    color: #666;
}
.breadcrumb .current { 
    font-weight: bold; 
    color: var(--text-primary); 
}

.movie-info { 
    flex: 1; 
}

.title-section {
    margin-bottom: 25px;
}

.movie-title { 
    font-size: 2.2em; 
    margin: 0 0 10px 0; 
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 6px rgba(251, 191, 36, 0.3);
    line-height: 1.2;
}

.movie-subtitle { 
    font-size: 1.2em; 
    margin: 0 0 18px 0; 
    color: var(--text-secondary); 
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, #f59e0b 100%);
    border-radius: 2px;
    margin-bottom: 25px;
    box-shadow: 0 1px 6px rgba(251, 191, 36, 0.4);
}

.movie-meta {
    background: rgba(15, 20, 25, 0.6);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.meta-card.rating-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18) 0%, rgba(245, 158, 11, 0.12) 100%);
    border-color: rgba(251, 191, 36, 0.4);
}

.meta-card.rating-card:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.18) 100%);
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 
        0 20px 45px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.meta-card.rating-card .meta-icon {
    filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.5));
}

.meta-card.rating-card .meta-label {
    color: #fbbf24;
}

.rating-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-inline .stars {
    font-size: 20px;
    color: #fbbf24;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(251, 191, 36, 0.6),
        0 2px 8px rgba(251, 191, 36, 0.4);
}

.rating-inline .score {
    font-size: 16px;
    font-weight: 700;
    color: #fbbf24;
}

.meta-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 5px 20px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.related-movies-section {
    margin: 40px 0 20px;
    padding: 24px 22px 18px;
    border-radius: 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.25) 0, rgba(15,23,42,0.95) 45%, rgba(15,23,42,1) 100%);
    border: 1px solid rgba(148,163,184,0.5);
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.85),
        inset 0 1px 0 rgba(148,163,184,0.3);
}

.related-title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-title::before {
    content: '💡';
    font-size: 18px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.related-item {
    background: radial-gradient(circle at top, rgba(30,64,175,0.6) 0, rgba(15,23,42,0.95) 40%, rgba(15,23,42,1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(107,114,128,0.6);
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(15,23,42,0.85);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-item:hover {
    transform: translateY(-6px);
    border-color: rgba(96,165,250,0.9);
    box-shadow:
        0 20px 45px rgba(59,130,246,0.5),
        0 0 0 1px rgba(59,130,246,0.3);
}

.related-item .thumb {
    display: block;
    position: relative;
    overflow: hidden;
}

.related-item img.lazy-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.related-item:hover img.lazy-image {
    transform: scale(1.06);
}

.related-item .no-image-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    color: #e5e7eb;
    font-size: 16px;
}

.related-item .info {
    padding: 10px 12px 12px;
}

.related-item .title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

.related-item .title a {
    color: inherit;
    text-decoration: none;
}

.related-item .title a:hover {
    color: #fbbf24;
}

.related-item .meta-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.related-item .meta-line .year {
    padding: 1px 6px;
    border-radius: 999px;
    border: 1px solid rgba(156,163,175,0.6);
}

.related-item .meta-line .score {
    color: #f97316;
    font-weight: 600;
}

.related-item .cast {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .related-movies-section {
        margin: 28px 0 16px;
        padding: 18px 16px 12px;
    }

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .related-item img.lazy-image,
    .related-item .no-image-placeholder {
        height: 170px;
    }
}

.meta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.6s;
}

.meta-card:hover::before {
    left: 100%;
}

.meta-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22) 0%, rgba(37, 99, 235, 0.15) 100%);
    box-shadow: 
        0 20px 45px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.meta-icon {
    font-size: 36px;
    min-width: 45px;
    filter: drop-shadow(0 2px 6px rgba(59, 130, 246, 0.4));
    transition: transform 0.3s ease;
}

.meta-card:hover .meta-icon {
    transform: scale(1.15) rotate(5deg);
}

.meta-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.meta-label {
    font-size: 12px;
    color: #93c5fd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.meta-value {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

.crew-section {
    margin-bottom: 25px;
}

.crew-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 14px;
    border-left: 5px solid var(--accent-purple);
    transition: all 0.3s ease;
}

.crew-item:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateX(5px);
}

.crew-icon {
    font-size: 24px;
    min-width: 30px;
}

.crew-label {
    font-weight: 700;
    color: var(--accent-purple);
    min-width: 70px;
    font-size: 16px;
}

.crew-value {
    color: var(--text-primary);
    flex: 1;
    font-weight: 500;
}

.movie-blurb { 
    background: rgba(31, 41, 55, 0.6);
    padding: 30px; 
    border-radius: 16px; 
    border: 1px solid var(--border-color);
    margin-bottom: 35px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.movie-blurb p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.player-section { 
    margin: 50px 0; 
    background: rgba(15, 20, 25, 0.9);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.video-container { 
    width: 100%; 
    max-width: 900px; 
    margin: 0 auto 30px; 
    background: #000; 
    border-radius: 16px; 
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.player-placeholder { 
    aspect-ratio: 16/9; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    width: 100%;
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    backdrop-filter: blur(1px);
}

.play-button { 
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 100%);
    color: white; 
    padding: 25px 50px; 
    border-radius: 50px; 
    cursor: pointer; 
    font-size: 22px; 
    font-weight: 700;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.play-button:hover { 
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 20px 45px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, var(--accent-gold) 100%);
}

.play-button span {
    color: white;
    font-weight: 700;
}

.play-sources { 
    margin-top: 40px; 
}

.source-group { 
    margin-bottom: 35px; 
}

.source-group h3 { 
    color: var(--text-primary); 
    margin: 0 0 20px 0; 
    padding: 15px 25px;
    font-size: 1.4em;
    font-weight: 700;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border-left: 5px solid var(--accent-blue);
}

.episodes { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
}

.episode-btn { 
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary); 
    padding: 14px 24px; 
    border-radius: 25px; 
    cursor: pointer; 
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
}

.episode-btn:hover { 
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.episode-btn.active { 
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: white; 
    border-color: var(--accent-blue);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.movie-content { 
    margin: 50px 0;
    background: rgba(15, 20, 25, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(15px);
}

.movie-content h3 { 
    color: var(--text-primary); 
    margin: 0 0 25px 0; 
    font-size: 1.8em;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 15px;
    display: inline-block;
}

.content-text { 
    line-height: 1.9; 
    color: var(--text-secondary);
    font-size: 16px;
}

.back-to-list { 
    text-align: center; 
    margin: 60px 0; 
}

.back-to-list .button { 
    background: linear-gradient(135deg, var(--accent-purple) 0%, #7c3aed 100%);
    color: white; 
    padding: 18px 45px; 
    border-radius: 50px; 
    text-decoration: none; 
    transition: all 0.4s ease;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
    display: inline-block;
}

.back-to-list .button:hover { 
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.5);
    color: white;
    background: linear-gradient(135deg, #7c3aed 0%, var(--accent-purple) 100%);
}

.lazy-image {
    transition: opacity 0.4s ease-in-out;
    background-color: var(--bg-tertiary);
}

.lazy-image.loading {
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

.lazy-image.loaded {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.lazy-image[data-src] {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 2s infinite;
}

@keyframes loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@media (max-width: 768px) {
    .movie-detail { 
        padding: 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .movie-header { 
        flex-direction: column; 
        padding: 20px;
        gap: 20px;
    }
    
    .movie-poster { 
        flex: none; 
        align-self: center;
        width: 200px;
    }
    
    .poster-container {
        width: 100%;
        aspect-ratio: 2/3;
    }
    
    .movie-poster-img,
    .no-poster {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .movie-title { 
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .rating-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .rating-label {
        font-size: 14px;
    }
    
    .rating {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .stars {
        font-size: 18px;
    }
    
    .rating-score {
        font-size: 1.8rem;
    }
    
    .meta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .meta-card {
        padding: 15px;
    }
    
    .meta-value {
        font-size: 14px;
    }
    
    .player-section,
    .movie-content {
        padding: 20px;
    }
    
    .episodes { 
        justify-content: center;
        gap: 8px;
    }
    
    .episode-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .player-placeholder {
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .play-button {
        padding: 15px 30px;
        font-size: 16px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0;
        flex-shrink: 0;
    }
    
    .breadcrumb {
        font-size: 12px;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .back-to-list {
        padding: 15px;
    }
    
    .back-to-list .button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .movie-detail {
        padding: 10px;
    }
    
    .movie-header {
        padding: 15px;
    }
    
    .movie-poster {
        width: 150px;
    }
    
    .poster-container {
        width: 100%;
        aspect-ratio: 2/3;
    }
    
    .movie-poster-img,
    .no-poster {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .movie-title {
        font-size: 1.2rem;
    }
    
    .rating-score {
        font-size: 1.5rem;
    }
    
    .stars {
        font-size: 16px;
    }
    
    .player-placeholder {
        height: 200px;
    }
    
    .play-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .meta-card {
        padding: 12px;
    }
    
    .meta-icon {
        font-size: 20px;
    }
    
    .meta-label {
        font-size: 11px;
    }
    
    .meta-value {
        font-size: 13px;
    }
    
    .crew-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .crew-label {
        min-width: auto;
        font-size: 12px;
    }
    
    .crew-value {
        font-size: 13px;
    }
    
    .episode-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

* {
    max-width: 100%;
}

.movie-detail,
.movie-header,
.movie-info,
.player-section,
.movie-content {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.movie-backdrop {
    width: 100%;
    overflow: hidden;
}

.backdrop-image {
    width: 100%;
}

.author-box {
    margin: 30px 0;
    background: rgba(31, 41, 55, 0.6);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.author-box-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    transition: transform 0.3s ease;
}

.author-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #f5a623);
    border: 3px solid var(--accent-gold);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.author-avatar-placeholder .avatar-initial {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a2e;
    text-transform: uppercase;
}

.author-avatar-placeholder:hover {
    transform: scale(1.05);
}

.author-avatar:hover img {
    transform: scale(1.05);
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-name:hover {
    color: var(--accent-gold);
}

.author-job {
    font-size: 13px;
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.15);
    padding: 3px 10px;
    border-radius: 12px;
}

.author-bio {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-link {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.author-link:hover {
    color: #fcd34d;
    transform: translateX(3px);
}

@media (max-width: 600px) {
    .author-box-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-meta {
        justify-content: center;
    }
    
    .author-avatar img {
        width: 60px;
        height: 60px;
    }
}
