body {
    background-color: black;
    color: white;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 10px;
    margin: 0;
}
.graph-container {
    position: relative;
    min-height: 220px;
    margin: 12px auto 18px;
    width: 100%;
    max-width: 100%;
}
.graph-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #DCDCDC;
    font-size: 14px;
}
.activity-graph {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 220px;
    background: #111111;
    border-radius: 5px;
}
.steam-url {
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 600px) {
    .desktop-only { display: none !important; }
    .graph-container { width: 100%; min-height: 180px; }
    .activity-graph { height: 180px; }
}
@media (min-width: 601px) {
    .mobile-only { display: none !important; }
}
.server-container {
    border: 1px solid #333;
    border-radius: 10px;
    margin: 10px 0;
    padding: 15px;
    background-color: #111;
    max-width: 100%;
    width: 560px;
    position: relative;
    z-index: 2;
}
.install-link {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #66c0f4;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.install-link:hover {
    background-color: #66c0f4;
    color: #171a21;
    box-shadow: 0 0 20px rgba(102, 192, 244, 0.4);
    transform: translateY(-2px);
}
.install-link:active {
    transform: translateY(0);
}
.install-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.install-wrapper.hidden {
    display: none;
}
.close-banner {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 22px;
    cursor: pointer;
    font-weight: bold;
    border: 2px solid black;
    z-index: 10;
}
.close-banner:hover {
    background: #ff0000;
}
