body {
    font-family: Arial, sans-serif;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.header {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
    padding: 0;
}

.header-image {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 10px auto 20px auto;
    cursor: pointer;
    z-index: 5;
}

.header-nav {
    margin-top: 20px;
    z-index: 5;
}

.header-link {
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgba(205, 26, 229, 0.3);
    transition: background-color 0.3s;
}

.disable-link {
	pointer-events: none;
    opacity: 0.5;
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgba(205, 26, 229, 0.3);
    transition: background-color 0.3s;
}

.header-link:hover {
    background-color: rgba(102, 12, 114, 0.8);
}

.social-bar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    border: 2px solid rgba(205, 26, 229, 0.3);
    border-radius: 10px;
    background-color: rgba(234, 158, 243, 0.3);
    z-index: 3;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%; 
    transition: transform 0.2s, background-color 0.2s;
}

.social-icon:hover {
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.5);
}

.wheel {
    position: relative;
    width: 300px;
    height: 300px;
    animation: expand 1s ease-out forwards;
    z-index: 2;
}

.wheel-item {
    position: absolute;
    top: 70%;
    left: 50%;
    transform-origin: 0 0;
    transform: translate(-50%, -50%) rotate(0deg) translate(150px) rotate(0deg);
    transition: transform 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
	padding: 8px;
    background-color: rgba(255, 255, 255, 0.3);
}

.icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.icon:hover {
    transform: scale(1.1);
}

.disabled-icon {
	pointer-events: none;
    opacity: 0.5;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.disabled-icon:hover {
}

.wheel-item:hover .wheel-text {
    display: block;
}

@keyframes expand {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
