/* Base Resets & Variables */
:root {
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --text-muted: #999999;
    --accent-color: #ff5500; /* SoundCloud-inspired vibrant orange */
    --accent-hover: #ff7733;
    --card-bg: #1a1a1a;
    --glass-bg: rgba(30, 30, 30, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
    --modal-bg: rgba(30, 30, 30, 0.65);
    --modal-text-color: #ffffff;
    
    /* Custom Theme */
    --primary-color: #fff;
    --secondary-color: #999;
    --font-primary-color: #fff;
    --link-standard-color: #699fff;
    --link-standard-text-decoration: none;
    --link-standard-hover-text-decoration: underline;
    /* Primary Typography */
    --font-main: "Montserrat", sans-serif;
    --typography-root-font-size: 0.875em;
    --typography-heading4-font: 600 1rem/1.4285714285714286rem var(--font-main);
    --typography-body-font: 400 1rem/1.4285714285714286rem var(--font-main);
    --spacing-1x: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--typography-root-font-size);
}

body {
    font: var(--typography-body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font: var(--typography-heading4-font);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Segoe UI", Roboto, "Lucida Grande", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    color: var(--font-primary-color);
}

.custom-logo {
    max-height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--link-standard-color);
    text-decoration: var(--link-standard-text-decoration);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.nav-links a:hover {
    text-decoration: var(--link-standard-hover-text-decoration);
}

.nav-links a.active {
    color: var(--font-primary-color);
}

/* Portfolio Section (SoundCloud Layout) */
.portfolio-section {
    padding: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Horizontal Carousel */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.carousel-arrow {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: background-color 0.3s, transform 0.2s;
    flex-shrink: 0;
    padding: 0;
    padding-bottom: 3px; /* Fix vertical off-centering of the glyph */
    line-height: 1;
}

.carousel-arrow:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.left-arrow {
    margin-right: -20px;
}

.right-arrow {
    margin-left: -20px;
}

.carousel-container {
    width: 100%;
    /* Hide scrollbar but keep functionality */
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

/* Project Cards */
.project-card {
    width: 280px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.project-card:hover,
.project-card:focus {
    transform: translateY(-5px);
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--card-bg);
    margin-bottom: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

/* About Section (SoundCloud Artist Layout) */
.about-section {
    padding: 40px;
    max-width: 1600px;
    margin: 0 auto 80px;
}

.artist-header {
    position: relative;
    margin-bottom: 20px;
}

.artist-banner {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    background: #111;
}

.artist-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 20px;
    pointer-events: none;
}

.artist-info > * {
    pointer-events: auto;
}

.artist-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #333;
}

.artist-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 0;
}

.sc-name-row {
    background-color: rgba(17, 17, 17, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
}

.artist-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    text-shadow: none;
    line-height: 1;
}

.verified-badge {
    width: 18px;
    height: 18px;
}

.artist-title {
    background-color: rgba(30, 30, 30, 0.85);
    color: #ccc;
    font-size: 0.95rem;
    padding: 4px 8px;
    margin: 0;
    font-weight: 600;
    line-height: 1;
}

.sc-pro-badge {
    background-color: rgba(30, 30, 30, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
}

.sc-pro-badge span {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
}

.pro-star {
    width: 12px;
    height: 12px;
}

.artist-bio {
    margin-top: 80px;
    padding: 0 40px;
    max-width: 800px;
    color: #cccccc;
    font: var(--typography-body-font);
    font-size: 1.1rem;
}

/* Full Screen Portfolio Section */
.full-screen-portfolio {
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Break out of any container padding */
    display: flex;
    flex-direction: column;
    --gallery-opacity: 0;
    --gallery-scale: 0.92;
    opacity: var(--gallery-opacity);
    transform: scale(var(--gallery-scale));
    transform-origin: top center;
    will-change: opacity, transform;
}

.full-screen-item {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.collage-grid {
    display: flex;
    width: 100vw;
    height: 100vh;
    background: var(--bg-color);
}

.collage-grid img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.collage-grid img:hover {
    transform: scale(1.03);
    z-index: 2;
}

.collage-2 img {
    flex: 1;
}

.collage-3 img {
    flex: 1;
}

.collage-asym img:first-child {
    flex: 2;
}

.collage-asym img:last-child {
    flex: 1;
}

/* Bouncing Arrow Indicators */
.bounce-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 0;
    z-index: 10;
}

.overlay-bounce {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0;
    pointer-events: none;
}

.bounce-indicator a {
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.bounce-indicator a:hover {
    background: var(--accent-color);
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* Pure Fade-In Animation Classes with Blur */
.fade-in-element {
    opacity: 0;
    filter: blur(20px);
    /* Make opacity fast, blur slow so it unblurs while fully visible */
    transition: opacity 0.4s ease-out, filter 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-element.visible {
    opacity: 1;
    filter: blur(0);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Window (OS Application Style) */
.modal-window {
    width: 80%;
    max-width: 1200px;
    height: 80vh;
    min-height: 500px;
    background: var(--modal-bg, var(--glass-bg));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-window {
    transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s, transform 0.2s;
}

.modal-close:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

/* Article Layout for Modal */
.modal-content.article-layout {
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.modal-content.article-layout::-webkit-scrollbar {
    width: 6px;
}
.modal-content.article-layout::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.article-hero {
    width: 100%;
    height: 400px;
    background-color: #000;
}

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

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.article-body h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--modal-text-color, #ffffff);
}

.article-body p {
    color: var(--modal-text-color, #cccccc);
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-image-container {
    width: 100%;
    margin: 40px 0;
    position: relative;
}

.article-image-container .blank-slide {
    width: 100%;
    aspect-ratio: 16 / 9; /* Wider aspect ratio for article images */
    background: linear-gradient(180deg, #1f1f1f, #2a2a2a);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    cursor: pointer;
}

.article-image-container img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: block;
}

.article-image-container .editor-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.article-image-container .editor-img-wrapper img,
.article-image-container .editor-img-wrapper .blank-slide {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
}

.article-image-container .blank-slide::after {
    content: "Image Placeholder";
    color: #666;
    font-size: 1.2rem;
    font-weight: 600;
}

.delete-block-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1000;
    background: #ff3b30;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    transition: transform 0.2s, background 0.2s;
}

.delete-block-btn:hover {
    transform: scale(1.15);
    background: #d32f2f;
}

.article-body p,
.article-body .detail-item {
    position: relative;
}

.delete-text-btn {
    position: absolute;
    top: -8px;
    right: -10px;
    z-index: 10;
    background: #ff3b30;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.delete-text-btn:hover {
    opacity: 1;
    background: #d32f2f;
    transform: scale(1.15);
}

.delete-detail-btn {
    position: absolute;
    top: -6px;
    right: -8px;
    z-index: 10;
    background: #ff3b30;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

.delete-detail-btn:hover {
    opacity: 1;
    background: #d32f2f;
    transform: scale(1.15);
}

.addBlockWrapper {
    margin: 40px auto 20px auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.project-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.detail-value {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .article-hero {
        height: 250px;
    }
    .article-body h2 {
        font-size: 2rem;
    }
    
    .modal-window {
        width: 90%;
        height: 85vh;
    }
    
    .project-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .artist-info {
        flex-direction: column;
        align-items: flex-start;
        left: 20px;
        bottom: -90px;
    }
    .artist-bio {
        margin-top: 120px;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .portfolio-section, .about-section {
        padding: 20px;
    }
    .project-card {
        width: 220px;
    }
}

/* =========================================
   EDITOR MODE STYLES
   ========================================= */
#editor-toolbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    z-index: 10000;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-family: 'Overpass', sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

body.edit-mode {
    padding-top: 60px !important;
}

body.edit-mode #editor-toolbar {
    display: flex;
}

.editor-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 10px;
    transition: opacity 0.2s;
}

.editor-btn:hover {
    opacity: 0.8;
}

.editor-btn.primary {
    background: #4CAF50;
    color: white;
}

.editor-btn.secondary {
    background: #f44336;
    color: white;
}

/* Editable Text */
.editable-text {
    border: 1px dashed transparent;
    transition: border 0.2s, background 0.2s;
    min-height: 1em;
}

.editable-text:hover, .editable-text:focus {
    border: 1px dashed #4CAF50;
    outline: none;
    background: rgba(76, 175, 80, 0.1);
}

/* Editable Images */
.editor-img-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.editor-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 100;
}

.editor-img-wrapper:hover .editor-img-overlay {
    opacity: 1;
}

.change-img-btn, .remove-img-btn, .crop-img-btn, .open-modal-btn {
    padding: 8px 18px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: transform 0.2s, background 0.2s;
}

.open-modal-btn {
    background: #28a745 !important;
    color: #fff !important;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.open-modal-btn:hover {
    background: #218838 !important;
    transform: scale(1.05);
}

.change-img-btn:hover, .remove-img-btn:hover, .crop-img-btn:hover {
    transform: scale(1.05);
}

.change-img-btn {
    background: #fff;
    color: #111;
}

.remove-img-btn {
    background: #f44336;
    color: #fff;
}

/* --- Artist Header (Banner & Avatar) Editor Controls Separation --- */
.artist-header {
    position: relative !important;
}

.artist-info {
    z-index: 20 !important;
}

/* 1. Profile Picture (Avatar) strictly confined to the circle */
.artist-info .editor-img-wrapper {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 200px !important;
    max-height: 200px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 30 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
}

.artist-info .editor-img-wrapper .artist-avatar {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
}

.artist-info .editor-img-wrapper .editor-img-overlay {
    border-radius: 50% !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 35 !important;
    background: rgba(0, 0, 0, 0.75) !important;
    gap: 8px !important;
    justify-content: center !important;
    align-items: center !important;
}

.artist-info .editor-img-wrapper .editor-img-overlay button {
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
    border-radius: 14px !important;
}

/* 2. Banner overlay placed in top-right corner, non-blocking */
.artist-header > .editor-img-wrapper {
    width: 100% !important;
    height: 280px !important;
    position: relative !important;
    z-index: 1 !important;
}

.artist-header > .editor-img-wrapper .editor-img-overlay {
    background: transparent !important;
    pointer-events: none !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding: 20px 30px !important;
    gap: 12px !important;
    z-index: 15 !important;
}

.artist-header > .editor-img-wrapper .editor-img-overlay button {
    pointer-events: auto !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6) !important;
}

/* Crop Modal */
.editor-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.editor-modal-content {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

.editor-modal-content h3 {
    margin-top: 0;
    color: #111;
    font-family: 'Overpass', sans-serif;
    margin-bottom: 20px;
}

.crop-container {
    width: 100%;
    height: 60vh;
    background: #eee;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.crop-container img {
    max-width: 100%;
    max-height: 100%;
}

/* Asset Selector Grid */
.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    max-height: 60vh;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.asset-grid-item {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.asset-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-color: #007bff;
}

.crop-img-btn {
    padding: 8px 20px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: transform 0.2s;
    background: #007bff;
    color: #fff;
}

.crop-img-btn:hover {
    transform: scale(1.05);
}
