
body {
    font-family: Arial, sans-serif;
    background-image: url('marble_gold_bg.jpg');
    background-size: cover;
    text-align: center;
    color: #333;
    padding: 20px;
}
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}
.language-selector img {
    width: 30px;
    cursor: pointer;
    margin-left: 10px;
}
.logo img {
    width: 100px;
}
h1 {
    color: goldenrod;
}
.intro-text, .coming-soon {
    margin: 20px;
    font-size: 18px;
}
.search-bar {
    padding: 10px;
    width: 80%;
    max-width: 400px;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin: 20px 0;
}
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: pointer;
}
.circle img {
    width: 50%;
}
