:root {
    --primary-color: #0a1931;
    --secondary-color: #152a5e;
    --accent-color: #2d46b9;
    --hover-color: #3a56d4;
    --text-color: #ffffff;
    --bg-color: #050a1a;
    --card-bg: #152a5e;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-gradient: linear-gradient(135deg, #0a1931 0%, #152a5e 100%);
    --footer-gradient: linear-gradient(135deg, #0a1931 0%, #152a5e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    background-image: linear-gradient(135deg, #050a1a 0%, #0a1931 100%);
	overflow-x: hidden;
}

.site-logo {
    height: 95px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.new-m-aprill-logo:hover .site-logo {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

@media (max-width: 992px) {
    .site-logo {
        width: 250px;
        height: 78px;
    }
}

@media (max-width: 768px) {
    .site-logo {
        width: 220px;
        height: 68px;
    }
}

@media (max-width: 600px) {
    .site-logo {
        width: 200px;
        height: 62px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        width: 180px;
        height: 56px;
    }
}

@media (max-width: 360px) {
    .site-logo {
        width: 160px;
        height: 50px;
    }
}

.top-banner {
    background: var(--header-gradient);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: 0 2px 10px rgba(21, 42, 94, 0.3);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

header {
    background-color: var(--primary-color);
    padding: 0.8rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(21, 42, 94, 0.4);
}

.new-m-aprill-header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.new-m-aprill-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: transparent;
    transition: var(--transition);
    max-width: 330px;
}

.new-m-aprill-logo:hover {
    transform: translateY(-1px);
    background: transparent;
}

.site-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.6rem;
    align-items: center;
}

.nav-item {
    margin: 0.1rem 0;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(45, 70, 185, 0.2);
    border: 1px solid rgba(45, 70, 185, 0.3);
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 1px 6px rgba(21, 42, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-link::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.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(45, 70, 185, 0.3);
    color: #e0e0e0;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(45, 70, 185, 0.3);
    border-color: rgba(45, 70, 185, 0.5);
}

.nav-link.active {
    background: rgba(45, 70, 185, 0.4);
    color: #ffffff;
    font-weight: 600;
    border-color: rgba(45, 70, 185, 0.6);
    box-shadow: 0 2px 10px rgba(45, 70, 185, 0.4);
}

.nav-link i {
    margin-left: 5px;
    font-size: 0.75rem;
}

.language-dropdown {
    position: relative;
    margin-left: 0.4rem;
}

.language-btn {
    background: rgba(45, 70, 185, 0.2);
    border: 1px solid rgba(45, 70, 185, 0.3);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.5rem 0.7rem;
    border-radius: 4px;
    transition: var(--transition);
    height: 36px;
    width: 50px;
    min-width: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    box-shadow: 0 1px 6px rgba(21, 42, 94, 0.2);
}

.language-btn:hover {
    background: rgba(45, 70, 185, 0.3);
    color: #e0e0e0;
    transform: translateY(-1px);
    border-color: rgba(45, 70, 185, 0.5);
}

.language-btn i {
    margin-left: 3px;
    font-size: 0.65rem;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #152a5e 0%, #0a1931 100%);
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(21, 42, 94, 0.3);
    width: 100px;
    max-height: 260px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    padding: 0.6rem;
    grid-template-columns: 1fr;
    gap: 0.3rem;
    border: 1px solid rgba(45, 70, 185, 0.4);
    margin-top: 0.3rem;
}

.language-menu.show {
    display: grid;
}

.language-item {
    padding: 0;
}

.language-link {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    text-align: center;
    border-radius: 2px;
    background: rgba(45, 70, 185, 0.1);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    border: 1px solid rgba(45, 70, 185, 0.2);
}

.language-link:hover {
    background: rgba(45, 70, 185, 0.2);
    color: #e0e0e0;
    transform: translateX(-1px);
    border-color: rgba(45, 70, 185, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: rgba(45, 70, 185, 0.3);
    border: 1px solid rgba(45, 70, 185, 0.4);
    color: #e0e0e0;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 600;
    margin-top: 0.3rem;
    height: 36px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 1px 6px rgba(45, 70, 185, 0.3);
}

.mobile-menu-btn:hover {
    background: rgba(45, 70, 185, 0.4);
    transform: translateY(-1px);
}

main {
    margin-top: 120px;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(45, 70, 185, 0.5);
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    padding: 1.2rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(21, 42, 94, 0.2);
}

h2 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1.2rem;
    color: #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1b4571 0%, #0a1931 100%);
    padding: 1rem 1.2rem;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(21, 42, 94, 0.15);
}

.site-info {
    margin-bottom: 8px;
}

.new-m-aprill-gallery-grid {
    column-count: 4;
    gap: 10px;
}

.new-m-aprill-gallery-card {
    background: #152a5e;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(21, 42, 94, 0.2);
    margin-bottom: 10px;
    border: 1px solid rgba(45, 70, 185, 0.4);
    cursor: pointer;
    position: relative;
    break-inside: avoid;
}

.new-m-aprill-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 224, 224, 0.05) 0%, rgba(45, 70, 185, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.new-m-aprill-gallery-card:hover::before {
    opacity: 1;
}

.new-m-aprill-gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 70, 185, 0.3);
    border-color: rgba(45, 70, 185, 0.6);
}

.new-m-aprill-gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 2;
}

.new-m-aprill-gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.new-m-aprill-gallery-card:hover .new-m-aprill-gallery-img {
    transform: scale(1.01);
}

.new-m-aprill-gallery-info {
    padding: 0.8rem;
    background: #152a5e;
    text-align: center;
    border-top: 1px solid rgba(45, 70, 185, 0.4);
    position: relative;
    z-index: 2;
}

.new-m-aprill-gallery-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.new-m-aprill-gallery-card:hover .new-m-aprill-gallery-title {
    color: #e0e0e0;
}

.new-m-aprill-gallery-subtitle {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
}

.new-m-aprill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.new-m-aprill-item {
    background: #152a5e;
    border-radius: 4px;
    padding: 1rem 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(21, 42, 94, 0.2);
    flex: 1 0 calc(33.333% - 1rem);
    text-align: center;
    border: 1px solid rgba(45, 70, 185, 0.4);
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.new-m-aprill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 224, 224, 0.05), transparent);
    transition: left 0.6s;
}

.new-m-aprill-item:hover::before {
    left: 100%;
}

.new-m-aprill-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 70, 185, 0.3);
    border-color: rgba(45, 70, 185, 0.6);
}

.new-m-aprill-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    display: block;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.new-m-aprill-item:hover .new-m-aprill-link {
    color: #e0e0e0;
}

.Aprill2-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 26, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.Aprill2-lightbox.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.Aprill2-lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #152a5e;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(45, 70, 185, 0.4);
    border: 1px solid rgba(45, 70, 185, 0.6);
}

.Aprill2-lightbox-img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.Aprill2-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(224, 224, 224, 0.9);
    border: 1px solid #fff;
    color: #050a1a;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(224, 224, 224, 0.4);
}

.Aprill2-lightbox-close:hover {
    background: rgba(200, 200, 200, 0.9);
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(224, 224, 224, 0.6);
}

.Aprill2-lightbox-prev,
.Aprill2-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 70, 185, 0.8);
    border: 1px solid #fff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(45, 70, 185, 0.4);
}

.Aprill2-lightbox-prev:hover,
.Aprill2-lightbox-next:hover {
    background: rgba(224, 224, 224, 0.8);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 3px 12px rgba(224, 224, 224, 0.5);
}

.Aprill2-lightbox-prev {
    left: 15px;
}

.Aprill2-lightbox-next {
    right: 15px;
}

.Aprill2-lightbox-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(21, 42, 94, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border: 1px solid rgba(45, 70, 185, 0.5);
    box-shadow: 0 2px 8px rgba(45, 70, 185, 0.3);
}

footer {
    background: var(--footer-gradient);
    padding: 2rem 5% 1rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(45, 70, 185, 0.5);
}

.footer-container-new-m-aprill {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo-col {
    order: 1;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.social-link {
    color: #e0e0e0;
    font-size: 1.1rem;
    transition: var(--transition);
    background: rgba(45, 70, 185, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45, 70, 185, 0.4);
    box-shadow: 0 1px 6px rgba(45, 70, 185, 0.2);
}

.social-link:hover {
    color: #ffffff;
    background: rgba(45, 70, 185, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(45, 70, 185, 0.3);
    border-color: rgba(45, 70, 185, 0.6);
}

.new-m-aprill-footer-links-wrapper {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.new-m-aprill-footer-links-col {
    min-width: 150px;
}

.new-m-aprill-footer-links-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.new-m-aprill-footer-links-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 40px;
    height: 2px;
    background: rgba(45, 70, 185, 0.6);
    border-radius: 1px;
}

.new-m-aprill-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.new-m-aprill-footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    background: rgba(45, 70, 185, 0.1);
    border: 1px solid rgba(45, 70, 185, 0.2);
}

.new-m-aprill-footer-link:hover {
    color: #ffffff;
    background: rgba(45, 70, 185, 0.2);
    transform: translateX(2px);
    border-color: rgba(45, 70, 185, 0.4);
    box-shadow: 0 2px 8px rgba(45, 70, 185, 0.2);
}

.footer-banners {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.footer-banner {
    width: 55px;
    height: 45px;
    object-fit: contain;
    background: rgba(45, 70, 185, 0.3);
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid rgba(45, 70, 185, 0.4);
    box-shadow: 0 1px 6px rgba(45, 70, 185, 0.2);
}

.footer-banner:hover {
    background: rgba(45, 70, 185, 0.4);
    transform: translateY(-1px);
    border-color: rgba(45, 70, 185, 0.6);
    box-shadow: 0 3px 12px rgba(45, 70, 185, 0.3);
}

.copyright {
    text-align: center;
    margin: 1.5rem calc(-50vw + 50%) 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(45, 70, 185, 0.4);
    font-size: 0.8rem;
    color: rgba(224, 224, 224, 0.7);
    width: 100vw;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a1931 0%, #152a5e 100%);
    font-style: italic;
}

.new-m-aprill-footer-banners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.new-m-aprill-footer-banner {
    width: 55px;
    height: 45px;
    object-fit: contain;
    background: rgba(45, 70, 185, 0.3);
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid rgba(45, 70, 185, 0.4);
}

.new-m-aprill-footer-banner:hover {
    background: rgba(45, 70, 185, 0.4);
    transform: translateY(-1px);
    border-color: rgba(45, 70, 185, 0.6);
}

li {
    list-style: none;
}

.new-m-aprill-model-info {
    background: #152a5e;
    border-radius: 4px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(45, 70, 185, 0.4);
    box-shadow: 0 4px 15px rgba(21, 42, 94, 0.15);
}

.new-m-aprill-model-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(45, 70, 185, 0.3);
    padding-bottom: 0.5rem;
}

.new-m-aprill-model-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.new-m-aprill-model-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-m-aprill-model-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 224, 224, 0.06), transparent);
    transition: left 0.5s;
}

.new-m-aprill-model-item:hover::before {
    left: 100%;
}

.new-m-aprill-model-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(224, 224, 224, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(224, 224, 224, 0.15);
}

.new-m-aprill-model-label {
    color: #f0f0f0;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.new-m-aprill-bio-info {
    background: #152a5e;
    border-radius: 4px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(45, 70, 185, 0.4);
    box-shadow: 0 4px 15px rgba(21, 42, 94, 0.15);
    position: relative;
    overflow: hidden;
}

.new-m-aprill-bio-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.new-m-aprill-bio-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 60px;
    height: 2px;
    background: rgba(45, 70, 185, 0.6);
    border-radius: 1px;
}

.new-m-aprill-bio-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.new-m-aprill-bio-text {
    color: #e8e8e8;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.new-m-aprill-bio-text::first-letter {
    font-size: 1.6rem;
    color: #e0e0e0;
    font-weight: 600;
    float: left;
    line-height: 1;
    margin-right: 0.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 26, 0.92);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    overflow-y: auto;
}

.lightbox-slider-container {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
}

.lightbox-slider {
    width: 100%;
    margin-bottom: 15px;
}

.lightbox-slider img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
}

.slick-thumb-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 8px 0;
    margin-top: auto;
    margin-bottom: 15px;
}

.slick-dots.slick-thumb {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: static !important;
    bottom: auto !important;
}

.slick-dots.slick-thumb li {
    width: 70px;
    height: 52px;
    margin: 4px;
    list-style: none;
    flex-shrink: 0;
}

.slick-dots.slick-thumb li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s;
    border-radius: 2px;
}

.slick-dots.slick-thumb li.slick-active img {
    opacity: 1;
    border: 1px solid #e0e0e0;
}

.slick-prev, .slick-next {
    z-index: 10000;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(224, 224, 224, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    color: #050a1a;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: rgba(200, 200, 200, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #1a237e;
    color: #ffffff;
    padding: 12px 16px;
    border: 1px solid #303f9f;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 350px;
}

.notification__icon {
    background-color: #283593;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.notification__message {
    margin: 0;
    flex-grow: 1;
    font-size: 0.85rem;
}

.notification__close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    line-height: 1;
}

.notification__close:hover {
    color: #e0e0e0;
}

.notification {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 5%;
    }

    .new-m-aprill-header-container {
        flex-direction: column;
        align-items: center;
    }

    .new-m-aprill-logo {
        margin-bottom: 0.8rem;
        max-width: 90%;
        justify-content: center;
    }

    .site-title {
        text-align: center;
    }

    .main-nav {
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #0a1931 0%, #152a5e 100%);
        padding: 1rem 5%;
        display: none;
        box-shadow: 0 4px 15px rgba(21, 42, 94, 0.3);
        z-index: 999;
        border-top: 1px solid rgba(45, 70, 185, 0.4);
    }

    .main-nav.show {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }

    .nav-item {
        margin: 0.15rem 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 4px;
    }

    .language-dropdown {
        width: 100%;
        margin-left: 0;
    }

    .language-btn {
        width: 100%;
        border-radius: 4px;
        justify-content: center;
    }

    .language-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 0.3rem;
    }

    .footer-container-new-m-aprill {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo-col {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .new-m-aprill-footer-links-wrapper {
        order: 2;
        grid-template-columns: 1fr;
    }
    
    .footer-banners {
        order: 3;
        justify-content: center;
    }

    .new-m-aprill-footer-links-col h3 {
        text-align: center;
    }

    .new-m-aprill-footer-links-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .new-m-aprill-footer-links {
        align-items: center;
    }
}

@media (max-width: 800px) {
    .new-m-aprill-gallery-grid {
        column-count: 3;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .new-m-aprill-logo {
        padding: 0.3rem 0.8rem;
        max-width: 95%;
    }

    .Aprill2-lightbox-prev,
    .Aprill2-lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .new-m-aprill-item {
        flex: 1 0 calc(50% - 1rem);
    }

    h1 {
        font-size: 1.8rem;
        padding: 1rem;
    }

    h2 {
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 600px) {
    .new-m-aprill-gallery-grid {
        column-count: 2;
    }
    
    .site-title {
        font-size: 1.7rem;
    }
    
    .new-m-aprill-logo {
        padding: 0.2rem 0.6rem;
    }

    .Aprill2-lightbox-container {
        max-width: 95%;
        max-height: 95%;
    }

    .new-m-aprill-item {
        flex: 1 0 100%;
    }

    .new-m-aprill-model-list {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .new-m-aprill-gallery-grid {
        column-count: 1;
    }
    
    .language-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .site-title {
        font-size: 1.5rem;
        padding: 0.2rem 0.4rem;
    }
    
    .new-m-aprill-logo {
        padding: 0.2rem 0.5rem;
    }

    .Aprill2-lightbox-prev,
    .Aprill2-lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .Aprill2-lightbox-prev {
        left: 10px;
    }

    .Aprill2-lightbox-next {
        right: 10px;
    }

    .new-m-aprill-model-info,
    .new-m-aprill-bio-info {
        padding: 1rem;
    }

    .new-m-aprill-model-title,
    .new-m-aprill-bio-title {
        font-size: 1.2rem;
    }
}

.new-m-aprill-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.new-m-aprill-logo span {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.new-m-aprill-logo:hover span {
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .new-m-aprill-logo span {
        font-size: 1.8rem;
    }
    
    .new-m-aprill-logo {
        width: 80%;
    }
}