
html, body {
margin: 0; padding: 0; width: 100%; height: 100%;
overflow: hidden !important;
background: transparent !important;
overscroll-behavior: none;
touch-action: none; 
}
.radial-container {
position: fixed;
inset: 0;
z-index: 9999;
background: transparent;
touch-action: none;
}
.center-stage {
position: fixed; top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 440px; height: 550px;
z-index: 10000;
overflow: hidden;
border-radius: 12px;
display: block;
pointer-events: auto !important;
-webkit-tap-highlight-color: transparent;
cursor: pointer;
background: transparent;
}
@media (max-width: 768px) {
.center-stage {
width: 80vw;
height: 50vh;
}
}
.center-stage img, .center-stage video {
position: absolute; top: 0; left: 0;
width: 100%; height: 100%;
object-fit: cover;
will-change: clip-path;
pointer-events: none;
clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.radial-gallery {
position: fixed;
width: 100%; height: 100%;
left: 0; top: 0;
pointer-events: none;
}
.radial-item {
position: absolute; top: 0; left: 0;
transform: translate(-50%, -50%);
width: 280px; height: 100px;
cursor: pointer;
pointer-events: auto;
display: flex;
align-items: center;
justify-content: flex-start;
text-decoration: none;
-webkit-tap-highlight-color: transparent;
}
.radial-item p {
font-family: "Brockmann", sans-serif;
font-size: 32px;
font-weight: 500;
color: #0a0a0a;
opacity: 0.15;
margin: 0;
transition: opacity 0.3s, color 0.3s;
white-space: nowrap;
}
.radial-item.active p { 
color: #000 !important; 
opacity: 1 !important; 
font-weight: 600; 
}
.radial-item p span { padding: 0 10px; font-size: 14px; opacity: 0.6; }
#custom-cursor {
position: fixed; top: 0; left: 0; padding: 6px 12px;
background-color: #0a0a0a; color: #f7f7f7;
font-family: "Brockmann", sans-serif; font-size: 10px; font-weight: 800;
letter-spacing: 0.2px;
pointer-events: none;
z-index: 999999 !important;
display: none;
white-space: nowrap;
border-radius: 5px;
transform: translateY(-50%);
will-change: clip-path;
}