body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 20px;
    color: #f0f0f0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

h1 {
    text-align: center;
    color: #ffcc00;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 15px;
    font-size: 18px;
    border: 1px solid #666;
    border-radius: 10px;
    width: 70%;
    background-color: #333333;
    color: #f0f0f0;
    margin-right: 10px; /* Add some space between input and button */
}

button {
    padding: 15px 25px; /* Adjust padding for better button appearance */
    font-size: 18px;
    border: 1px solid #ffa500;
    border-radius: 10px;
    background-color: #ffa500;
    color: #000;
    cursor: pointer;
}

button:hover {
    background-color: #cc8400;
}

.progress-bar {
    width: 100%;
    background-color: #444;
    border-radius: 10px;
    margin: 30px 0;
    overflow: hidden;
    display: none;
}

.progress-bar-fill {
    height: 20px;
    width: 0;
    background-color: #ffa500;
    transition: width 0.5s;
}

.progress-text {
    text-align: center;
    color: #f0f0f0;
    display: none;
}

.card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #444;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #2e2e2e;
    align-items: center;
}

.card img {
    border-radius: 50%;
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
}

.card .info {
    flex: 1;
    text-align: center;
}

.card .info h2 {
    margin: 0 0 10px 0;
    color: #ffa500;
}

.card .info p {
    margin: 0;
    color: #cccccc;
}

.games-list {
    display: none;
    margin-top: 20px;
    width: 100%;
}

.games-list li {
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.games-list li a {
    text-decoration: none;
    color: #ffa500;
}

.games-list li a:hover {
    text-decoration: underline;
}

.show-games {
    cursor: pointer;
    color: #000;
    background-color: #ffa500;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
}

.game-info {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #555;
}

.game-info span {
    flex: 1;
    text-align: center;
}

.game-header {
    font-weight: bold;
    color: #f0f0f0;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #ffa500;
}

footer p {
    margin: 0;
}

.game-info span {
    flex: 1;
    text-align: center;
    /* Add some spacing between the game link and game result */
    padding-right: 35px; /* Adjust this value as needed */
}


.progress-bar {
    width: 100%;
    background-color: #444;
    border-radius: 10px;
    margin: 30px 0;
    overflow: hidden;
    /* Remove 'display: none;' */
}

.progress-text {
    text-align: center;
    color: #f0f0f0;
    /* Add 'display: block;' */
    display: block;
}


.faq-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
}

.faq-container h2 {
    text-align: center;
    color: #ffcc00;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #ffa500;
    margin-bottom: 10px;
}

.faq-item p {
    color: #cccccc;
    margin: 0;
}


/* Add custom CSS for orange bullet points */
.orange-bullet-points {
    list-style-type: disc; /* Set bullet points */
}

.orange-bullet-points a {
    color: #ffa500; /* Change link color to orange */
    font-weight: bold; /* Make the text bold */
    font-size: 18px; /* Increase font size */
}

/* Add custom CSS for project descriptions */
.project-description {
    margin-top: 20px; /* Add space between projects and descriptions */
}

.project-description p {
    margin-bottom: 20px; /* Add space between project descriptions */
}
