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

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top right, rgba(255, 204, 0, 0.15), transparent 50%),
                linear-gradient(135deg, #2b1040 0%, #0f051a 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
}

.landing-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.main-header {
    text-align: center;
    margin-bottom: 60px;
}

.logo-large {
    height: 180px;
    width: auto;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 36px;
    color: #ffcc00;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.subscription-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    width: 100%;
}

.form-wrapper {
    width: 100%;
    max-width: 500px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-size: 16px;
    width: 100%;
    resize: vertical;
}

.cta-button {
    background: #d4b446;
    color: #1a0b2e;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 120px;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-heading {
    color: #ffcc00;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    height: 600px;
}

.mockup-img {
    height: 100%;
    width: auto;
    border-radius: 30px;
    border: 8px solid #1a1a1a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.slideshow {
    position: relative;
}

.slideshow img {
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slideshow img.active {
    opacity: 1;
    position: relative;
}

.divider {
    border: 0;
    height: 1px;
    background: rgba(255,204,0,0.3);
    margin: 60px 0;
}

.main-footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.language-selector-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

#languageSwitch {
    background: #1a0b2e;
    color: white;
    border: 1px solid #ffcc00;
    padding: 8px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .feature-block, .feature-block.reverse {
        flex-direction: column;
        text-align: center;
    }
}