* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header {
    background: #0a0a0a;
    border-bottom: 2px solid #2a2a2a;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 50px;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.desktop-menu ul li a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    display: block;
}

.desktop-menu ul li a.join {
    background: #2a2a2a;
    padding: 8px 15px;
    border-radius: 3px;
}

.mobile-nav {
    display: none;
}

.burger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #0a0a0a;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 20px;
    border-right: 1px solid #2a2a2a;
}

.mobile-menu.open {
    transform: translateX(0);
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 30px;
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    font-size: 16px;
    display: block;
    padding: 10px 0;
}

.mobile-menu ul li a.join-link {
    background: #2a2a2a;
    padding: 10px 15px;
    text-align: center;
    border-radius: 3px;
    margin-top: 20px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99;
    display: none;
}

.menu-overlay.show {
    display: block;
}

.hero img {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
}

.welcome {
    background: #111;
    padding: 50px 0;
    border-bottom: 2px solid #2a2a2a;
}

.welcome h1 {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: #ff6699;
}

.welcome h2 {
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.more-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    text-decoration: underline;
}

.section-title {
    text-align: center;
    padding: 40px 0 20px;
    border-bottom: 2px solid #2a2a2a;
}

.section-title .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title h2 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.see-all {
    font-size: 14px;
    text-decoration: underline;
}

.promo-block-wrapper {
    display: flex;
    flex-direction: column;
}

.promo-item {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.promo-image {
    width: 100%;
    height: 100%;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    text-align: center;
}

.promo-title p {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.promo-title a {
    text-decoration: underline;
}

.grid-4 {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 10px;
}

.grid-item {
    flex: 1 1 calc(50% - 10px);
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    min-height: 200px;
    border-radius: 4px;
}

.newsletter {
    background: #111;
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid #2a2a2a;
    border-bottom: 2px solid #2a2a2a;
}

.newsletter h3 {
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #666;
}

.newsletter-form button {
    background: #2a2a2a;
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #3a3a3a;
}

.consent {
    font-size: 11px;
    color: #666;
    margin-top: 15px;
}

.join-section {
    background-image: url('/mcst/dist/c11n/3ovo2es/a28ee41de2561389cbe6/3ovo2es/images/join-block-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.join-section .container {
    position: relative;
    z-index: 2;
}

.join-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.join-text-1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.join-text-2 {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.join-form input {
    width: 100%;
    padding: 14px 15px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
}

.join-form input:focus {
    outline: none;
    border-color: #fff;
}

.join-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.join-form button {
    background: #fff;
    border: none;
    color: #0a0a0a;
    padding: 14px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 3px;
}

.join-form button:hover {
    background: #ddd;
}

.footer {
    background: #0a0a0a;
    border-top: 2px solid #2a2a2a;
    padding: 40px 0;
    text-align: center;
    font-size: 12px;
    color: #888;
}

.footer a {
    color: #888;
}

.footer a:hover {
    color: #fff;
}

.footer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.copyright {
    margin: 20px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-links a {
    font-size: 11px;
    text-transform: uppercase;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(0,0,0,0.8);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-nav {
        display: block;
        position: relative;
        z-index: 101;
    }
    
    .burger {
        display: block;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 102;
    }
    
    .logo {
        justify-content: center;
        padding-left: 50px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .promo-title p {
        font-size: 18px;
    }
    
    .join-section {
        padding: 50px 0;
    }
    
    .join-section h2 {
        font-size: 24px;
    }
    
    .join-text-1 {
        font-size: 18px;
    }
    
    .join-text-2 {
        font-size: 16px;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .slider-prev, .slider-next {
        padding: 8px 12px;
        font-size: 18px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .welcome h1 {
        font-size: 32px;
    }
    
    .welcome h2 {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .promo-block-wrapper {
        flex-direction: row;
    }
    
    .promo-item {
        flex: 1;
        border-right: 2px solid #2a2a2a;
    }
    
    .promo-item:last-child {
        border-right: none;
    }
    
    .grid-item {
        flex: 1 1 calc(25% - 10px);
    }
    
    .newsletter-form {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newsletter-form input {
        flex: 1;
        min-width: 200px;
    }
    
    .join-form {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 800px;
        justify-content: center;
    }
    
    .join-form input {
        flex: 1;
        min-width: 200px;
    }
}

.gallery-page {
    padding: 40px 0;
    min-height: 60vh;
}

.gallery-page h1 {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #ccc;
}

.gallery-page h2 {
    font-size: 28px;
    text-align: center;
    margin: 50px 0 30px;
    color: #ccc;
}

.gallery-grid {
    column-count: 4;
    column-gap: 12px;
    margin: 30px 0;
}

.gallery-card {
    background-color: #252525;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
    break-inside: avoid;
    border: 1px solid rgba(196, 154, 108, 0.1);
    display: inline-block;
    width: 100%;
}

.gallery-card:hover {
    border-color: rgba(196, 154, 108, 0.3);
    transform: translateY(-2px);
}

.gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.2s ease-in-out;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.02);
}

.gallery-info {
    padding: 0.9rem 0.8rem 0.7rem;
    background-color: transparent;
    text-align: center;
}

.gallery-title {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

@media (max-width: 800px) {
    .gallery-grid {
        column-count: 3;
        column-gap: 12px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 8px;
    }
    .gallery-card {
        margin-bottom: 8px;
        border-radius: 12px;
    }
}

.sitemap-page {
    padding: 40px 0;
    min-height: 60vh;
}

.sitemap-page h1 {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ccc;
}

.sitemap-desc {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.sitemap-item {
    background: #252525;
    border-radius: 40px;
    transition: all 0.2s ease;
    border: 1px solid rgba(196, 154, 108, 0.1);
    text-align: center;
}

.sitemap-item:hover {
    border-color: rgba(196, 154, 108, 0.3);
}

.sitemap-link {
    display: block;
    padding: 12px;
    font-weight: 500;
    color: #сссссс;
    transition: all 0.2s;
    text-decoration: none;
}

.sitemap-link h4 {
    font-size: 14px;
    font-weight: 400;
}

.sitemap-item:hover .sitemap-link {
    color: #fff;
}

.info-section {
    background: rgba(50, 44, 40, 0.6);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(196, 154, 108, 0.1);
    line-height: 1.7;
    font-size: 0.95rem;
}

.info-section p {
    margin-bottom: 16px;
    color: #ccc;
}

.info-section p:last-child {
    margin-bottom: 0;
}

.info-section a {
    color: #сссссс;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .gallery-page {
        padding: 20px 0;
    }
    .gallery-page h1 {
        font-size: 28px;
    }
    .gallery-page h2 {
        font-size: 22px;
    }
    .sitemap-page h1 {
        font-size: 28px;
    }
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .info-section {
        padding: 20px;
    }
}