.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: transform 0.2s, opacity 0.2s;
    position: absolute;
    width: 120px;
    height: 120px;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    top: 50%;
    left: 50%;
    margin: -60px; /* Half of the button height/width to center it */
    transform-origin: center;
}

.social-button:hover {
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.social-button i {
    font-size: 1.2em;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Platform specific styles */
.linkedin {
    background-color: #0077b5;
    background: #0077B5;
    transform: translate(190px, 0);
}

.linkedin:hover { transform: translate(190px, 0) scale(1.1); }

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    background: #E4405F;
    transform: translate(95px, 165px);
}

.instagram:hover { transform: translate(95px, 165px) scale(1.1); }

.tiktok {
    background-color: #000000;
    background: #000000;
    transform: translate(-95px, 165px);
}

.tiktok:hover { transform: translate(-95px, 165px) scale(1.1); }

.email {
    background-color: #ea4335;
    background: #4CAF50;
    transform: translate(95px, -165px);
}

.email:hover { transform: translate(95px, -165px) scale(1.1); }

.pinterest {
    background-color: #E60023;
    background: #BD081C;
    transform: translate(-190px, 0);
}

.pinterest:hover { transform: translate(-190px, 0) scale(1.1); }

.depop {
    background-color: #ff2300;
    background: #ff2300;
    transform: translate(-95px, -165px);
}

.depop:hover { transform: translate(-95px, -165px) scale(1.1); }

/* Responsive styles */
@media (max-width: 768px) {
    .social-links {
        gap: 10px;
    }
    
    .social-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

.social-wheel-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-wheel {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.social-wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ff0000,
        #ff8000,
        #ffff00,
        #80ff00,
        #00ff00,
        #00ff80,
        #00ffff,
        #0080ff,
        #0000ff,
        #8000ff,
        #ff00ff,
        #ff0080,
        #ff0000
    );
    z-index: -1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Center circle */
.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #B66681;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 2;
}
