/* === Global Styles === */
body {
    margin: 0;
    height: 100vh;
    background-color: #0b0b0b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    cursor: none; /* Hide default cursor */
}

/* === Social Container === */
.social-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.box-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(2, 1fr);
    gap: 30px; 
    justify-items: center;
}

.box-social li {
    position: relative;
}

/* Magnetic Wrap */
.magnetic-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    cursor: none;
}

.magnetic-wrap:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Inner content */
.magnetic-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.magnetic-inner img {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    image-rendering: -webkit-optimize-contrast; 
}

/* === Custom Cursor === */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

.cursor-ring.active {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}