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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    min-width: 800px;
    min-height: 400px;
}

.landing-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background_start.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.description {
    font-size: 1.5rem;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.8;
}

.footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.support-email {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.support-email a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    transition: border-bottom-color 0.3s ease;
}

.support-email a:hover {
    border-bottom-color: #ffffff;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .title {
        font-size: 3.5rem;
    }
    
    .description {
        font-size: 1.3rem;
    }
}

@media (max-width: 900px) {
    .title {
        font-size: 3rem;
    }
    
    .description {
        font-size: 1.2rem;
        max-width: 500px;
    }
    
    .legal-links {
        gap: 1.5rem;
    }
}

@media (max-width: 800px) {
    body {
        min-width: 800px;
    }
    
    .landing-container {
        min-width: 800px;
    }
}

@media (max-height: 600px) {
    .title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .content {
        padding: 1.5rem;
    }
}

@media (max-height: 400px) {
    body {
        min-height: 400px;
    }
    
    .landing-container {
        min-height: 400px;
    }
}
