:root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #666666;
    --card-bg: #222;
    --header-bg: #1a1a1a;
    --card-size: 220px;
    --base-font-size: 1.2rem;
    --gradient-primary: linear-gradient(135deg, #666666 0%, #444444 100%);
    --gradient-secondary: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    --gradient-glow: linear-gradient(135deg, #666666 0%, #999999 50%, #666666 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 255, 255, 0.2);
    --border-radius: 12px;
    --border-radius-large: 16px;
    --border-radius-xl: 20px;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Blist';
    src: url('../fonts/blist.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ONPP';
    src: url('../fonts/onpp.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: url('../images/background.jpeg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    padding-top: 40px;
    font-family: 'Helvetica', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: var(--base-font-size);
    line-height: 1.6;
    letter-spacing: 0.02em;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.6) 100%);
    z-index: -1;
}

header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-content h1 {
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.release-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 4rem 2rem;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.releases-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    z-index: -1;
}

.release-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
}

.release-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.release-card:hover .release-image::before {
    opacity: 1;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.release-card:hover .release-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.catalog-number {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    margin: 0;
    line-height: 1;
    z-index: 2;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    font-family: 'ONPP', sans-serif;
}

.release-card:hover .catalog-number {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.release-card {
    position: relative;
    width: var(--card-size);
    height: var(--card-size);
    background: rgba(34, 34, 34, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-medium);
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.release-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-heavy), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.5);
}

.release-card:hover::before {
    opacity: 1;
}

.artist-name {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    text-align: right;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.release-title {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    text-align: right;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Release detail page styles */
.release-header {
    max-width: 1000px;
    margin: 5rem auto 4rem;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.release-header::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.release-header .release-title {
    font-size: 4.5rem;
    margin: 0;
    color: rgba(240, 240, 240, 0.9);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    line-height: 1.1;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Blist', serif;
}

.release-header .artist-name {
    font-size: 2.8rem;
    margin: 1.5rem 0 0;
    color: rgba(240, 240, 240, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
    letter-spacing: 0.05em;
    font-family: 'Blist', serif;
}

.release-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-family: 'ONPP', sans-serif;
}

.release-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.release-description::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.release-description p {
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'ONPP', sans-serif;
    color: rgba(255, 255, 255, 0.7);
}

.release-description p:last-child {
    margin-bottom: 0;
}

.release-description a {
    color: rgba(255, 105, 180, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.release-description a:hover {
    color: rgba(255, 105, 180, 1);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
    transform: translateY(-1px);
}

.stream-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    position: relative;
}

.stream-section::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.stream-section h3 {
    color: rgba(240, 240, 240, 0.9);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.05em;
    font-family: 'Blist', serif;
}

.embeds-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.embeds-container iframe {
    width: 100%;
    max-width: 600px;
    border-radius: var(--border-radius-large);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.embeds-container iframe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 1;
}

.embeds-container iframe:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-heavy), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.contact-section h3 {
    color: rgba(240, 240, 240, 0.9);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.05em;
    font-family: 'Blist', serif;
}

.bottom-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 4rem auto 2rem;
    display: block;
}

.bottom-image img {
    width: 100%;
    height: auto;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'ONPP', sans-serif;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-button:hover::before {
    left: 100%;
}

.social-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #444444 0%, #2a2a2a 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.back-button {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-family: 'ONPP', sans-serif;
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.back-button:hover::before {
    left: 100%;
}

.back-button:hover {
    background: linear-gradient(135deg, #444444 0%, #2a2a2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-image {
    height: 40px;
    width: auto;
    margin-left: auto;
}

@media (min-width: 1400px) {
    .releases-grid {
        grid-template-columns: repeat(6, 220px);
        max-width: 1500px;
    }
}

@media (max-width: 1399px) and (min-width: 1100px) {
    .releases-grid {
        grid-template-columns: repeat(5, 220px);
        max-width: 1200px;
    }
}

@media (max-width: 1099px) and (min-width: 768px) {
    .releases-grid {
        grid-template-columns: repeat(2, 220px);
        max-width: 600px;
    }

    .release-header .release-title {
        font-size: 3rem;
    }

    .release-header .artist-name {
        font-size: 2rem;
    }

    .release-description,
    .stream-section,
    .contact-section {
        padding: 2rem;
        margin: 3rem auto;
    }

    .stream-section h3,
    .contact-section h3 {
        font-size: 1.8rem;
    }

    .embeds-container iframe {
        max-width: 100%;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .bottom-image {
        max-width: 90%;
        margin: 3rem auto 1.5rem;
    }

    header {
        background-size: 120px auto;
    }

    .header-image {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .releases-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 2.5rem;
        padding: 3rem 1rem;
        max-width: 400px;
    }

    .release-header .release-title {
        font-size: 3rem;
    }

    .release-header .artist-name {
        font-size: 2rem;
    }

    .release-description,
    .stream-section,
    .contact-section {
        padding: 2rem;
        margin: 3rem auto;
    }

    .stream-section h3,
    .contact-section h3 {
        font-size: 1.8rem;
    }

    .embeds-container iframe {
        max-width: 100%;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .header-image {
        height: 30px;
    }
}

.photo-gallery-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-gallery-section::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.photo-gallery-section h3 {
    color: rgba(240, 240, 240, 0.9);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.05em;
    font-family: 'Blist', serif;
}

.photo-gallery-thumbnails-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: calc(4 * 150px + 3 * 1rem + 2 * 40px + 2 * 1rem);
    margin: 0 auto;
    width: fit-content;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .photo-gallery-thumbnails-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0 0.5rem;
        gap: 0.5rem;
        justify-content: center;
    }
}

.photo-gallery-thumbnails-container {
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
}

.photo-gallery-thumbnails {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    transition: transform 0.3s ease;
    width: max-content;
    transform: translateX(0px);
}

.photo-gallery-thumbnails-nav {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    user-select: none;
    flex-shrink: 0;
}

.photo-gallery-thumbnails-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.photo-gallery-thumbnails-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.photo-gallery-thumbnail {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 768px) {
    .photo-gallery-thumbnail {
        width: calc((100vw - 120px) / 2);
        max-width: 120px;
        height: calc((100vw - 120px) / 2);
        max-height: 120px;
    }
}

@media (max-width: 480px) {
    .photo-gallery-thumbnail {
        width: calc((100vw - 100px) / 2);
        max-width: 100px;
        height: calc((100vw - 100px) / 2);
        max-height: 100px;
    }
}

.photo-gallery-thumbnail:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-medium);
}

.photo-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-gallery-fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.photo-gallery-fullscreen.active {
    display: flex;
}

.photo-gallery-fullscreen-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-gallery-fullscreen-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
}

.photo-gallery-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
    user-select: none;
}

.photo-gallery-nav-button:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.photo-gallery-nav-button.prev {
    left: 2rem;
}

.photo-gallery-nav-button.next {
    right: 2rem;
}

.photo-gallery-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
    user-select: none;
}

.photo-gallery-close:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.photo-gallery-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'ONPP', sans-serif;
}

@media (max-width: 768px) {
    .photo-gallery-thumbnails-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .photo-gallery-nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .photo-gallery-nav-button.prev {
        left: 1rem;
    }

    .photo-gallery-nav-button.next {
        right: 1rem;
    }

    .photo-gallery-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .photo-gallery-counter {
        bottom: 1rem;
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
} 