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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #121212;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Фоновое изображение: ч/б и полупрозрачное, чтобы текст был читаемым */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    opacity: 0.175;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

/* Header & Logo */
.header {
    padding: 20px 0;
}

.logo {
    width: 80px;
    height: 80px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 100px);
    text-align: center;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b0b0b0;
    margin-bottom: 20px;
}

/* Buttons container */
.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Watch Now Button */
.watch-now-btn {
    display: inline-block;
    background-color: #e91e63;
    color: #ffffff;
    padding: 16px 48px;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.watch-now-btn:hover {
    background-color: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

.watch-now-btn:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .main-content {
        padding: 30px 15px;
    }

    .watch-now-btn {
        padding: 14px 36px;
        width: 100%;
        max-width: 280px;
    }
}
