:root {
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --gold: #39ff14;
    --gold-hover: #32e011;
    --red: #c0392b;
    --red-hover: #e74c3c;
    --input-bg: #111111;
    --border-color: #333;
    --accent-glow: rgba(57, 255, 20, 0.5);
}

h1, h2, h3, h4, .logo, .card-name, .btn, .ticker-label, .city-name, .hero h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gold-hover);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background: var(--bg-card);
    border-bottom: 2px solid var(--gold);
    padding: 15px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* User Actions */
.btn {
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-full {
    width: 100%;
    margin-top: auto;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: var(--gold-hover);
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-outline {
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Ticker */
.ticker-wrap {
    background: #000;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid #222;
    padding: 12px 0;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    /* Ensure container fits */
}

.ticker-wrap:hover .ticker-scroll {
    animation-play-state: paused;
}

.ticker {
    display: flex;
    width: max-content;
}

.ticker-scroll {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: ticker-loop 50s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 4rem;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-right: 1px solid #333;
}

.ticker-label {
    background: var(--gold);
    color: #000;
    padding: 4px 12px;
    font-weight: 800;
    font-size: 13px;
    margin-right: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.leader-item .ticker-count {
    color: var(--gold);
    font-size: 14px;
    margin-left: 5px;
}

.leader-ticker .ticker-item {
    border-right: 1px solid #3d3416;
}

.ticker-item:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.ticker-avatar {
    width: 60px;
    height: 60px;
    border-radius: 2px;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.ticker-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 2px;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    font-size: 24px;
}

.ticker-city {
    color: var(--gold);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.ticker-name {
    font-weight: 700;
}

.ticker-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.ticker-top {
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.ticker-price {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    opacity: 0.9;
}

.card-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 8px 0;
}

@keyframes ticker-loop {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    .ticker-wrap {
        padding: 10px 0;
    }

    .ticker-item {
        padding: 0 2rem;
        font-size: 16px;
        gap: 10px;
    }

    .ticker-avatar,
    .ticker-avatar-placeholder {
        width: 48px;
        height: 48px;
    }

    /* Header Mobile alignment */
    header {
        padding: 15px 0;
    }

    .nav-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .logo {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .main-nav ul {
        justify-content: center;
        gap: 15px;
    }

    .user-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 5px;
    }

    .user-actions .btn {
        width: 100%;
        text-align: center;
        padding: 12px 5px;
        font-size: 13px;
        margin: 0 !important;
    }
}

/* Hero / City Selection */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at center, #2a2a2a 0%, #121212 100%);
}

.hero h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.city-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.city-card {
    background: var(--bg-card);
    padding: 20px 40px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 18px;
    transition: transform 0.2s, border-color 0.2s;
}

.city-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.city-count {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: normal;
}

/* Forms */
.auth-box {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 2px;
    border: 1px solid var(--border-color);
}

/* Premium Forms */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #bbb;
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: #111111;
    border: 1px solid #444;
    color: #fff;
    border-radius: 2px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    background: #1a1a1a;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Custom Checkboxes & Radios */
input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Dashboard Grids */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.premium-card {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.premium-card h3 {
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

/* Service Items */
.service-item {
    background: #111111;
    padding: 15px;
    border-radius: 2px;
    border: 1px solid #333;
    transition: border-color 0.3s;
}

.service-item:hover {
    border-color: #555;
}

.service-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.service-item span {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
}

.service-item input[type="number"] {
    background: #1a1a1a !important;
    border: 1px solid #444;
    color: #fff !important;
    font-size: 14px;
    padding: 8px;
    margin-top: 5px;
}

.service-item input[type="number"]:focus {
    border-color: var(--gold);
}

/* Profile Cards Positioning & Layout */
.profile-card {
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #333;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--accent-glow);
}

.card-img-wrap {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.profile-card:hover .card-img {
    transform: scale(1.05);
}

.card-verified {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2ecc71;
    color: #fff;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-vip {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: #000;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2;
}

.profile-card-content {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, #1e1e1e 0%, #161616 100%);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.card-name {
    margin: 0;
    font-size: 17px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1.2;
}

.card-name a {
    color: var(--gold);
    text-decoration: none;
}

.card-age {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: -2px;
}

.card-meta i,
.card-meta span.icon {
    color: var(--gold);
    font-size: 14px;
}

.card-price {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.card-price::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin-top: 6px;
    border-radius: 1px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.photo-item {
    aspect-ratio: 1;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.photo-item:hover {
    border-color: var(--gold);
}

.photo-item.photo-item-uploading {
    border: 2px dashed var(--gold);
    opacity: 0.8;
}

.photo-upload-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border: 3px solid rgba(57, 255, 20, 0.3);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(192, 57, 43, 0.9);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    border: none;
    z-index: 5;
    transition: all 0.2s;
}

.photo-delete:hover {
    background: #e74c3c;
    transform: scale(1.1);
}

.photo-add-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #252525;
    color: #aaa;
    border: 2px dashed #444;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 1;
}

.photo-add-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #2a2a2a;
}

/* Upload Overlay */
.upload-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.upload-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(57, 255, 20, 0.1);
    border-left-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Favorites System */
.btn-fav {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    font-size: 18px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-fav:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--gold);
}

.card-views {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.card-views .icon {
    font-size: 14px;
}

.btn-fav.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.btn-fav.active i,
.btn-fav.active span {
    animation: heartPulse 0.3s ease;
}

@keyframes heartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.fav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.fav-count {
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    position: absolute;
    top: -5px;
    right: -10px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
}

.fav-count.active {
    opacity: 1;
    transform: scale(1);
}

.profile-contact-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    font-size: 1.1rem;
    padding: 12px 25px;
}

.profile-fav-wrap {
    margin-top: 15px;
}

.btn-fav-large {
    position: relative;
    bottom: auto;
    right: auto;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #222;
    border: 1px solid #444;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-fav-large:hover {
    border-color: var(--gold);
}

.btn-fav-large.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Profile Page */
.profile-page {
    margin-top: 30px;
}

.breadcrumb {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.profile-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.profile-interactions-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.premium-form {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .profile-layout {
        flex-direction: column;
        gap: 30px;
    }

    .profile-interactions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    /* Header Mobile overhaul */
    header {
        padding: 10px 0;
    }

    .nav-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .main-nav ul {
        gap: 15px;
    }

    .main-nav a {
        font-size: 14px;
        padding: 5px 0;
    }

    .user-actions {
        display: flex;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }

    .user-actions .btn {
        flex: 1;
        padding: 10px 5px;
        font-size: 12px;
        white-space: nowrap;
    }

    /* Catalog Mobile Layout */
    .catalog-container {
        flex-direction: column !important;
        gap: 20px !important;
    }

    aside {
        width: 100% !important;
        box-sizing: border-box;
    }

    /* Grid Adjustments */
    .profiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
        gap: 15px !important;
    }

    .card-img-wrap {
        height: 220px !important;
    }

    .card-name {
        font-size: 16px !important;
    }

    .card-age {
        font-size: 14px !important;
    }

    /* Dashboard grids */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-card {
        padding: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .city-grid {
        gap: 8px;
    }

    /* Base city-card mobile fallback */
    .city-card {
        padding: 12px 15px;
        font-size: 14px;
        text-align: center;
        box-sizing: border-box;
    }

    .city-card:hover {
        transform: none;
    }

    /* Popular cities: horizontal swipe */
    .popular-cities .city-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        gap: 10px;
        padding-bottom: 10px;
        margin-top: 15px;
        scrollbar-width: none;
        /* Firefox */
    }

    .popular-cities .city-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .popular-cities .city-card {
        min-width: 150px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 12px 20px;
        font-size: 15px;
        text-align: center;
    }

    /* Accordion cities: 2-column grid */
    .all-countries-accordion .city-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .all-countries-accordion .city-card {
        padding: 10px 12px;
        font-size: 14px;
        text-align: center;
        width: auto;
    }

    /* Profile Mobile Fixes */
    .profile-contact-actions {
        flex-direction: column;
        gap: 10px;
    }

    .profile-contact-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .profile-fav-wrap {
        margin-top: 10px;
    }

    .btn-fav-large {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    user-select: none;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    transition: opacity 0.2s ease;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10003;
    transition: all 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .lightbox-nav {
        display: none;
        /* Swipe only on small mobile */
    }

    .lightbox-counter {
        bottom: 20px;
    }
}

.photo-main-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 3px;
    pointer-events: none;
    z-index: 5;
}

.photo-set-main {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
    padding: 0;
    z-index: 6;
}

.photo-set-main:hover {
    background: var(--gold);
    color: #000;
    transform: scale(1.1);
}