body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0a0a2a;
    color: #fff;
}
.banner {
    background-image: url('./xidruk_bak.png');
    background-size: cover;
    background-position: center;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
}
.icon-container {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.icon {
    width: 80px;
    height: 80px;
    background-image: url('./xidruk_l.png');
    background-size: cover;
    border: 2px solid #8a2be2;
    border-radius: 10px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.icon.flipped {
    transform: rotateY(180deg);
}
.icon-name {
    color: white;
    font-size: 24px;
    margin-left: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.menu-container {
    background: linear-gradient(to right, #4b0082, #8a2be2);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.menu {
    display: inline-flex;
    padding: 10px;
}
.menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 20px;
    transition: background-color 0.3s;
}
.menu a:hover, .menu a.active {
    background-color: rgba(255,255,255,0.2);
}
.menu a i {
    margin-right: 5px;
}
.content {
    padding: 20px;
}
.section {
    display: none;
}
.section.active {
    display: block;
}
@media (max-width: 600px) {
    .menu-container {
        overflow-x: scroll;
    }
    .menu {
        width: max-content;
    }
}