/* Reset and Basic Styles */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box; /* Ensures padding and border are included in element's total width and height */
}

body {
 background-color: white;
 color: white;
 height: 100vh;
 width: 100vw;
 font-family: 'IBM Plex Sans', sans-serif; /* Added sans-serif as a fallback */
 display: flex;
 justify-content: center;
 align-items: center;
 position: relative; /* Ensure the body has a position context */
}

/* Container Styles */
.container {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 18px;
 padding: 20px;
}

/* Header Styles */
.header {
 font-size: 42px;
 display: flex;
 align-items: center;
 gap: 12px;
 background-color: white;
}

/* Icon Styles */
.icon {
 height: 42px;
 width: 42px;
}

/* Description Styles */
.description {
 font-size: 16px;
 color: #afafaf;
 margin-top: 10px; 
 text-align: center; /* Ensure the text is centered */
}

/* Input Styles */
.input {
 width: 100%;
 background-color: transparent;
 border: 1.5px rgb(74, 74, 74) solid;
 border-radius: 5px;
 font-size: 14px;
 padding: 12px;
 text-align: center;
 color: white;
 outline: none;
 transition: color 100ms ease-in-out; /* Added ease-in-out for smoother transition */
}

.input:disabled {
 color: #757575;
}

/* Logo Styles */
.logo {
 height: 55px;
 width: 55px;
 will-change: filter;
 transition: filter 300ms ease-in-out; /* Added ease-in-out for smoother transition */
}

.logo:hover {
 filter: drop-shadow(0 0 24px #685dff);
}

/* Footer Styles */
.footer {
 position: absolute;
 bottom: 0;
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 box-sizing: border-box;
 flex-shrink: 0;
 padding: 18px 24px 30px; /* Combined padding for better readability */
}

.footer a,
.footer a:visited {
 cursor: pointer;
 color: white;
 font-size: 16px;
 text-decoration: none;
 text-underline-offset: 2.5px;
}

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

.footer div {
 display: flex;
 gap: 26px;
}

/* Game Image Styles */
.game-image {
 width: 128px;
 height: 128px;
 object-fit: cover;
 margin-bottom: 10px;
}

/* Game Element Styles */
.game {
 display: flex;
 flex-direction: column;
 align-items: center;
 margin-bottom: 20px;
}

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

/* Header Container Styles */
.header-container {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center; /* Centers the children vertically */
 text-align: center; /* Ensures text within the container is centered */
 background-color: white;
}

.games-button {
 position: absolute;
 top: 10px; /* Adjust this value as needed to position the button from the top edge */
 right: 10px; /* Adjust this value as needed to position the button from the left edge */
 font-family: 'IBM Plex Sans', sans-serif;
 font-weight: 500;
 color: #ffffff;
 background-color: #262262;
 padding: 10px 20px;
 border-radius: 5px;
 text-decoration: none;
 transition: background-color 0.3s ease;
}

.games-button:hover {
 background-color: #4a4082; /* Slightly darker shade for hover effect */
}

.header1 {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 display: flex; /* Make the header a flex container */
 align-items: center; /* Center children vertically */
 justify-content: center; /* Center children horizontally */
 height: 60px; /* Adjust the height as needed */
 text-align: center; /* Ensure text is centered */
 z-index: 1000;
}

.header-content1 {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 height: 100%;
 background-color: white;
}

.ai-button {
 position: absolute;
 top: 10px; /* Adjust this value as needed to position the button from the top edge */
 right: 110px; /* Adjust this value as needed to position the button from the left edge */
 font-family: 'IBM Plex Sans', sans-serif;
 font-weight: 500;
 color: #ffffff;
 background-color: #262262;
 padding: 10px 20px;
 border-radius: 5px;
 text-decoration: none;
 transition: background-color 0.3s ease;
}

.ai-button:hover {
 background-color: #4a4082; /* Slightly darker shade for hover effect */
}

.bypass-button {
    position: absolute;
    top: 10px; 
    left: 10px; 
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    color: #ffffff;
    background-color: #0444bb;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.bypass-button:hover {
    background-color: #4a4082; 
}

