/* Reset styles and basic container setup */
body {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-dark);
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.repo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.repo {
    border: 1px solid #ccc;
    padding: 1rem;
    text-align: center;
    max-width: 300px;
    width: 100%;
    background-color: #343536; /* Dark background color */
    color: #ffffff; /* Light text color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.repo h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.repo p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.repo a {
    display: block;
    margin-top: 1rem;
    color: #bb86fc; /* Primary color */
    text-decoration: none;
    border: 1px solid #bb86fc; /* Border matching primary color */
    padding: 0.5rem;
    border-radius: 5px; /* Rounded button */
    transition: background-color 0.3s, color 0.3s;
}

.repo a:hover {
    background-color: #bb86fc; /* Primary color on hover */
    color: #ffffff; /* Light text color on hover */
    text-decoration: none;
}

.repo:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-dark);
    position: absolute;
    bottom: 0;
}

.icon {
    font-size: 2rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.icon:hover {
    color: var(--primary-color);
}

.discord-icon {
    position: relative;
}

.discord-tooltip {
    visibility: hidden;
    width: auto;
    background-color: var(--tooltip-bg);
    color: var(--tooltip-text);
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.9rem;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.discord-icon:hover .discord-tooltip {
    visibility: visible;
    opacity: 1;
}

