body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
}
/*navbar*/
nav {
    background-color: #333;
    color: white;
    padding: 10px;
    margin: 10px 10px;
    display: flex;
    justify-content: space-around;
    position: sticky;
    top: 10px;
    border-radius: 20px;
    z-index: 100;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s, box-shadow 0.3s;
}
nav a:hover {
    background-color: cornflowerblue; /* Green background on hover */
    box-shadow: 0 0 10px rgba(0, 0, 300, 0.5); /* Green glow effect */
}
.glowNav {
    padding: 10px 20px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glowNav:hover {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    background-color: #2563eb;
}
section {
    padding: 20px;
    height: 100vh;
}

.main {
    background-color: #f4f4f4;
}
.about {
    background-color: #eaeaea;
}
.second {
    background-color: #ddd;
}

/*divCenter.html*/
#movableDiv {
    background-color: red;
    position: absolute;
    top: 40px; /* Positions it below navbar (navbar height + padding) */
}

#targetDiv {
    background-color: green;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#controlsDiv {
    position: fixed;
    bottom: 20px;
    left: 50%;
    color: #eaeaea;
}

#successDiv {
    display: none;
    color: green;
    font-size: 24px;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

#controlsDiv {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#playAreaDiv {
    background-color: grey;
    width: calc(100% - 60px);
    height: calc(100vh - 160px);
    position: relative;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

/*index.html*/
#playAreaSuit {
    background: url("blackhole.gif") ;
    background-size: 100% 100%;
    width: calc(100% - 60px);
    height: calc(100vh - 160px);
    position: relative;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

#movableSuit {
    background: url('suitcase_89335195.jpg') no-repeat center center;
    background-size: cover;
    position: absolute;
}

#targetSuit {
    background-color: black; /* Semi-transparent target */
    position: absolute;
}

#successSuit {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Blurred background effect */
    backdrop-filter: blur(10px);
    z-index: 10;

    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#claimPrizeButton {
    padding: 15px 30px;
    background-color: #28a745;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

#claimPrizeButton:hover {
    transform: scale(1.1);
    background-color: #218838;
}

#prizeVideo {
    max-width: 80%;
    max-height: 80%;
    border: 3px solid white;
    display: none;
}

#controlsSuit {
    position: fixed;
    bottom: 20px;
    color: #eaeaea;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

#controlsSuit input {
    border: 2px solid blue; /* Blue border for the input boxes */
    padding: 5px;
    margin: 5px;
    font-size: 16px;
}

#controlsSuit input::placeholder {
    color: #aaa; /* Light grey color for the placeholder text */
}

#controlsSuit button {
    background-color: red; /* Red background for the button */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transitions */
}

#controlsSuit button:hover {
    background-color: green; /* Green background on hover */
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* Green glow effect */
}

/*whereItAllStarted*/
#granolaBar {
    background-color: white;
    position: fixed;
    top: 80px;
    right: 20px;
    width: 80%; /* Reduced to 60% of its original size */
    max-width: 200px; /* Optional: prevent it from becoming too large */
    height: auto;  /* Let height adjust based on content */
}

#granolaBar img {
    width: 100%; /* Ensure the image fills the div width */
    height: auto; /* Maintain aspect ratio */
}

#skibidiEmbed{
    padding: 10px;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#politicsEmbed {
    padding: 10px;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-25%, -20%) scale(0.75); /* Move it right and down a bit, and slightly scale down */
}


/*politics.html*/
#backgroundVideo {
    position: fixed; /* Fix the video to the background */
    top: 0;
    left: 0;
    width: 100%; /* Make the video cover the entire width of the screen */
    height: 100%; /* Make the video cover the entire height of the screen */
    object-fit: cover; /* Ensures the video covers the area without stretching or distorting */
    z-index: -1; /* Place the video behind all other content */
}

