body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 1px;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.button-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 20px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    color: #fff;
}

.back-button i {
    font-size: 14px;
}

.language-switch {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-switch:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 1200px) {
    .coming-soon-title {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .coming-soon-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 1.5rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
    
    .coming-soon-image {
        width: 150px;
        height: 150px;
    }
    
    .button-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 600px) {
    .coming-soon-title {
        font-size: 1.2rem;
    }
}