/* Base styles remain the same */
body {
    background-color: #000000;
    margin: 0;
    font-family: Klavika, sans-serif;
}

.top-bar {
    display: flex;
    align-items: center;   /* vertically center logo + heading */
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 20px;
    color: #00ff00;
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 15px rgba(0, 255, 0, 0.4);
}

/* Group logo + heading together */
.branding {
    display: flex;
    align-items: center;
    gap: 15px;   /* small space between logo and heading */
}

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

.heading {
    font-size: 2.5rem;
    margin: 0;   /* remove extra margin */
}

/* Buttons stay aligned to the right */
.top-bar-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar button {
    padding: 8px 12px;
    font-size: 1rem;
    min-width: 180px;
    cursor: pointer;
    background-color: #00ff00;
    border: 2px solid #000;
    border-radius: 10px;
    transition: 0.6s;
}
.top-bar button:hover {
    color: #00ff00;
    background-color: #000000;
    border: 2px solid #00ff00;
}
/* Mid section */
.mid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.left-mid, .right-mid {
    flex: 1 1 100%;
    padding: 20px;
    box-sizing: border-box;
}

.left-mid {
    color: #00ff00;
}

.q1, .q2, .q3, .q4, .q5, .q6 {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 10px 0;
}

.a1, .a2, .a3, .a4, .a5, .a6 {
    margin: 0 0 15px 0;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
}

.right-mid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-mid img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgb(0, 255, 0);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .left-mid, .right-mid {
        flex: 1 1 50%;
    }
    .heading {
        font-size: 3rem;
    }
    .top-bar button {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 2rem;
    }
    .top-bar {
        flex-direction: column;
        align-items: center;
    }
    .top-bar button {
        width: 90%;
        font-size: 1rem;
    }
}
