body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333333;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.navbar {
    background: #5865F2;
    color: white;
    padding: 1rem;
}

.logo {
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

main {
    margin-top: 2rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    color: #333333;
}

button {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: #FF6600;
    border: none;
    color: black;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #e55b00;
}

img {
    max-width: 100%;
}

.img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

h1, h2, h3 {
    color: #1F1F1F;
}


.img-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;           /* space between images */
    justify-content: flex-start;
}

.img-grid svg {
    width: 300px;        /* or adjust to your desired size */
    height: 300px;
    border: 1px solid #ddd;  /* optional: light border */
    border-radius: 8px;       /* optional: rounded corners */
    background: #f9f9f9;      /* optional: light background */
}


.beta-badge {
    font-size: 0.6rem;           /* smaller text */
    color: white;                /* text color */
    background-color: #ff4d4f;   /* bright red/pink background */
    padding: 2px 6px;            /* small padding */
    border-radius: 4px;          /* rounded corners */
    margin-left: 5px;            /* space from site name */
    vertical-align: super;       /* aligns it nicely with text */
}
