/* Base Styles */

/* Header Layout */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.header-container h1 {
    margin: 0;
    padding: 10px;
    font-size: 24px;
    color: #1ae408;
    background-color: transparent;
}

.header-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-controls button {
    margin: 0 5px;
}

#hardModeButton {
    background-color: #013a77;
    color: white;
    font-size: 18px;
    padding: 12px 25px;
}

#hardModeButton:hover {
    background-color: #e37303;
}
body {
    font-family: 'Arial', Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    background-color: #3381d4;
    color: #489640;
    background-image: url('stormyclouds.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    padding: 20px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.column-layout {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.side-column {
    width: 15%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.main-column {
    width: 70%;
    text-align: center;
}

/* Headers */
h1 {
    font-size: 24px;
    color: #013a77;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    margin: 20px 0;
}

h3 {
    color: #ffffff;  /* Changed to white */
    font-size: 20px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Form Elements */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    color: #ffffff;  /* Changed to white for better contrast */
    font-size: 16px;
    font-weight: bold;  /* Added bold for better readability */
    margin-bottom: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);  /* Enhanced text shadow */
}

input {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #013a77;
    border-radius: 4px;
    padding: 8px;
    font-size: 16px;
    color: #013a77;
    width: 100%;
    text-align: center;
}

input[type="number"] {
    width: 150px;
}
.heading-input {
    width: 60px;
    font-family: monospace;
    text-align: center;
    padding-right: 8px;
 
}
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.controls-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.aircraft-controls {
    flex: 0 0 250px;
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
    padding: 15px;
    border-radius: 8px;
    height: fit-content;
}
html > body:nth-child(2) > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) {
    width : 160px;
    max-width : 160px;
    margin-left : 0px;
    background-color : rgba(236, 70, 70, 0.41);
    }

html > body:nth-child(2) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) {
    width : 160px;
    max-width : 160px;
    background-color : rgba(47, 84, 218, 0.58);
    }



.canvas-container {
    flex: 0 0 700px;  /* Updated from 600px to 800px */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin: 0;
    height: 700px;  /* Updated to match width */
}

#bullseyeCanvas {
    margin-left : 0px;
    padding-top : 0px;
    margin-top : 0px;
    }
/* Buttons */
button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#testModeButton {
    background-color: #28a745;
    color: white;
    font-size: 18px;
    padding: 12px 25px;
}

#testModeButton:hover {
    background-color: #218838;
}


#instructionsButton {
    background-color: #ffeb3b;
    color: #000;
}

#instructionsButton:hover {
    background-color: #fdd835;
}

#giveUpButton {
    background-color: #d9534f;
    color: white;
}

#giveUpButton:hover {
    background-color: #c9302c;
}



/* Results Table */
#results table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

#results td {
    padding: 10px;
    font-size: 16px;
}

.bold {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

#modalContent {
    position: relative;
    background-color: #242424;
    color: #ffffff;
    margin: 15% auto;
    padding: 30px;
    width: 70%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#closeModal {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#closeModal:hover {
    color: #fff;
}

.instructions-content {
    margin-top: 20px;
}

.instructions-content h3 {
    color: #1ae408;
    margin-top: 20px;
    margin-bottom: 10px;
}

.instructions-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.instructions-content li {
    margin: 8px 0;
    line-height: 1.4;
}

/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Responsive Layout für Side-by-Side Modus */
@media (max-width: 1000px) {
    .container {
        max-width: 95%;
        padding: 10px;
    }
    
    .column-layout {
        flex-direction: column;
        gap: 10px;
    }
    
    .side-column {
        width: 100%;
    }
    
    .main-column {
        width: 100%;
    }
    
    h1 {
        font-size: 18px;
        padding: 10px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .header-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Spezielle Anpassungen für halbe Bildschirmbreite */
@media (max-width: 800px) {
    body {
        padding: 10px;
        font-size: 14px;
    }
    
    .input-group {
        flex-direction: column;
        gap: 5px;
    }
    
    input[type="number"] {
        width: 100%;
        font-size: 14px;
    }
    
    button {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    canvas {
        max-width: 100%;
        height: auto;
    }
}

.canvas-container {
    flex: 0 0 700px;  /* Updated from 600px to 800px */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin: 0;
    height: 700px;  /* Updated to match width */
}

#bullseyeCanvas {
    margin-left : 0px;
    padding-top : 0px;
    margin-top : 0px;
    }
/* Buttons */
button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#testModeButton {
    background-color: #28a745;
    color: white;
    font-size: 18px;
    padding: 12px 25px;
}

#testModeButton:hover {
    background-color: #218838;
}


#instructionsButton {
    background-color: #ffeb3b;
    color: #000;
}

#instructionsButton:hover {
    background-color: #fdd835;
}

#giveUpButton {
    background-color: #d9534f;
    color: white;
}

#giveUpButton:hover {
    background-color: #c9302c;
}



/* Results Table */
#results table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

#results td {
    padding: 10px;
    font-size: 16px;
}

.bold {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

#modalContent {
    position: relative;
    background-color: #242424;
    color: #ffffff;
    margin: 5% auto;
    padding: 30px;
    width: 80%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#closeModal {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#closeModal:hover {
    color: #fff;
}

.instructions-content {
    margin-top: 20px;
}

.instructions-content h3 {
    color: #1ae408;
    margin-top: 20px;
    margin-bottom: 10px;
}

.instructions-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.instructions-content li {
    margin: 8px 0;
    line-height: 1.4;
}

/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px;
    font-weight: bold;
}

.braa-value {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Additional Information */
.additional-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.info-value {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

#resultMessage {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


/* Footer Styles */
.page-footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757171;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: 100%;
}

.page-footer p {
    margin: 10px 0;
    line-height: 1.4;
}

.page-footer a {
    color: #00ff00;
    text-decoration: none;
}

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

.page-footer button {
    margin: 10px 5px;
    padding: 8px 15px;
    background: linear-gradient(45deg, #3700ff, #00ff88);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(55, 0, 255, 0.3);
}

.page-footer .bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
}

.page-footer .bullseye-button:hover {
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}
/* Bullseye Button Style */
.control-button.bullseye-button {
    background: linear-gradient(45deg, #ff3700, #ffaa00);
    color: #fff;
    border: 1px solid #ff3700;
}

.control-button.bullseye-button:hover {
    background: linear-gradient(45deg, #ff5500, #ffcc00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 55, 0, 0.3);
}


/* Results and Guessing Sections */
.data-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.guessing-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
#guessingSection>div:nth-child(1) {
    background-image: url('spooky1.png');
    background-repeat: no-repeat;
    background-position-x: 80%;
    background-position-y: 50%;
    background-size: contain;
    padding: 20px;
}

.guess-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.input-pair {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.input-pair div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guess-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* BRAA Display */
.braa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.braa-item {
    text-align: center;
}

.braa-grid, .additional-info {
    background-color: rgba(255, 255, 255, 0.2);  /* Increased transparency */
}

.braa-label {
    color: #ffffff;  /* Changed to white */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.highlight {
    font-size: 24px; }
