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

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

header {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    position: relative;
}

.main-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1rem;
}

.subtitle {
    font-family: 'MedievalSharp', serif;
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 400;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.container {
    max-width: none;
    margin: 0;
    padding: 0;
}

.screen-section {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.text-block, .video-block {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #ffffff;
}

.content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    padding: 0;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.text-content {
    padding: 3rem;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-content h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 700;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.text-content p {
    font-family: 'MedievalSharp', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4b5563;
    font-weight: 400;
    text-align: center;
}

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

footer {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
}

.footer-link {
    color: #333;
    text-decoration: none;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .screen-section {
        flex-direction: column;
        height: auto;
    }
    
    .text-block, .video-block {
        width: 100%;
        height: 100vh;
    }
    
    .text-content {
        padding: 2rem;
    }
    
    .text-content h2 {
        font-size: 2.5rem;
    }
    
    .text-content p {
        font-size: 1.1rem;
    }
    
    .video-content {
        height: 100%;
    }
} 