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

body {
    background-color: #171717;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #272727;
    color: #9ca3af;
    border-radius: 9999px;
    transition: all 0.2s;
    position: relative;
    border: none;
    cursor: pointer;
}

social-button:hover {
    background-color: #323232;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Remove the previous ::after effects */
.social-button::after {
    display: none;
}

/* Specific hover colors */
.social-button:has(.fa-github):hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(110, 84, 148, 0.3);
}

.social-button:has(.fa-twitter):hover {
    color: #1DA1F2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.social-button:has(.fa-envelope):hover {
    color: #EA4335;
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.social-button:has(.fa-discord):hover {
    color: #5865F2;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

social-button i {
    font-size: 1.2rem;
}

.discord-btn {
    position: relative;
    cursor: pointer;
}

.discord-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #272727;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    white-space: nowrap;
}

#discord-status-indicator {
    transition: background-color 0.3s ease;
    box-shadow: 0 0 0 2px #171717;
}

.discord-btn:hover #discord-status-indicator {
    border-color: #323232;
}

/* Modal Animations */
.modal {
    backdrop-filter: blur(4px);
}

.modal > div {
    animation: modalSlide 0.3s ease-out;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove or comment out the following section */
/* Contribution Chart Styles */
/*
#contribution-chart {
    scrollbar-width: thin;
    scrollbar-color: #404040 #272727;
}

#contribution-chart::-webkit-scrollbar {
    height: 6px;
}

#contribution-chart::-webkit-scrollbar-track {
    background: #272727;
    border-radius: 3px;
}

#contribution-chart::-webkit-scrollbar-thumb {
    background-color: #404040;
    border-radius: 3px;
}
*/