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

:root {
    --primary-color: #2d3436;
    --accent-color: #0984e3;
    --text-color: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    background-image: linear-gradient(var(--overlay-color), var(--overlay-color)), url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    position: relative;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-color);
    gap: 2.5rem;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.content:hover {
    transform: translateY(-5px);
}

.company-name {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.company-short-name {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0.5rem 0;
    letter-spacing: -1px;
}

.slogan {
    font-size: 2rem;
    opacity: 1;
    font-weight: 300;
    max-width: 1000px;
    line-height: 1.6;
    margin-top: 1rem;
    color: #FFE5D9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.1);
}

footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
}

footer a:hover {
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.05);
    transform: none;
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .content {
        width: 95%;
        padding: 2rem;
        gap: 2rem;
    }
    
    .company-name {
        font-size: 1.125rem;
    }
    
    .company-short-name {
        font-size: 4.5rem;
    }
    
    .slogan {
        font-size: 1.75rem;
        max-width: 800px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        width: 100%;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .company-short-name {
        font-size: 4rem;
    }
    
    .slogan {
        font-size: 1.5rem;
        max-width: 100%;
    }
} 