#:root {
#    --bg-color: #1c1b29; /* Dark purple background */
#    --text-color: #d4d4ff; /* Light purple text */
#    --highlight-color: #4f86f7; /* Bright blue for highlights */
#    --card-bg-color: #2a2738; /* Slightly lighter background for cards */
#    --border-color: #393552; /* Border color for nodes */
#}

:root {
    --bg-color: #1e1e1e; /* Dark grey background */
    --text-color: #d4ffd4; /* Light green text */
    --highlight-color: #32cd32; /* Bright green for highlights */
    --card-bg-color: #2b2b2b; /* Slightly lighter grey background for cards */
    --border-color: #3a3a3a; /* Border color for nodes */
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--card-bg-color);
    border-bottom: 2px solid var(--border-color);
}

.logo {
    height: 50px;
    width: auto;
}

.join-link {
    font-size: 1em;
    font-weight: bold;
    color: var(--highlight-color);
    text-decoration: none;
    background-color: transparent;
    padding: 8px 15px;
    border: 2px solid var(--highlight-color);
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.join-link:hover {
    background-color: var(--highlight-color);
    color: #ffffff; /* White text on hover */
}

h1 {
    text-align: center;
    padding: 20px;
    font-size: 2.5em;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #333, 4px 4px 0px rgba(0, 0, 0, 0.3), -1px -1px 0px rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    font-weight: bold;
    background: linear-gradient(45deg, #87ceeb, #4f86f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
}

.node {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.node.talking {
    border: 2px solid var(--highlight-color); /* Highlight the box with a blue border */
}

.node-summary {
    display: flex;
    justify-content: space-between;
}

.node-name {
    font-weight: bold;
    color: var(--highlight-color);
}

.node-tgs {
    color: var(--text-color);
}

.node-time p {
    margin: 0;
    font-size: 0.9em;
    color: var(--highlight-color);
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--card-bg-color);
    color: var(--text-color);
    border-top: 2px solid var(--border-color);
    font-size: 0.9em;
}

footer a {
    color: var(--highlight-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.info-link {
    background-color: var(--highlight-color); /* Use a bright highlight color */
    color: var(--text-color); /* Light text for contrast */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-link:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    background-color: var(--highlight-color-hover, #4f86f7); /* Slightly darker highlight on hover */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .join-link, .info-link {
        font-size: 1.2em;
        padding: 12px 20px;
        display: block;
        text-align: center;
    }

    .container {
        flex-direction: column;
        padding: 10px;
    }

    header {
        flex-direction: column;
        text-align: center;
    }
}
