:root {
    --primary-color: #3d2b5a;
    --secondary-color: #9b6b9e;
    --accent-color: #ffa781;
    --hover-color: #ff8c61;
    --text-color: #f5f1e8;
    --bg-color: #241b35;
    --card-bg: #4a3865;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-gradient: linear-gradient(135deg, #3d2b5a 0%, #4a3865 100%);
    --footer-gradient: linear-gradient(135deg, #3d2b5a 0%, #4a3865 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', 'Times New Roman', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
}


/* logo */
.site-logo {
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.m-horror-new-logo:hover .site-logo {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

/* mobile */
@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.4rem 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: 0 1px 10px rgba(155, 107, 158, 0.25);
    letter-spacing: 0.5px;
    font-style: italic;
}

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(155, 107, 158, 0.2);
}

.m-horror-new-header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1400px;
    margin: 0 auto;
}

.m-horror-new-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.4rem 1rem;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: var(--transition);
    max-width: 330px;
}

.m-horror-new-logo:hover {
    transform: translateY(-1px);
    background: transparent;
}

.site-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffa781;
    letter-spacing: 0.5px;
    text-align: left;
    font-family: 'Georgia', 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.4rem 1rem;
    border-radius: 6px;
    background: rgba(155, 107, 158, 0.15);
    border: 1px solid rgba(155, 107, 158, 0.3);
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    box-shadow: 0 1px 6px rgba(155, 107, 158, 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, 167, 129, 0.15), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255, 167, 129, 0.2);
    color: #ffa781;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(255, 167, 129, 0.3);
    border-color: #ffa781;
}

.nav-link.active {
    background: rgba(255, 167, 129, 0.25);
    color: #ffa781;
    font-weight: 600;
    border-color: #ffa781;
    box-shadow: 0 2px 10px rgba(255, 167, 129, 0.4);
}

.nav-link i {
    margin-left: 5px;
    font-size: 0.75rem;
}

.language-dropdown {
    position: relative;
    margin-left: 0.4rem;
}

.language-btn {
    background: rgba(155, 107, 158, 0.15);
    border: 1px solid rgba(155, 107, 158, 0.3);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    transition: var(--transition);
    height: 34px;
    width: 50px;
    min-width: 50px;
    font-family: 'Georgia', serif;
    font-weight: 500;
    box-shadow: 0 1px 6px rgba(155, 107, 158, 0.2);
}

.language-btn:hover {
    background: rgba(255, 167, 129, 0.2);
    color: #ffa781;
    transform: translateY(-1px);
    border-color: #ffa781;
}

.language-btn i {
    margin-left: 3px;
    font-size: 0.65rem;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #4a3865 0%, #3d2b5a 100%);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(155, 107, 158, 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(155, 107, 158, 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: 4px;
    background: rgba(155, 107, 158, 0.1);
    transition: var(--transition);
    font-family: 'Georgia', serif;
    font-weight: 400;
    border: 1px solid rgba(155, 107, 158, 0.2);
}

.language-link:hover {
    background: rgba(255, 167, 129, 0.15);
    color: #ffa781;
    transform: translateX(-1px);
    border-color: #ffa781;
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 167, 129, 0.2);
    border: 1px solid #ffa781;
    color: #ffa781;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 600;
    margin-top: 0.3rem;
    height: 34px;
    font-family: 'Georgia', serif;
    box-shadow: 0 1px 6px rgba(255, 167, 129, 0.3);
}

.mobile-menu-btn:hover {
    background: rgba(255, 167, 129, 0.3);
    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: #ffa781;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(155, 107, 158, 0.5);
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #4a3865 0%, #3d2b5a 100%);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(155, 107, 158, 0.2);
}

h2 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1.2rem;
    color: #9b6b9e;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #4a3865 0%, #3d2b5a 100%);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(155, 107, 158, 0.15);
}

.site-info {
    margin-bottom: 8px;
}

.m-horror-new-gallery-grid {
    column-count: 4;
    gap: 10px;
}

.m-horror-new-gallery-card {
    background: linear-gradient(135deg, #4a3865 0%, #3d2b5a 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(155, 107, 158, 0.2);
    margin-bottom: 10px;
    border: 1px solid rgba(155, 107, 158, 0.4);
    cursor: pointer;
    position: relative;
}

.m-horror-new-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 167, 129, 0.08) 0%, rgba(155, 107, 158, 0.08) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.m-horror-new-gallery-card:hover::before {
    opacity: 1;
}

.m-horror-new-gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 167, 129, 0.3);
    border-color: #ffa781;
}

.m-horror-new-gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 2;
}

.m-horror-new-gallery-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.m-horror-new-gallery-card:hover .m-horror-new-gallery-img {
    transform: scale(1.02);
}

.m-horror-new-gallery-info {
    padding: 0.8rem;
    background: linear-gradient(135deg, #4a3865 0%, #3d2b5a 100%);
    text-align: center;
    border-top: 1px solid rgba(155, 107, 158, 0.4);
    position: relative;
    z-index: 2;
}

.m-horror-new-gallery-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #ffa781;
    font-weight: 600;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.m-horror-new-gallery-card:hover .m-horror-new-gallery-title {
    color: #9b6b9e;
    transform: scale(1.02);
}

.m-horror-new-gallery-subtitle {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.8;
    font-family: 'Georgia', serif;
}

.m-horror-new-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.m-horror-new-item {
    background: linear-gradient(135deg, #4a3865 0%, #3d2b5a 100%);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(155, 107, 158, 0.2);
    flex: 1 0 calc(33.333% - 1.2rem);
    text-align: center;
    border: 1px solid rgba(155, 107, 158, 0.4);
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.m-horror-new-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 167, 129, 0.08), transparent);
    transition: left 0.6s;
}

.m-horror-new-item:hover::before {
    left: 100%;
}

.m-horror-new-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 167, 129, 0.3);
    border-color: #ffa781;
}

.m-horror-new-link {
    text-decoration: none;
    color: #ffa781;
    font-weight: 600;
    display: block;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.m-horror-new-item:hover .m-horror-new-link {
    color: #9b6b9e;
    transform: scale(1.02);
}

.watermen-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 27, 53, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.watermen-lightbox.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.watermen-lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: linear-gradient(135deg, #4a3865 0%, #3d2b5a 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 167, 129, 0.4);
    border: 1px solid rgba(155, 107, 158, 0.6);
}

.watermen-lightbox-img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.watermen-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 167, 129, 0.9);
    border: 1px solid #fff;
    color: #241b35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 167, 129, 0.4);
}

.watermen-lightbox-close:hover {
    background: rgba(255, 140, 97, 0.9);
    transform: scale(1.05) rotate(90deg);
    box-shadow: 0 3px 12px rgba(255, 167, 129, 0.6);
}

.watermen-lightbox-prev,
.watermen-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(155, 107, 158, 0.8);
    border: 1px solid #fff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(155, 107, 158, 0.4);
}

.watermen-lightbox-prev:hover,
.watermen-lightbox-next:hover {
    background: rgba(255, 167, 129, 0.8);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 3px 12px rgba(255, 167, 129, 0.5);
}

.watermen-lightbox-prev {
    left: 15px;
}

.watermen-lightbox-next {
    right: 15px;
}

.watermen-lightbox-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(74, 56, 101, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    border: 1px solid rgba(155, 107, 158, 0.5);
    box-shadow: 0 2px 8px rgba(155, 107, 158, 0.3);
}

footer {
    background: var(--footer-gradient);
    padding: 2rem 5% 1rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(155, 107, 158, 0.5);
}

.footer-container-m-horror-new {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    order: 0;
    min-width: 160px;
    flex: 1;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
    justify-content: flex-start;
}

.social-link {
    color: #9b6b9e;
    font-size: 1.1rem;
    transition: var(--transition);
    background: rgba(74, 56, 101, 0.5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(155, 107, 158, 0.4);
    box-shadow: 0 1px 6px rgba(155, 107, 158, 0.2);
}

.social-link:hover {
    color: #ffa781;
    background: rgba(255, 167, 129, 0.2);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 3px 12px rgba(255, 167, 129, 0.3);
    border-color: #ffa781;
}

.m-horror-new-footer-links-wrapper {
    display: flex;
    flex-grow: 2;
    justify-content: space-around;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.m-horror-new-footer-links-col {
    min-width: 150px;
    flex: 1;
}

.m-horror-new-footer-links-col h3 {
    color: #ffa781;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: left;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: 'Georgia', serif;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.m-horror-new-footer-links-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 40px;
    height: 2px;
    background: #9b6b9e;
    border-radius: 1px;
}

.m-horror-new-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.m-horror-new-footer-link {
    color: #9b6b9e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Georgia', serif;
    font-weight: 400;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    background: rgba(155, 107, 158, 0.08);
    border: 1px solid rgba(155, 107, 158, 0.2);
}

.m-horror-new-footer-link:hover {
    color: #ffa781;
    background: rgba(255, 167, 129, 0.1);
    transform: translateX(2px);
    border-color: #ffa781;
    box-shadow: 0 2px 8px rgba(255, 167, 129, 0.2);
}

.footer-banners {
    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(74, 56, 101, 0.5);
    padding: 4px;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid rgba(155, 107, 158, 0.4);
    box-shadow: 0 1px 6px rgba(155, 107, 158, 0.2);
}

.footer-banner:hover {
    background: rgba(255, 167, 129, 0.2);
    transform: translateY(-1px);
    border-color: #ffa781;
    box-shadow: 0 3px 12px rgba(255, 167, 129, 0.3);
}

.copyright {
    text-align: center;
    margin: 1.5rem calc(-50vw + 50%) 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(155, 107, 158, 0.4);
    font-size: 0.8rem;
    color: rgba(245, 241, 232, 0.7);
    width: 100vw;
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #3d2b5a 0%, #4a3865 100%);
    font-style: italic;
}

.m-horror-new-footer-banners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.m-horror-new-footer-banner {
    width: 55px;
    height: 45px;
    object-fit: contain;
    background: rgba(74, 56, 101, 0.5);
    padding: 4px;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid rgba(155, 107, 158, 0.4);
}

.m-horror-new-footer-banner:hover {
    background: rgba(255, 167, 129, 0.2);
    transform: translateY(-1px);
    border-color: #ffa781;
}

li {
    list-style: none;
}

/* Model Info Block Styles */
.m-horror-new-model-info {
    background: linear-gradient(135deg, #4a3865 0%, #3d2b5a 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(155, 107, 158, 0.4);
    box-shadow: 0 4px 15px rgba(155, 107, 158, 0.15);
}

.m-horror-new-model-title {
    font-size: 1.4rem;
    color: #ffa781;
    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: 'Georgia', serif;
    border-bottom: 1px solid rgba(155, 107, 158, 0.3);
    padding-bottom: 0.5rem;
}

.m-horror-new-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;
}

.m-horror-new-model-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.m-horror-new-model-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 167, 129, 0.06), transparent);
    transition: left 0.5s;
}

.m-horror-new-model-item:hover::before {
    left: 100%;
}

.m-horror-new-model-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 167, 129, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 167, 129, 0.15);
}

.m-horror-new-model-label {
    color: #f5f1e8;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Bio Info Block Styles */
.m-horror-new-bio-info {
    background: linear-gradient(135deg, #4a3865 0%, #3d2b5a 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(155, 107, 158, 0.4);
    box-shadow: 0 4px 15px rgba(155, 107, 158, 0.15);
    position: relative;
    overflow: hidden;
}

.m-horror-new-bio-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffa781, #9b6b9e, #ffa781);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.m-horror-new-bio-title {
    font-size: 1.4rem;
    color: #ffa781;
    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: 'Georgia', serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.m-horror-new-bio-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffa781, #9b6b9e);
    border-radius: 1px;
}

.m-horror-new-bio-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.m-horror-new-bio-text {
    color: #e8e4d9;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    margin: 0;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.m-horror-new-bio-text::first-letter {
    font-size: 1.6rem;
    color: #ffa781;
    font-weight: 600;
    float: left;
    line-height: 1;
    margin-right: 0.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 27, 53, 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: 4px;
}

.slick-dots.slick-thumb li.slick-active img {
    opacity: 1;
    border: 1px solid #ffa781;
}

.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(255, 167, 129, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #241b35;
    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(255, 140, 97, 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 Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    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: #dc3545;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    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: #721c24;
    padding: 0;
    line-height: 1;
}

.notification__close:hover {
    color: #490f15;
}

.notification {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 5%;
    }

    .m-horror-new-header-container {
        flex-direction: column;
        align-items: center;
    }

    .m-horror-new-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, #3d2b5a 0%, #4a3865 100%);
        padding: 1rem 5%;
        display: none;
        box-shadow: 0 4px 15px rgba(155, 107, 158, 0.3);
        z-index: 999;
        border-top: 1px solid rgba(155, 107, 158, 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: 6px;
    }

    .language-dropdown {
        width: 100%;
        margin-left: 0;
    }

    .language-btn {
        width: 100%;
        border-radius: 6px;
        justify-content: center;
    }

    .language-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 0.3rem;
    }

    .footer-container-m-horror-new {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .m-horror-new-footer-links-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-logo-col {
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .m-horror-new-footer-links-col h3 {
        text-align: center;
    }

    .m-horror-new-footer-links-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .m-horror-new-footer-links {
        align-items: center;
    }

    .footer-banners {
        justify-content: center;
    }
}

@media (max-width: 800px) {
    .m-horror-new-gallery-grid {
        column-count: 3;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .m-horror-new-logo {
        padding: 0.3rem 0.8rem;
        max-width: 95%;
    }

    .watermen-lightbox-prev,
    .watermen-lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .m-horror-new-item {
        flex: 1 0 calc(50% - 1.2rem);
    }

    h1 {
        font-size: 1.8rem;
        padding: 1rem;
    }

    h2 {
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 600px) {
    .m-horror-new-gallery-grid {
        column-count: 2;
    }
    
    .site-title {
        font-size: 1.7rem;
    }
    
    .m-horror-new-logo {
        padding: 0.2rem 0.6rem;
    }

    .watermen-lightbox-container {
        max-width: 95%;
        max-height: 95%;
    }

    .m-horror-new-item {
        flex: 1 0 100%;
    }

    .m-horror-new-model-list {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .m-horror-new-gallery-grid {
        column-count: 1;
    }
    
    .language-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .site-title {
        font-size: 1.5rem;
        padding: 0.2rem 0.4rem;
    }
    
    .m-horror-new-logo {
        padding: 0.2rem 0.5rem;
    }

    .watermen-lightbox-prev,
    .watermen-lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .watermen-lightbox-prev {
        left: 10px;
    }

    .watermen-lightbox-next {
        right: 10px;
    }

    .m-horror-new-model-info,
    .m-horror-new-bio-info {
        padding: 1rem;
    }

    .m-horror-new-model-title,
    .m-horror-new-bio-title {
        font-size: 1.2rem;
    }
}

.m-horror-new-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.m-horror-new-logo span {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffa781;
    letter-spacing: 0.5px;
    transition: var(--transition);
    font-family: 'Georgia', serif;
}

.m-horror-new-logo:hover span {
    text-shadow: 0 0 6px rgba(255, 167, 129, 0.6);
}

@media (max-width: 768px) {
    .m-horror-new-logo span {
        font-size: 1.8rem;
    }
    
    .m-horror-new-logo {
        width: 80%;
    }
}