* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: #000;
    font-family: 'Cinzel Decorative', serif;
    color: #8b0000;
}

/* 🔞 AGE GATE */
#age-gate {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-box {
    border: 2px solid #8b0000;
    padding: 50px;
    text-align: center;
}

.age-box h2 {
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.age-box p {
    font-size: 18px;
    line-height: 1.6;
}

.age-buttons {
    margin-top: 30px;
}

.age-buttons button {
    background: transparent;
    border: 2px solid #8b0000;
    color: #8b0000;
    padding: 12px 30px;
    font-size: 18px;
    margin: 10px;
    cursor: pointer;
    letter-spacing: 2px;
}

.age-buttons button:hover {
    background: #8b0000;
    color: #000;
}

/* 🎥 HERO VIDEO */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 36px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(139, 0, 0, 0.7);
}

/* 📸 CONTENT SECTION — IMAGE NOT CROPPED */
.content {
    min-height: 100vh;
    padding: 160px 20px 300px;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url("/photo/cover_1.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.content-text {
    position: relative;
    z-index: 2;
}


.content-text {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

.content-text p {
    font-size: 19px;
    font-weight: 700;
    /* ЖИРНЕЕ */
    line-height: 1.85;
    margin-bottom: 28px;
    color: #8b0000;
    text-shadow:
        0 0 8px rgba(0, 0, 0, 0.95),
        0 0 14px rgba(0, 0, 0, 0.8);
}
