/* Durber Landing Page Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    min-height: 100vh;
}
#logo {
    text-align: center;
    margin: 1rem 0 1rem 0;
}
#logo img {
    max-width: 150px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 2px solid #eee;
}
#site-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
#site-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    color: #222;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.lobby-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.game-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 160px;
    min-width: 120px;
    margin: 0.5rem auto;
}
.game-item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.game-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 2px solid #eee;
}
.game-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}
.lobby-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 1rem;
}
.contact-section {
    margin: 0 auto 2rem auto;
    text-align: center;
}
.contact-heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 1rem;
}
.contact-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem;
    width: 60px;
    height: 60px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.contact-icon {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 2px solid #eee;
}
.contact-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}
@media (max-width: 600px) {
    .lobby-container {
        gap: 1rem;
        padding: 1rem;
    }
    .game-item {
        width: 100px;
        padding: 0.5rem;
    }
    .game-icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
    }
    #logo img {
        max-width: 120px;
    }
    .contact-items {
        gap: 1rem;
    }
    .contact-item {
        width: 80px;
        padding: 0.5rem;
        height: 80px;
    }
}
