* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif', serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.rotating-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.circular-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
}

.circular-text span {
    position: absolute;
    color: #32ff32;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(50, 255, 50, 0.5);
    transform-origin: 0 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Network styles */
.network-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.network-box {
    position: absolute;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.network-box:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.network-box:active {
    transform: scale(0.95);
}

/* Random positioning for network boxes */
.network-box[data-box="about"] {
    top: 15%;
    left: 10%;
}

.network-box[data-box="research"] {
    top: 20%;
    right: 15%;
}

.network-box[data-box="statement"] {
    bottom: 30%;
    left: 5%;
}

.network-box[data-box="texts"] {
    bottom: 25%;
    right: 10%;
}

.network-box[data-box="forum"] {
    top: 40%;
    right: 5%;
}

.network-box[data-box="join"] {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive design */
@media (max-width: 768px) {
    .rotating-circle {
        width: 300px;
        height: 300px;
    }
    
    .rotating-text {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .network-box {
        width: 100px;
        height: 50px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .rotating-circle {
        width: 250px;
        height: 250px;
    }
    
    .rotating-text {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .network-box {
        width: 80px;
        height: 40px;
        font-size: 10px;
    }
}
