/* Reset default margin and padding */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Set up basic styles */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #333; /* Default text color */
    line-height: 1.5;
}

/* Gradient backgrounds */
body {
    background: linear-gradient(135deg, #4e54c8, #8f94fb); /* Blue to Purple gradient */
}

/* Style for the top bar */
#top-bar {
    background: linear-gradient(89deg, rgb(21, 74, 189) 0.1%, rgb(26, 138, 211) 51.5%, rgb(72, 177, 234) 100.2%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; /* Adjusted padding for top bar */
    width: 100%; /* Ensure the top bar is full width */
    box-sizing: border-box; /* Include padding in the element's total width */
}

/* Logo styles */
#logo {
    width: 130px; /* Adjust based on your logo's size */
}

/* Menu styles */
#menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

#menu li {
    margin-left: 20px;
}

#menu a {
    text-decoration: none;
    color: black;
}

/* Main game container */
#game-container {
    background-color: #D8BFD8; /* Adjusted background color */
    text-align: center;
    padding: 40px; /* Increased padding for main container */
    width: 60%; /* Adjusted width for better layout */
    margin: auto; /* Center the game container */
}

/* Container for clue cards */
.cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Styling for clue cards */
.card {
	background-color: aqua;
    width: 100%; /* Cards take the full width of their container */
    height: 120px; /* Adjusted height for better visual balance */
    margin: 10px 0; /* Increased vertical margin for better separation */
    background-color: #F0E68C;
    border: 2px solid #DAA520;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add subtle shadow effect */
    transition: transform 0.3s ease;
}

#announcement-bar {
    background-color: #00308F;/* Dark background for contrast */
    color: #fff; /* White text color */
    text-align: center; /* Center the text horizontally */
    padding: 10px 0; /* Some padding for spacing */
    font-size: 20px; /* Larger font size for visibility */
}
.card:hover {
    transform: translateY(-5px); /* Add hover effect */
}

.card p {
    margin: 0; /* Remove default paragraph margin */
}

/* Input field and buttons container */
.input-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Input field styles */
input[type="text"] {
    padding: 10px;
    border-radius: 5px 0 0 5px;
    border: 1px solid #ccc;
    font-family: 'Comic Sans MS', cursive, sans-serif; /* Update font family */
}

/* Button styles */
button {
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

/* Video info container */
#video-info {
    margin-top: 20px;
    text-align: center;
}

/* Adjusted message and artist-song styles */
#message {
    font-size: 24px;
    margin-bottom: 10px;
}

#artist-song {
    font-size: 20px;
    font-weight: bold;
}

/* Video container styles */
#video-container {
    text-align: center;
    padding: 20px;
    display: none; /* Initially hidden */
    width: 60%; /* Adjusted width for better layout */
    margin: auto; /* Center the video container */
}
