label {
    color: black;
}
    /* Styling for the keyboard shortcuts overlay */
    #keyboardShortcutsOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: none; /* Hide the overlay by default */
        justify-content: center;
        align-items: center;
        color: white;
        font-family: Arial, sans-serif;
        z-index: 1000;
        visibility: hidden; /* Ensure it's not visible at all initially */
    }

    /* Unique class for the content inside the overlay */
    .keyboardShortcutsContent {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 20px;
        border-radius: 10px;
        max-width: 500px;
        text-align: left;
        font-size: 16px;
        overflow-y: auto;
        max-height: 80vh;
    }

    .shortcut {
        margin: 10px 0;
    }

    .shortcut span {
        font-weight: bold;
    }

    /* Desktop-specific styles */
    @media (min-width: 1024px) {
        #keyboardShortcutsOverlay {
            top: 20px;
            left: 20px;
            width: auto;
            height: auto;
            display: flex; /* Position in top-left corner */
            justify-content: flex-start;
            align-items: flex-start;
            visibility: hidden; /* Ensure overlay stays hidden on desktop until activated */
        }

        .keyboardShortcutsContent {
            width: auto;
            max-width: 400px;
            max-height: none;
        }
    }
	
	#totalSubmissions {
	color: blue;
background-color: yellow;
}	
span#totalLosses {
            background-color: black;
        } 
	body {
            font-family: Arial, sans-serif;
			overflow-x: hidden; /* Prevent horizontal scrolling */
            margin: 20px;
            background-color: grey;
        }

        h1 {
            color: #333;
        }

        

        .team-image {
            max-width: 100%;
            height: auto;
            transition: transform 0.2s;
        }

        .team-image:hover {
            transform: scale(1.1);
        }

        .submissions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px; /* Space between submissions */
    justify-content: flex-start;
}

.submission {
    flex: 1 1 150px; /* Flexible box, grows and shrinks */
    margin-bottom: 20px;
    padding: 2px;
    max-width: 85px;
	color: black;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

        
		.name {
    display: inline-block;
	min-width: 51px;
    max-width: 119px; /* Set the maximum width for the name */
    overflow: hidden; /* Hide the overflowed part of the text */
    white-space: nowrap; /* Ensure the text doesn't wrap */
    text-overflow: ellipsis; /* Apply the ellipsis (...) */
}
div#name2 {
	    display: inline-block;
    max-width: 250px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

        .submission:nth-child(odd) {
            background-color: #cdcdcd;
        }

        .submission:nth-child(even) {
            background-color: #ffffff;
        }

        
        .win-bg {
            background-color: green;
        }
        .loss-bg {
            background-color: red;
        }
        .helmet {
            width: 88%; /* Adjust size as needed */
            height: auto;
            margin-right: 5px; /* Space between helmets */
        }

#matchup14	{
    background: rgba(84, 154, 255, 0.3); /* Light blue with 30% opacity */
}

#matchup15 {
    background: rgba(0, 82, 94, 0.3); /* 0.3 makes the background 30% opaque */
    color: black;
}
#matchup12,
#matchup11,
#matchup13,
#matchup14,
#matchup15
 {
    background: rgba(255, 99, 71, 0.3); /* Light red with 30% opacity */
}


#matchup16 {
    background: rgba(160, 79, 188, 0.3); /* Medium sea green with 30% opacity */
	color: red;
}






	.notice {
    background-color: yellow;
    color: black;
    font-size: 16px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #b41f3a;
}
.matchups-icon {
    margin-top: 10px; /* Add top margin */
    width: 100%; /* Full width */
    max-width: 477px; /* Max width */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #fcb514; /* Border color */
    border-radius: 25px; /* Rounded corners */
    padding: 10px; /* Optional: adjust if needed */
    box-shadow: -11px 9px 13px 11px rgba(0, 34, 68, 0.9); /* Retain box shadow */
    display: block; /* Center the image if desired */
    margin: 10px auto; /* Center the image horizontally and add margin */
}


.button-image {
    width: 100%; /* Image width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Match button corners */
}


/* Replace 'your-cursor-image.png' with the path to your cursor image */
body {
    cursor: url('/images/cursor4.png'), auto; /* Use 'auto' as a fallback */
}
.custom-image {
    margin-top: 10px;
    width: 99%; /* Full width */
    max-width: 477px; /* Max width */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #fcb514; /* Border color */
    border-radius: 25px !important; /* Use !important if needed */
}

/* Flash animation */
@keyframes flash {
    0% {
        opacity: 1; /* Fully visible */
    }
    50% {
        opacity: 0.5; /* Fully transparent */
    }
    100% {
        opacity: 1; /* Back to fully visible */
    }
}

/* Apply flash animation on hover */
.custom-image:hover {
    animation: flash 1s infinite; /* Apply the flash animation */
}


#loading-indicator {
            display: none; /* Hide loading indicator by default */
        }
.popup:hover {
            cursor: url('/images/cursor3.png'), auto; /* Custom cursor image */
        }
		.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* This keeps it behind other content */
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Ensure it covers the whole background */
}

.h2 {
  color: white;
  background-color: black;
}
.matchup-image {
    padding-top: 20px;
}
#fireworks-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevent interactions with the canvas */
    z-index: 9999; /* Ensure it's on top of other content */
}
#celebration-message {
            display: none;
            position: fixed;
            top: 20%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: yellow;
            background-color: black;
            font-size: 2em;
        }
#countdown {
	    width: 60%;
    font-size: 2em;
    color: yellow;
    text-align: center;
    margin: 0px;
    margin-top: 0px;
    background-color: #552583;
    padding: 10px;
    border-radius: 10px;
}
#trivia-box {
    width: 60%; /* Width for larger screens */
    max-width: 100%; /* Prevent overflow on smaller screens */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center the box */
    padding: 0 15px; /* Optional: Add padding on the right side only */
}

#trivia-answer {
    margin-top: 10px;
}

#submit-answer {
    margin-top: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

#submit-answer:hover {
    background-color: #0056b3;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    #trivia-box {
        width: 90%; /* Set width to 90% on mobile */
        max-width: 100%; /* Prevent overflow on mobile */
        padding: 0; /* Remove padding for mobile */
    }
}

/* Default styles for desktop */
.rdm-image {
    width: 400px; /* Full width on desktop */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #ccc; /* Example border */
    border-radius: 8px; /* Rounded corners */
}

/* Mobile styles */
@media only screen and (max-width: 600px) { /* Adjust the max-width as needed */
    .rdm-image {
        width: 90%; /* Adjust width for mobile */
        border: 1px solid #999; /* Thinner border for mobile */
        border-radius: 4px; /* Smaller rounded corners */
        /* Add any additional mobile-specific styles here */
    }
}
      /* Popup styling */
      .popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 0px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        width: 80vw; /* Base responsive width */
        max-width: 550px; /* Still good for desktops */
        max-height: 90vh;
        overflow-y: auto;
    }

.popup.show {
    display: block;
}
/* Hide the scrollbar for webkit browsers */
.popup::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

/* Mobile styling */
@media (max-width: 1064px) { /* Adjust the max-width as needed */
    .popup {
            width: 100vw;
    max-height: 100vh;
    padding: 0px;
    z-index: 10000;
    }

    .close-btn {
        bottom: 10px; /* Position close button at the bottom */
        right: 10px; /* Adjust right positioning for mobile */
    }
}



.popup-content2 {
    text-align: center;
    color: black;
    font-weight: bold;
}
        .hidden {
            display: none;
        }

        .team {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px;
        }

        .matchup {
            display: flex;
            justify-content: space-between; /* Creates a horizontal layout */
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }

        .team img {
    width: 75px; /* Adjust the size of helmets for desktop */
    margin-right: 10px; /* Space between helmet and team name */
}

/* Mobile styles */
@media (max-width: 768px) { /* Adjust the max-width value as needed */
    .team img {
        width: 50px; /* Size for mobile */
        margin-right: 5px; /* Adjust margin for mobile */
    }
}


        .team .team-name {
            font-weight: bold;
			color: black;
            margin-right: 10px;
        }

        .team .team-record {
    font-size: 14px; /* Default font size */
    margin-right: 10px;
    color: #666;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
    .team .team-record {
        font-size: 11px; /* Smaller font size for mobile */
    }
}


        .at-symbol {
            font-weight: bold;
            font-size: 18px;
        }

        /* Close button */
        .close-btn {
            cursor: pointer;
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
        }

        /* Form submit button */
        button[type="submit"] {
            padding: 10px 20px;
            background-color: green;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
.team-helmet2 {
    width: 75px; /* Size for desktop */
    height: 75px;
    margin-right: 10px; /* Space between helmet and team name */
    transform: rotateY(180deg);
}

/* Mobile styles */
@media (max-width: 768px) { /* Adjust the max-width value as needed */
    .team-helmet2 {
        width: 50px; /* Size for mobile */
        height: 50px;
        margin-right: 5px; /* Adjust margin for mobile */
    }
}

.submissions-table {
    width: 100%;
    border-collapse: collapse;
}

.submissions-table th,
.submissions-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.submissions-table th {
    background-color: #f2f2f2;
}
.win-bg {
    background-color: green; /* Color for winning teams */
}

.loss-bg {
    background-color: red; /* Color for losing teams */
}

/* Main Stats Summary Container */
.stats-summary {
    width: 60%;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #107c10, #76b900); /* Xbox greens */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease, background-image 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* GIF Background on Hover */
.stats-summary:hover {
    background-image: url('https://media1.tenor.com/m/JZngXrqcFjcAAAAC/xbox-xbox-360.gif'); /* Replace with actual GIF URL */
    background-size: cover;
    background-position: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    .stats-summary {
        width: 88%;
        font-size: 14px;
        margin-top: 10px;
        background-color: #76b900; /* Lighter Xbox green */
    }
}

/* Heading styling */
.stats-summary h2 {
    margin-top: 0;
    margin-bottom: 0;
    background-color: #fcb514; /* Bright Xbox yellow */
    color: #fff;
    font-size: 1.5rem;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
}

/* Paragraph text styling */
.stats-summary p {
    margin: 10px 0;
    font-size: 2.2rem;
    font-family: 'digital-7';
    padding: 10px;
    border-radius: 6px;
    color: #fcb514;
}

/* Specific color backgrounds for each stat box */
#totalSubmissions {
    background-color: #107c10; /* Xbox green */
    color: #fff; /* White text */
    padding: 10px;
    border-radius: 6px;
}

#totalWins {
    background-color: #4e8cc9; /* Xbox blue */
    color: #fff; /* White text */
    padding: 10px;
    border-radius: 6px;
}

#totalLosses {
    background-color: #ff3b30; /* Red */
    color: #fff; /* White text */
    padding: 10px;
    border-radius: 6px;
}

#winPercentage {
    background-color: #fcb514; /* Yellow */
    color: #292d3e; /* Dark gray */
    padding: 10px;
    border-radius: 6px;
}

/* Styling for highlighted numbers (wins, losses, etc.) */
.stats-summary span {
    font-weight: bold;
}

/* Specific customization for the total losses */
span#totalLosses {
    background-color: #dc3545; /* Red for losses */
}

/* Accent styles for other key numbers */
span#winPercentage {
    background-color: #107c10; /* Xbox green */
    color: #fff;
    font-weight: bold;
}

.winning-row {
    background-color: #107C10 !important; /* Xbox green */
    font-weight: bold;
    animation: glow 22s infinite, rainbowText 44s infinite; /* Adding rainbowText animation */
    font-family: 'digital-7';
    font-size: 24px;
}

/* Mobile styles */
@media (max-width: 900px) {
    .winning-row {
        font-size: 24px;
    }
}


/* Keyframes for glowing effect (without green) */
@keyframes glow {
    0% {
        box-shadow: 0 0 15px red, 0 0 30px orange; /* Initial glow (red and orange) */
    }
    14% {
        box-shadow: 0 0 15px orange, 0 0 30px yellow; /* Orange and yellow glow */
    }
    28% {
        box-shadow: 0 0 15px yellow, 0 0 30px blue; /* Yellow and blue glow */
    }
    42% {
        box-shadow: 0 0 15px blue, 0 0 30px indigo; /* Blue and indigo glow */
    }
    57% {
        box-shadow: 0 0 15px indigo, 0 0 30px violet; /* Indigo and violet glow */
    }
    71% {
        box-shadow: 0 0 15px violet, 0 0 30px red; /* Violet and red glow */
    }
    100% {
        box-shadow: 0 0 15px red, 0 0 30px orange; /* Back to red and orange glow */
    }
}

/* Keyframes for rainbow text effect (without green) */
@keyframes rainbowText {
    0% {
        color: red;
    }
    14% {
        color: orange;
    }
    28% {
        color: yellow;
    }
    42% {
        color: blue;
    }
    57% {
        color: indigo;
    }
    71% {
        color: violet;
    }
    100% {
        color: red;
    }
}




.winner-table {
    width: 60%; /* Full width */
	text-align-last: center;
    border-collapse: collapse; /* Remove double borders */
    margin-top: 20px; /* Space above the table */
    font-family: Arial, sans-serif; /* Font style */
    background-color: #552583; /* Default background color */
}

/* Mobile styles */
@media (max-width: 768px) { /* Adjust the width as needed */
    .winner-table {
	width: 100%;
        font-size: 9px; /* Smaller font size */
        margin-top: 10px; /* Less space above the table */
        background-color: #6a3d8a; /* Different background color for mobile */
    }
}

.winner-table th, .winner-table td {
    padding: 12px; /* Padding inside cells */
    text-align: left; /* Align text to the left */
    border: 1px solid #ddd; /* Light gray border */
	background-color: #00525e;
	color: white;
}

.winner-table th {
    background-color: #552583; /* Green background for header */
    color: #fcb514; /* White text color for header */
}

.winner-table tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray background for even rows */
}

.winner-table tr:hover {
    background-color: #ddd; /* Darker gray on hover */
}

.winner-table td {
    vertical-align: middle; /* Center align text vertically */
}
 .results-table {
       width: 60%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 16px;
    font-family: 'digital-7';
    margin: 0 auto;
    color: white;
    background-color: black;
}

/* Mobile styles */
@media (max-width: 768px) { /* Adjust the width as needed */
    .results-table {
	width: 100%;
        font-size: 12px; /* Smaller font size for mobile */
        margin-top: 10px; /* Less space above the table */
        padding: 10px; /* Add padding for better touch interaction */
        background-color: #333; /* Different background color for mobile */
    }
}


        .results-table, th, td {
            border: 1px solid #ddd;
        }

        th, td {
            padding: 5px;
            text-align: left;
        }

        th {
            background-color: black;
        }

       /* Set a fixed width for the table header and table cells */
.results-table th, .results-table td {
    max-width: 120px;         /* Adjust the width to fit your layout */
    white-space: nowrap;      /* Prevent text from wrapping onto a new line */
    overflow: hidden;         /* Hide the overflow */
    text-overflow: ellipsis;  /* Show ellipsis when text is cut off */
}

.results-table th {
    text-align: center; /* Center the text in the header */
}

/* Optional: If you want to enforce the 30-character limit */
.results-table td {
    text-align: center;
    width: 200px; /* Adjust width to ensure the name fits */
}

@media (max-width: 1000px) {
  .under-construction {
    display: none;
  }
}

.close-btn {
    position: static;
    bottom: 10px; /* Positioning at the bottom */
    right: 10px;
    cursor: pointer;
    font-size: 24px; /* Adjust the font size as needed */
    width: 50px; /* Set a width */
    height: 50px; /* Set a height */
    background-color: red; /* Set background color to red */
    color: white; /* Change text color to white for contrast */
    border: none; /* Remove default border */
    border-radius: 5px; /* Optional: add rounded corners */
    text-align: center; /* Center the text */
}

.rdm-button {
	padding: 10px 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.rdm-button img {
    width: 100%; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
}
button:hover {
    background-color: #fcb514; /* Change background on hover */
    color: #552583; /* Change text color on hover */
    animation: pulse 0.6s infinite; /* Start the pulse animation on hover */
}

@keyframes pulse {
    0% {
        transform: scale(1); /* Initial scale */
    }
    50% {
        transform: scale(1.1); /* Scale up to 1.1 */
    }
    100% {
        transform: scale(1); /* Scale back to initial size */
    }
}
#searchBar {
    width: 50%; /* Full width with some padding */
    max-width: 200px; /* Maximum width for larger screens */
    padding: 10px 15px; /* Padding for comfort */
    margin: 20px auto; /* Centering the input */
    border: 2px solid #00525e; /* Border color */
    border-radius: 25px; /* Rounded corners */
    font-size: 16px; /* Font size */
	background-color: #552583;
	color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    transition: border-color 0.3s ease; /* Smooth border color transition */
}

#searchBar:focus {
    outline: none; /* Remove default outline */
    border-color: #552583; /* Change border color on focus */
}

#searchBar::placeholder {
    color: #fcb514; /* Placeholder color */
    opacity: 1; /* Ensure opacity for the placeholder */
}
button {
    background-color: #552583; /* Match header color */
    color: #fcb514; /* Match header text color */
	border: 2px solid #b41f3a; /* Border color */
    border-radius: 25px; /* Rounded corners */
    
    padding: 10px 20px; /* Padding for comfort */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.2s; /* Smooth transitions */
}

#matchup3

 {
    background: rgba(0, 82, 94, 0.3); /* 30% opacity */
}
#matchup4,
#matchup5,
#matchup6 {
	background: rgba(111, 66, 111, 0.3);
}
#matchup3,
#matchup4,
#matchup5,
#matchup7,
#matchup8,
#matchup9,
#matchup10

 {
    background: rgba(252, 181, 20, 0.3); /* 30% opacity */
}

#matchup2,
#matchup1 {
    background: rgba(6, 98, 207, 0.3); /* 30% opacity */
}
#comment-input {
    width: 50%;
    padding: 10px;
}


.comment-wrapper {
	width: 50%;
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack elements vertically */
}

.comment-timestamp {
    color: #43b748; /* Xbox green color */
    font-size: 10px; /* Optional: smaller size */
    margin-left: 10px; /* Space between text and timestamp */
    text-transform: uppercase; /* Force letters to be capital */
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Transparent initially */
    transition: visibility 0.2s, opacity 0.2s ease-in-out; /* Smooth transition */
}

.chat-box:hover .comment-timestamp {
    visibility: visible; /* Show on hover */
    opacity: 1; /* Fade in */
}




.comment-text {
    color: #FCB514; /* Color for the message */
    margin-top: 4px; /* Optional: space between timestamp and message */
}

.responsive-image {
            width: 24%;
            height: auto; /* Maintain aspect ratio */
        }

        @media (max-width: 600px) {
            .responsive-image {
                width: 100%; /* Change width on mobile devices */
            }
        }
/* Default image size for smaller screens (e.g., mobile) */
.comment-image {
    display: block; /* Ensure images are on their own line */
    max-width: 150px;
    width: 100%; /* Ensure images are responsive on small screens */
    height: auto;
}

/* Larger image size for wider screens (e.g., desktop) */
@media (min-width: 768px) {
    .comment-image {
        max-width: 220px;
    }
}
.comment a {
    color: blue; /* Change link color */
    text-decoration: underline; /* Underline links */
}

.chat-box {
    background-color: black;
    color: yellow;
    border: 1px solid #ccc;
    width: 93%;
    height: 223px; /* You can adjust this height as needed */
    overflow-x: hidden;
    overflow-y: auto; /* Enable vertical scrolling */
    white-space: normal;
    padding: 10px;

    /* Hide scrollbar for Chrome, Safari, and Opera */
    scrollbar-width: none; /* Firefox */
}

.chat-box::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}


.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 50%; /* Center horizontally */
    top: 50%; /* Center vertically */
    transform: translate(-50%, -50%); /* Adjust position to center */
    width: 80%; /* Responsive width */
    max-width: 100%; /* Maximum width */
    overflow: hidden; /* Hide the scrollbar but keep it scrollable */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

.modal-content {
    max-height: 100%; /* Limit the height of modal content */
    overflow-y: auto; /* Enable vertical scrolling within the content */
    padding: 20px; /* Optional padding for content */
}



#bye-teams {
	background-color: aquamarine;
    text-align: center;
	color: black;
    margin-top: 20px;
}

#bye-teams .bye-team {
    display: inline-block;
    margin: 10px;
    text-align: center;
}

#bye-teams .bye-team img {
    max-width: 75px; /* Set maximum width to 50px */
    height: auto; /* Maintain aspect ratio */
}

#bye-teams .team-name {
    display: block;
    font-weight: bold;
    margin-top: 5px;
}
h3 {
    background-color: black;
    color: red;
}
.popup4 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensures it appears above other content */
}

.popup4 .close {
  color: #aaa; /* Close button color */
  position: absolute; /* Position relative to the popup content */
  top: 10px; /* Adjust the distance from the top */
  right: 10px; /* Adjust the distance from the right */
  font-size: 28px; /* Font size for close button */
  font-weight: bold; /* Bold text */
  cursor: pointer; /* Change cursor to pointer on hover */
}

.popup4 .popup-content {
  position: relative; /* Set position to relative for absolute positioning of close button */
  background-color: white; /* White background for content */
  padding: 20px;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Shadow for depth */
  text-align: center;
  width: 80%; /* Width of the popup */
  max-width: 600px; /* Max width of the popup */
  
  /* Add these properties for scrolling */
  max-height: 80vh; /* Max height of the popup (80% of the viewport height) */
  overflow-y: auto; /* Enable vertical scrolling if content exceeds height */
  
  /* Hide scrollbar while keeping content scrollable */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}

.popup4 .popup-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}


.popup4 .close:hover,
.popup4 .close:focus {
  color: black; /* Change color on hover/focus */
  text-decoration: none; /* Remove underline */
  cursor: pointer; /* Pointer cursor for better UX */
}

/* Additional styling for buttons and images */
.popup4 .download-button {
  display: inline-block; /* Make buttons inline-block */
  margin: 10px; /* Space between buttons */
}

.popup4 .custom-image {
  max-width: 100%; /* Responsive image */
  height: auto; /* Maintain aspect ratio */
}

.ticker-container {
    background-color: black;  /* Background color */
    width: 100%;              /* Full width */
    position: fixed;          /* Fixed position */
    top: 0;                   /* Align to the top of the page */
    left: 0;                  /* Align to the left */
    z-index: 9999;           /* Ensure it appears above other content */
    overflow: hidden;         /* Hide overflow */
}


.ticker {
    display: contents;      /* Keep it in a single line */
    font-size: 36px;           /* Font size */
    white-space: nowrap;       /* Prevent text from wrapping */
    font-family: 'digital-7', sans-serif;
    padding-left: 100%;        /* Start off-screen */
    overflow: hidden;          /* Hide overflow to avoid gaps */
}

@keyframes scroll {
    0% {
        transform: translateX(0);     /* Start at 0 position */
    }
    100% {
        transform: translateX(-100%);  /* Scroll completely to the left */
    }
}


@font-face {
    font-family: 'DigiNum';
    src: url('/fonts/DigiNum.woff') format('woff');
    font-weight: normal; /* Specify font weight if needed */
    font-style: normal;  /* Specify font style if needed */
}
@font-face {
    font-family: 'digital-7';
    src: url('/fonts/digital-7.ttf') format('truetype');
    font-weight: normal; /* Specify font weight if needed */
    font-style: normal;  /* Specify font style if needed */
}
/* Adjusting the main container to have more columns */
.h5p-memory-game .h5p-memory-game-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr); /* Change to desired column count */
    gap: 10px; /* Space between cards */
}

/* Make the cards responsive */
.h5p-memory-game .h5p-memory-game-card {
    width: auto; /* Allow cards to stretch */
    height: 100px; /* Adjust the height of the cards as necessary */
}

.control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    font-size: 24px; /* Adjust font size as needed */
    color: white; /* Text color */
    padding: 10px; /* Spacing */
    z-index: 1001; /* Ensure controls are above the ticker */
}

.left {
    left: 10px; /* Position on the left */
}

.right {
    right: 10px; /* Position on the right */
}

  /* Make sure the canvas is positioned on top of the entire page */
  #snowCanvas {
    position: fixed;  /* Fix the canvas in place */
    top: 0;           /* Align it at the top of the screen */
    left: 0;          /* Align it at the left of the screen */
    width: 100%;      /* Make it stretch across the full width of the screen */
    height: 100%;     /* Make it stretch across the full height of the screen */
    z-index: 9999;    /* Ensure it's on top of all other content */
    pointer-events: none; /* Prevent the canvas from blocking interactions with other elements */
  }
  
.christmas-lights {
    position: fixed;
	top: 13px;
    left: 0; /* Change to 'left: 0;' or 'right: 0;' for vertical strings */
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    pointer-events: none; /* So it doesn't interfere with clicks on the page */
}

.christmas-lights::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #333; /* Color of the wire */
}

.christmas-lights div {
    position: relative;
    width: 20px;
    height: 35px;
    background-color: red;
    border-radius: 50% 50% 50% 0; /* Teardrop shape */
    transform: rotate(-45deg);
    box-shadow: 0 0 15px currentColor;
    animation: twinkle 2s infinite ease-in-out;
}

.christmas-lights div::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
 #turkey {
            position: absolute;
            bottom: 10px; /* Position the turkey at the bottom */
            font-size: 50px; /* Turkey size */
            transition: transform 5s linear; /* Smooth transition for the movement */
        }
		/* Ensure the falling leaves canvas fills the entire viewport */
#fallCanvas {
    position: fixed; /* Keep it fixed on the screen */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    pointer-events: none; /* Disable interactions with the canvas (can click through) */
    z-index: 9999; /* Ensure it stays on top of everything else */
    opacity: 0.8; /* Optional: set the opacity to make it look a bit more subtle */
}
/* Unique body content */
        .fallContent {
            position: relative;
            z-index: 1;
            padding: 20px;
        }
		
		.hidden {
    display: none;
}
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.welcome-modal img {
    max-width: 80%;
    height: auto;
}

/* Hides the modal when it's removed */
.welcome-modal.hidden {
    display: none;
}
#turkey {
    position: fixed; /* Keeps the element in place when scrolling */
    bottom: 5px; /* Distance from the top of the page */
    left: 20px; /* Distance from the left of the page */
    z-index: 999; /* Ensure it stays on top of other elements */
}

#turkey img {
    width: 75px; /* Adjust size of the image */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out; /* Smooth effects */
}

#turkey img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    opacity: 0.9; /* Slightly fade the image on hover */
}
#rainCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000; /* Ensure it's behind other content */
  pointer-events: none; /* Prevent interaction with the canvas */
}
.pin-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

#pin-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pin-input {
    width: 40px;
    height: 40px;
    font-size: 24px;
    text-align: center;
}

.success-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
.submit-location {
	width: 100px;
 }
#location-prompt {
    position: absolute;
    top: 50%;
    width: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1d1d1d; /* Dark background */
    padding: 20px;
    border: 2px solid #4CAF50; /* Xbox green border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Shadow effect */
    z-index: 1002;
    color: white; /* Text color */
}

input#location-input {
    background-color: white; /* Xbox green */
    color: white; /* Text color */
    border: none; /* No border */
    padding: 10px; /* Padding */
    border-radius: 4px; /* Rounded corners */
    font-size: 16px; /* Larger font size */
    transition: background-color 0.3s ease; /* Transition for hover effect */
}

input#location-input:hover {
    background-color: #45a049; /* Darker green on hover */
}

input#location-input:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px #4CAF50; /* Glow effect on focus */
}




iframe {
    display: block;
    margin: 10px 0; /* Add spacing */
}

.typing-indicator {
    width: 100%; /* Size of the circle */
    height: 20px; /* Size of the circle */
	font-family: 'digital-7';
    border-radius: 0%; /* Make it a circle */
    background-color: red; /* Default color (not typing) */
	text-align: center; /* Center text */
    display: inline-block; /* Ensure it aligns properly */
	overflow: hidden; /* Hide overflow text */
    transition: background-color 0.3s; /* Smooth transition for color change */
    visibility: hidden; /* Start hidden */
}

#emoji-picker-container {
  position: absolute; /* Change as needed */
  bottom: 10px; /* Adjust position */
  right: 10px; /* Adjust position */
  z-index: 1000; /* Ensure it appears above other elements */
}

/* Default styles for normal screens (above 1200px) */
.chat-button {
    position: fixed;
    bottom: 5px; /* Off-screen initially */
    right: 15px;
    width: 140px;
    z-index: 1001;
    transition: background-color 0.3s, bottom 0.3s;
}


/* Styles for screens under 1200px */
@media (max-width: 1200px) {
    .chat-button {
        position: fixed;
        bottom: -10px; /* Make it visible on-screen */
        right: 10px; /* Adjust position */
        /* background-color: #107c10; /* Xbox dark green */
        color: white;
        border: none;
        width: 125px;
        padding: 10px 0; /* Increased padding for better size */
        border-radius: 20px;
        cursor: pointer;
        z-index: 999;
        transition: background-color 0.3s; /* Smooth transition */
        box-shadow: 0 0 0px rgba(16, 124, 16, 0.4); /* Subtle green glow */
    }
}

/* Styles when scrolled all the way to the bottom */
.chat-button.at-bottom {
    bottom: 10px; /* Moves the button back on-screen */
    background-color: #ff9900; /* Example: change the background color */
    /* You can add additional styles if needed */
    box-shadow: 0 0 10px rgba(16, 124, 16, 0.8); /* Example: add shadow when at bottom */
}

   .chat-button:hover {
    background-color: #FF6A00; /* Change background color on hover */
    /* Apply shadow only to the left and right sides */
    box-shadow: 
        10px -50 15px rgba(67, 183, 72, 0.6), /* Right side shadow with blur */
        -10px -50 15px rgba(67, 183, 72, 0.6); /* Left side shadow with blur */
}



    /* Chat popup window - hidden by default */
    /* Default styles for normal screens (above 1200px) */
.chat-popup {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 0px; /* Position it above the task manager */
    right: 20px;
    padding-bottom: 20px;
    background-color: gray; /* Dark background */
    border: 1px solid #107c10; /* Xbox dark green border */
    border-radius: 10px 10px 0 0;
    width: 349px;
    max-height: 470px;
    z-index: 1000;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Styles for screens under 1200px */
@media (max-width: 1200px) {
    .chat-popup {
        display: none; /* Keep it hidden initially */
        position: fixed;
        bottom: 0px; /* Position at the bottom */
        right: 20px;
        padding-bottom: 20px;
        background-color: gray; /* Dark background */
        border: 1px solid #107c10; /* Xbox dark green border */
        border-radius: 10px 10px 0 0;
        width: 349px;
        max-height: 470px;
        z-index: 1000;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }
}


    /* Chat header with close button */
    .chat-header {
        background-color: #107c10; /* Xbox dark green */
        color: white;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

   .modalmap {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
    justify-content: center;
    align-items: center;
}

.overlaymap {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}











    /* Styles for the name input field */
#name-input {
    width: 60%;
    padding: 12px; /* Increased padding for better size */
    margin: 0px 0px;
    border-radius: 5px;
    border: 2px solid #107c10; /* Xbox dark green border */
    background-color: #2d2d2d; /* Darker input background */
    color: white; /* White text */
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition */
    outline: none;
    box-shadow: inset 0px 0px 5px rgba(67, 183, 72, 0.2); /* Green inner glow */
}

/* Styles for the comment input field */
#comment-input {
    width: 80%;
    padding: 12px; /* Increased padding for better size */
    margin: 5px 22px;
    border-radius: 5px;
    border: 2px solid #107c10; /* Xbox dark green border */
    background-color: #2d2d2d; /* Darker input background */
    color: white; /* White text */
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition */
    outline: none;
    box-shadow: inset 0px 0px 5px rgba(67, 183, 72, 0.2); /* Green inner glow */
}

/* Focus styles for both input fields */
#name-input:focus,
#comment-input:focus {
    border-color: #43b748; /* Lighter green on focus */
    box-shadow: 0 0 10px #43b748, inset 0 0 10px rgba(67, 183, 72, 0.5); /* Bright green glow */
}


    
	/* Send button */
    #send-comment {
            background-color: #107c10;
    color: white;
    margin-left: 50px;
    padding: 18px 0px 0px;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(67, 183, 72, 0.4);
    }

    #send-comment:hover {
        background-color: #43b748; /* Lighter green on hover */
        box-shadow: 0 0 20px rgba(67, 183, 72, 0.6); /* Intense green glow on hover */
    }

    /* Modal for displaying images */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: 700px;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .modal-content {
        display: block;
        width: 100%;
    }

    
	.chat-box audio {
	width: 97%;
	}
	

    #send-comment:hover {
    background-color: #0072D2; /* PlayStation blue on hover */
    box-shadow: 0 0 20px rgba(0, 114, 210, 0.6); /* Intense blue glow on hover */
}
/* Modal styles */
/* Modal styles */
.emoji-modal {
    display: none; /* Hidden by default */
    position: absolute; /* Position relative to the chat box */
    bottom: 1px; /* Adjust this value to move the modal above the chat input */
    right: 0px; /* Align it to the right side of the chat box */
    z-index: 1000; /* Sit on top of other elements */
    background-color: white; /* White background for the modal */
    border: 1px solid #888; /* Border for the modal */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Padding inside the modal */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    max-height: 416px; /* Set a maximum height */
    overflow-y: auto; /* Enable vertical scroll if needed */
}

/* Close button styles */
.close-emoji-modal {
     color: #4caf50;
    float: right;
    font-size: 50px;
    font-weight: bold;
    top: 7%;
    transition: color 0.3s;
	z-index: 999;
}

.close-emoji-modal:hover,
.close-emoji-modal:focus,
.close-gif-modal:hover,
.close-gif-modal:focus {
    color: black;
}

/* Container styles for emojis */
.emoji-container {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0px;
}



/* Emoji styling */
.emoji {
    width: 50px; /* Set width for emojis */
    height: 50px; /* Set height for emojis */
    cursor: pointer; /* Pointer on hover */
    font-size: 36px; /* Larger font size for emojis */
}

/* Container styles for GIFs */
.gif-container {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack GIFs vertically */
    gap: 10px; /* Space between GIFs */
}

/* GIF styling */
.gif {
    max-width: 100%; /* Ensure GIFs scale correctly */
    max-height: 120px; /* Set a height limit */
    cursor: pointer; /* Pointer on hover */
    border-radius: 5px; /* Optional: Rounded corners for GIFs */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Optional: Shadow for GIFs */
}

/* Style for buttons in the Emoji modal */
.emoji-modal button {
    background-color: #552583; /* Dark purple background */
    color: #fcb514; /* Gold text color */
    border: 2px solid #b41f3a; /* Red border */
    border-radius: 25px; /* Rounded corners */
    padding: 4px 10px; /* Padding for better click area */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer on hover */
    transition: background-color 0.3s ease, transform 0.2s; /* Transition for hover effects */
}

/* Hover effect for emoji buttons */
.emoji-modal button:hover {
    background-color: #6a4f99; /* Lighter purple on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Focus effect for emoji buttons */
.emoji-modal button:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px #fcb514; /* Add a glow effect */
}
#gif-modal {
    position: absolute;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay */
}



.close {
        color: #4caf50;
    float: right;
    font-size: 50px;
    font-weight: bold;
    top: 7%;
    transition: color 0.3s;
	z-index: 999;
}

.close:hover,
.close:focus {
    color: #ffffff; /* Bright white on hover for contrast */
    text-decoration: none;
    cursor: pointer;
}

#gif-container {
    height: 413px; /* Fixed height for the GIF container */
    overflow-y: auto; /* Scroll if GIFs exceed height */
    margin-bottom: 10px; /* Space below the GIF container */
    display: flex; /* Flexbox for layout */
    flex-direction: column;
    justify-content: center; /* Center the GIF */
    align-items: center; /* Center the GIF vertically */
    background-color: #2a2a2a; /* Darker background for GIF container */
    border-radius: 8px; /* Rounded corners for the container */
    padding: 10px; /* Padding inside the container */
    
    /* Hide scrollbar in WebKit browsers (Chrome, Safari, etc.) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer and Edge */
}

#gif-container::-webkit-scrollbar {
    display: none; /* Hide the scrollbar for WebKit browsers */
}


.gif {
    cursor: pointer; /* Pointer cursor on GIFs */
    border-radius: 8px; /* Rounded corners for GIF images */
    max-width: 100%; /* Responsive GIF size */
    max-height: 100%; /* Ensure GIF does not exceed container */
    transition: transform 0.2s; /* Animation for scaling effect */
}

.gif:hover {
    transform: scale(1.05); /* Scale GIF on hover for a pop effect */
}

#search-input {
    width: calc(80% - 30px); /* Full width minus padding */
    max-width: 400px; /* Maximum width of 100 characters */
    padding: 8px; /* Padding around input */
    border: 1px solid #4caf50; /* Xbox green border */
    border-radius: 4px; /* Rounded corners */
    margin-bottom: 5px; /* Space below the input */
    box-sizing: border-box; /* Ensure padding is included in the width */
    background-color: #333; /* Dark input background */
    color: #ffffff; /* White text for input */
}

#search-button {
    padding: 8px 12px; /* Padding around button */
    background-color: #4caf50; /* Xbox green background */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.3s; /* Smooth background color transition */
}

#search-button:hover {
    background-color: #45a049; /* Darker green on hover */
}

#buttonbox1 {
    display: flex; /* Align items in a row */
    justify-content: center; /* Center the buttons horizontally */
    align-items: center; /* Center vertically */
    gap: 0px; /* Add space between the buttons */
    padding-top: 5px; /* Add padding to the container */
}

/* Style for buttons inside #buttonbox1 */
#buttonbox1 button {
    background-color: #107C10; /* Xbox green background */
    border: 2px solid #000; /* Black border */
    padding: 0px; /* More padding for larger buttons */
    border-radius: 50%; /* Make the button circular */
    font-size: 26px; /* Larger text size */
    width: 47px; /* Set width to make it circular */
    height: 60px; /* Set height to make it circular */
}

/* Hover effect for the buttons */
#buttonbox1 button:hover {
    background-color: #0D6A0D; /* Darker Xbox green on hover */
}

/* Style for the color picker */
#buttonbox1 input[type="color"] {
    width: 60px; /* Make the color picker circular */
    height: 60px; /* Match the size of the buttons */
    border-radius: 50%; /* Make it circular */
    border: 2px solid #000; /* Black border */
    padding: 0;
    background-color: #107C10; /* Default background */
    cursor: pointer;
}

/* Center the text and elements */
#buttonbox1 button, #buttonbox1 input[type="color"] {
    display: flex;
    justify-content: center;
    align-items: center;
}
.emoji-modal {
    overflow: auto; /* Enable scrolling if needed */
    
    /* Hide scrollbar in WebKit browsers (Chrome, Safari, etc.) */
    scrollbar-width: none; /* Hide scrollbar in Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar in Internet Explorer and Edge */
}

.emoji-modal::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}
/* Common Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 50%; /* Center horizontally */
    top: 50%; /* Center vertically */
    transform: translate(-50%, -50%); /* Adjust position to center */
    width: 80%; /* Responsive width */
    max-width: 700px; /* Maximum width */
    overflow: auto; /* Enable scroll if needed */
}

/* Image Modal Styles */
.image-modal {
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

/* GIF Modal Styles */
.gif-modal {
    background-color: rgba(0, 0, 0, 0.9); /* Darker background for GIF modal, if desired */
}

/* Modal Content Styles */
.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    display: block;
    max-width: 100%; /* Ensure the image fits the modal */
}

/* Close Button Styles */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white; /* Change to your preferred color */
    cursor: pointer;
}
img#modal-image {
	width: 73%;
	}
	.close22 {
    position: fixed; /* Fixed position to stay in the viewport */
    top: 20px; /* Distance from the top of the viewport */
    right: 20px; /* Distance from the right edge of the viewport */
    font-size: 30px; /* Adjust font size as needed */
    color: white; /* Change to your preferred color */
    cursor: pointer; /* Change cursor to pointer */
    z-index: 1001; /* Ensure it appears above the modal content */
}
em-emoji-picker {
    height: 483px;
	}
<!-- button#emoji-button { -->
	<!-- background-color: #fcb514; -->
	<!-- } -->
<!-- button#gif-button { -->
    <!-- background-color: #b41f3a; -->
    <!-- border: dotted; -->
    <!-- border-color: white; -->
    <!-- border-block: none; -->
	<!-- } -->
button#submit-location {
	width: 100px;
	margin-top: 13px;
	}
button#close-modal7 {
	    width: 35px;
    background-color: red;
    margin-top: -15px;
	}

button#submit-button20 {
    background-color: #107C10;
    border: 2px solid #000;
    padding: 0px;
    border-radius: 50%;
    font-size: 26px;
    width: 192px;
    height: 60px;
	}

button#close-success-modal {
width: 108px;
}

.task-manager {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #34D; /* or any preferred color */
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: space-between; /* Distributes space evenly between items */
}

.status-indicators {
    display: flex; /* Ensures child elements are displayed in a row */
    align-items: center; /* Centers items vertically */
}

/* Hide the task manager on screens 1200px or smaller */
@media (max-width: 1200px) {
    .task-manager {
        display: none;
    }
}

.start-button {
    margin-right: 20px;
    color: white;
	    font-family: 'digital-7', sans-serif;
		font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

.clock {
        color: white;
    font-family: 'digital-7', sans-serif;
    margin-left: auto;
    font-size: 26px;
    background-color: black;
    margin-right: 20px;
    padding: 10px;
    border: double;
    border-radius: 50%;
}
button#start-button {
        background-color: black;
    border: double;
}
.overlay-menu {
    position: fixed;
    left: 0;
    right: 0; /* Ensure this is correct based on your layout */
    width: 30%;
    height: 60%;
    bottom: 50px; /* Maintain the original bottom value */
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 2000;
    overflow-y: scroll; /* Enable scrolling */
    overflow-x: hidden; /* Hide horizontal overflow */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari) */
.overlay-menu::-webkit-scrollbar {
    display: none; /* Hides the scrollbar */
}

/* Optional: Add styles to child elements for better spacing */
.overlay-menu > * {
    margin-bottom: 10px; /* Space between items */
}


.hidden {
    display: none;
}

.app-shortcut {
    background-color: #555; /* or any preferred color */
    color: white;
    border: none;
    margin: 5px;
    cursor: pointer;
    padding: 30px;
}
/* Tic Tac Toe Modal Styles */
/* Tic Tac Toe Modal */
.modalTTT {
        display: none;
    position: fixed;
    z-index: 1001;
    left: 41%;
    top: 31%;
    width: 361px;
    height: 465px;
	 overflow: hidden; /* Hides the scrollbar */
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modalTTT .modal-content {
    background-color: #1f1f1f; /* Dark background */
    color: #fff; /* White text */
    margin: 10% auto; /* 10% from the top and centered */
    padding: 30px;
    border: none; /* No border for cleaner look */
    width: 60%; /* Narrower modal */
    max-width: 500px; /* Max width for responsiveness */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7); /* Shadow for depth */
    border-radius: 10px; /* Rounded corners */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth animations */
}

.modalTTT .modal-content:hover {
    transform: translateY(-10px); /* Slightly lift modal on hover */
}

.modalTTT .close-button {
    color: #ff5e57; /* Bright red close button */
    float: right;
    font-size: 28px;
    font-weight: bold;
    border: none;
    background: transparent;
    cursor: pointer;
}

.modalTTT .close-button:hover {
    color: #ff3b30; /* Darker red on hover */
}
#tttwords {
        font-size: 18px;
    font-weight: bold;
    color: #b41f3a;
    padding: 7px;
    background-color: #fcb514;
}

span#closeModalTTT {
    background-color: red;
    font-size: 45px;
}
span#closeModalPB {
    background-color: red;
    font-size: 45px;
}
.tic-tac-toe-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
    background-color: #333; /* Dark background for the board */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

.tic-tac-toe-board div {
    width: 100px; /* Larger size for better visibility */
    height: 100px;
    background-color: #444; /* Dark grey cells */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px; /* Bigger text for better visibility */
    color: #fff; /* White text for contrast */
    cursor: pointer;
    border-radius: 8px; /* Rounded corners for cells */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
}

.tic-tac-toe-board div:hover {
    background-color: #555; /* Slightly lighter grey on hover */
    transform: scale(1.1); /* Enlarge cell slightly on hover */
}

.tic-tac-toe-board div.X {
    color: #ff4757; /* Bright red for X */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Shadow for depth */
}

.tic-tac-toe-board div.O {
    color: #1e90ff; /* Bright blue for O */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Shadow for depth */
}



#breakImage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%; /* Adjust size as needed */
  display: none; /* Initially hidden */
  z-index: 9999; /* Ensure it appears above other content */
}

body {
  transition: transform 0.5s ease, clip-path 2s ease;
}

/* First Pivot: Rotate left */
body.pivot-left {
  transform: rotate(-15deg);
}

/* Second Pivot: Rotate right of center */
body.pivot-right {
  transform: rotate(15deg);
}

/* Third Pivot: Rotate further left */
body.pivot-further-left {
  transform: rotate(-16deg);
}

/* Break Phase */
body.break {
  transform: none;
  animation: breakScreen 2s forwards;
}

/* Example animation for break screen effect */
@keyframes breakScreen {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}


@keyframes breakScreen {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
  }
  100% {
    clip-path: polygon(0 0, 20% 0, 100% 100%, 0 20%);
  }
}

/* This class will be applied when shaking */
.shake {
  animation: shakeAnimation 0.2s infinite;
}

@keyframes shakeAnimation {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(var(--shake-x, 5px)) translateY(var(--shake-y, 0));
  }
  50% {
    transform: translateX(var(--shake-x, -10px)) translateY(var(--shake-y, 0));
  }
  75% {
    transform: translateX(var(--shake-x, 5px)) translateY(var(--shake-y, 0));
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
/* Target the specific image using its class */
.custom-home-icon {
	position: relative;
  height: 40px;
  top: 0px;
  width: auto; /* You can adjust these styles further */
  border: 2px solid #000; /* Example: Add a black border */
  border-radius: 5px; /* Example: Round the corners */
}
.Mollie-custom-home-icon {
    position: relative;
    float: inline-end;
    height: 41px;
    align-self: center;
    top: 0px;
    width: 41px;
    border: 2px solid #fcb514;
    border-radius: 5px;
}
@media screen and (max-width: 1000px) {
  .Mollie-custom-home-icon {
    float: none;
  }
}

/* Basic styles for the hamburger menu */
.hamburger-menu {
    font-size: 30px;
    background-color: #00525e;
    color: white;
    cursor: pointer;
    border: 7px solid black;
    display: inline-block;
    padding: 10px;
}
.hamburger-menu-content {
  position: fixed;
  top: 102px;
  right: 10px;
  background-color: #00525e;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  min-width: 200px;
  transform-origin: top right;

  /* Animation style */
  opacity: 0;
  transform: scale(0.5) translateY(-30px);
  clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 0); /* Slide effect */
  pointer-events: none;
  transition: all 0.5s ease-in-out, clip-path 11.7s ease-in-out;
}

.hamburger-menu-content.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  pointer-events: auto;
}



.hamburger-menu-content ul {
    list-style: none; /* Removed bullet points */
    padding: 0;
    margin: 0;
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Align items vertically */
    gap: 15px; /* Add consistent spacing between items */
}

.hamburger-menu-content li {
    margin: 0; /* Remove default list margin */
}

.hamburger-menu-content a {
    color: #ffffff; /* Ensure the text is white */
    text-decoration: none; /* Clean, no underline */
    font-size: 16px; /* Adjusted font size */
    font-weight: 500; /* Slightly bolder for readability */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
}

.hamburger-menu-content a:hover {
    text-decoration: underline; /* Subtle hover effect */
    color: #00ffcc; /* Complementary color for hover */
}

.hamburger-menu-content:before {
    content: ""; /* Add a small arrow to point to the hamburger icon */
    position: absolute;
    top: -10px;
    right: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #00525e transparent;
}

@media (max-width: 480px) {
    .hamburger-menu-content {
        top: 102px;
        right: 5px;
        padding: 10px 15px; /* Reduced padding for smaller screens */
        min-width: 150px; /* Smaller width for small screens */
    }

    .hamburger-menu-content a {
        font-size: 14px; /* Slightly smaller text for compact design */
    }
}



.cloud10 {
       display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #107C10, #b41f4a);
    color: white;
    padding: 0px 0px;
    text-align: center;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 35px;
    z-index: 5;
}

html, body {
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}




/* Style for the countdown element */
#countdown {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 0px;
    width: 98%;
    JUSTIFY-SELF: ANCHOR-CENTER;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Style for the actions container (buttons and links) */
.actions {
    display: flex;
    flex-direction: row; /* Arrange buttons horizontally */
    gap: 20px; /* Space between buttons */
}

/* Style for buttons and links */
button, .home-btn {
    padding: 12px 25px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 50px; /* Rounded button edges */
    border: none;
    background-color: #ffffff; /* White background for the buttons */
    color: #0072ff; /* Blue color for the text */
    transition: all 0.3s ease-in-out;
}
#submit-predictions-button {
    margin-top: 15px;
    padding: 12px 30px;
    background-color: #107c10;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid yellow; /* Yellow border by default */
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 10px #43b748;
    transition: background-color 0.3s, box-shadow 0.3s, border 0.3s;
}

#submit-predictions-button:hover {
    background-color: orange;  /* Change on hover */
    border: 2px solid red; /* Red border on hover */
}



/* Hover effects for buttons and links */
button:hover, .home-btn:hover {
    background-color: #0072ff; /* Blue background on hover */
    color: white; /* White text on hover */
    transform: translateY(-3px); /* Slight lift effect */
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    #countdown {
        font-size: 2em; /* Make countdown smaller on mobile */
    }

    .actions {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center the buttons */
    }

    .home-btn {
        width: 12%; /* Buttons take full width on mobile */
    }
}


.loaddatabutton {
    height: 40px;
}
.lopsy {
    background-color: #fcb514;
}
.home-btn1 {
     display: table;
    margin-left: 10px;
    font-size: 24px;
    color: white;
    background: linear-gradient(145deg, #107c10, #1a9f1a);
    border: 2px solid #0f6d0f;
    border-radius: 8px;
    padding: 6px 13px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 0 10px #1a9f1a;
    transition: all 0.3s ease;
}

.home-btn1:hover {
    background: #1ea41e; /* Brighter green on hover */
    color: #d4ffd4; /* Softer text glow */
    transform: scale(1.1); /* Slight zoom */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4), 0 0 20px #2ef32e; /* Brighter glow */
}

.home-btn1:active {
    transform: scale(1); /* Reset zoom */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5), 0 0 15px #1a9f1a; /* Subtle click effect */
}

    #pause-button {
    position: relative;
    left: 10px;
    background-color: #ffffff; /* White background for the button */
    color: #0072ff; /* Blue text color */
    border: none;
    padding: 12px 25px; /* Adjust padding to match the header button size */
    font-size: 1.1em; /* Slightly larger font size for consistency */
    border-radius: 50px; /* Rounded edges for a soft look */
    cursor: pointer;
    z-index: 300;
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    outline: none;
}

/* Hover effect for the pause button */
#pause-button:hover {
    background-color: #0072ff; /* Blue background on hover */
    color: white; /* White text on hover */
    transform: translateY(-3px); /* Slight lift effect */
}


    #pause-button:hover {
        background-color: #2c2c2c; /* Slightly lighter on hover */
        transform: scale(1.05); /* Slightly enlarge the button */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* Enhance shadow on hover */
    }
    
    #pause-button:active {
        transform: scale(0.95); /* Slightly shrink when clicked */
    }
	#myVideo {
    width: 100%; /* Make the video take the full width of its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    outline: none; /* Remove default outline */
}

/* Optional: You can add a hover effect */
#myVideo:hover {
    opacity: 0.8; /* Slightly dim the video on hover */
}
.booyah {
    width: 150px;
    border: 2px solid #FFD700;  /* Gold border */
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);  /* Shadow effect */
    border-radius: 10px;  /* Rounded corners */
}
/* 🌈 RAINBOW BUTTON EFFECT */
@keyframes rainbow {
  0% { background: red; }
  16% { background: orange; }
  33% { background: yellow; }
  50% { background: green; }
  66% { background: blue; }
  83% { background: indigo; }
  100% { background: violet; }
}

.profile-info-btn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  animation: rainbow 13s infinite linear;
  color: white;
  text-shadow: 2px 2px 4px black;
}
.tucan label {
	color: white;
}
/* 📜 PROFILE INFO MODAL */
.wickem-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #222;
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  z-index: 9999;
  text-align: center;
  max-height: 80vh; /* Limit height to 80% of viewport height */
  overflow-y: auto; /* Enable vertical scrolling */
}


.wickem-modal-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
   overflow-y: auto; /* Enables vertical scrolling */
  overflow-x: hidden; /* Hides horizontal scroll */
}

.wickem-modal-content li {
  margin: 10px 0;
}

.wickem-close-btn {
  margin-top: 15px;
  padding: 10px 15px;
  background: red;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.wickem-close-btn:hover {
  background: darkred;
}
/* 🎯 Profile Picture Modal - Positioned on top of the first modal */
#profilePicModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #222;
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    text-align: center;
    max-width: 400px;
	max-height: min-content;
    width: 90%;
    z-index: 1100; /* Ensure it's ABOVE the first modal */
    display: none; /* Hidden by default */
}

/* 🚀 Ensure modal stays positioned correctly on smaller screens */
@media (max-width: 500px) {
    #profilePicModal {
        width: 95%;
    }
}



.froglips-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 🔴 Fix Close Button in Profile Modal */
#froglipsProfileModal .froglips-close,
#profilePicModal .froglips-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 55px;
    cursor: pointer;
    color: #ff4747;
    transition: 0.2s;
    z-index: 10; /* Ensures it's on top */
}

/* 🛑 Prevent Close Button from Moving */
.froglips-modal-content {
    position: relative; /* Ensures close button stays inside */
    padding-top: 40px;  /* Prevents overlap with the title */
}

.froglips-close:hover {
    color: #ff0000;
}


/* 🔍 GIF Search Bar */
.profile-input {
    width: 90%;
    padding: 8px;
    margin-bottom: 10px;
    border: 2px solid #0f0;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
}

/* 🎥 GIF Results (Scrollable) */
.gif-container {
    width: 100%;
    height: 220px; /* Limits height for scrolling */
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
    background: #111;
    border: 1px solid #0f0;
    border-radius: 8px;
}

/* Individual GIF Styling */
.gif-container img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    border: 2px solid transparent;
}

.gif-container img:hover {
    transform: scale(1.1);
    border-color: #0f0;
}

/* 🖼️ Profile Picture Preview */
#profilePicPreviewContainer {
    margin-top: 15px;
    padding: 10px;
    background: #111;
    border-radius: 8px;
    border: 2px solid #0f0;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#profilePicPreview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* 🎯 Buttons */
.froglips-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 90%;
    font-weight: bold;
    transition: 0.3s;
}

/* 🌐 URL Button */
.froglips-url {
    background: #007bff;
    color: #fff;
}

.froglips-url:hover {
    background: #0056b3;
}

/* ⬆ Upload Button */
.froglips-upload {
    background: #28a745;
    color: #fff;
}

.froglips-upload:hover {
    background: #218838;
}

/* 🛑 Divider Lines */
.divider {
    width: 90%;
    height: 2px;
    background: #444;
    margin: 15px 0;
}

/* 📂 File Upload */
.file-upload {
    display: block;
    width: 90%;
    margin-top: 10px;
    padding: 10px;
    border: 2px solid #0f0;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

#profileGiphyResults {
    max-height: 300px; /* Adjustable height for scrolling */
    overflow-y: auto; /* Enables scrolling when too many GIFs */
    display: inline;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 10px;
    background: #222;
}

/* Style individual GIFs */
.froglips-preset-images img {
    width: 100px; /* Adjustable GIF size */
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.froglips-preset-images img:hover {
    transform: scale(1.1);
}

.profile-warning {
  background: rgba(255, 0, 0, 0.2); /* Light red warning background */
  color: #ff4444; /* Bright red text for warning */
  font-weight: bold;
  padding: 8px;
  border-radius: 5px;
  text-align: center;
  margin-top: 10px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* Soft glowing effect */
  animation: pulseGlow 1.5s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  from {
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  }
  to {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
  }
}

.profile-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 30px;
}

.profile-toggle-switch {
  opacity: 0;
  width: 0;
  height: 0;
}

.profile-toggle-label {
  position: absolute;
  width: 60px;
  height: 30px;
  background: red;
  border-radius: 30px;
  transition: background 0.4s ease-in-out;
}

.profile-toggle-label:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.4s ease-in-out;
}

.profile-toggle-switch:checked + .profile-toggle-label {
  background: #4caf50; /* Green when active */
}

.profile-toggle-switch:checked + .profile-toggle-label:before {
  transform: translateX(30px);
}

/* 🎮 Froglips Xbox-Themed Profile Modal */
.froglips-modal {
  display: none;  /* 🛑 This ensures it starts hidden */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.froglips-modal-content {
    background: #111;
    color: #ddd;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    max-height: 80vh; /* Set a max height relative to the viewport */
    overflow-y: auto; /* Enables vertical scrolling */
	margin-top: 50px;
}


.froglips-close {
  color: #fff;
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.froglips-profile-section {
  margin-bottom: 15px;
}



/* 🎮 Buttons */
.froglips-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
}

.froglips-save {
  background: #0f0;
  color: #000;
}

.froglips-reset {
  background: #f00;
  color: #fff;
}

.froglips-upload {
  background: #444;
  color: #fff;
}

/* 🎨 Color Picker */
input[type="color"] {
  width: 150px;
  height: 70px;
  border: none;
  cursor: pointer;
  background: transparent;
}
input#profileMNF {
    font-size: 18px; /* Bigger text */
    padding: 8px;
    width: 80px; /* Adjust width */
    border: 2px solid #fcb514; /* Gold outline */
    border-radius: 8px;
    text-align: center;
    background-color: #222; /* Dark background */
    color: #fff; /* White text */
}

/* Customize the up/down arrows */
input#profileMNF::-webkit-inner-spin-button,
input#profileMNF::-webkit-outer-spin-button {
    width: 22px; /* Bigger arrows */
    height: 22px;
    background: #fcb514; /* Gold arrows */
    border-radius: 5px;
    cursor: pointer;
}

/* Change arrow colors when hovered */
input#profileMNF::-webkit-inner-spin-button:hover,
input#profileMNF::-webkit-outer-spin-button:hover {
    background: #ffdb58; /* Lighter gold */
}

/* 🖼️ Profile Picture */
.froglips-profile-pic-container {
  width: 280px;
  height: 150px; /* Increased height for a more oval effect */
  border-radius: 30px; /* Less circular, more rounded-square */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border: 3px solid #0f0;
  cursor: pointer;
  background-color: #222; /* Keeps a nice border effect */
}

.froglips-profile-pic-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures it fills the new shape without stretching */
  border-radius: 30px; /* Matches the container's radius */
}


/* Center the toggle switch inside its container */
.toggle-container {
  display: flex;
  justify-content: center;  /* Centers horizontally */
  align-items: center;  /* Centers vertically */
  width: 100%; /* Ensure full width so centering works */
}

/* Ensure the entire section is flexbox */
.froglips-profile-section {
  display: flex;
  align-items: center;  /* Centers everything vertically */
  justify-content: space-between;  /* Spreads label and switch */
  width: 100%;
}

/* Make sure labels don't force line breaks */
.froglips-profile-section labelfroglips {
  flex-grow: 1;
  text-align: left; /* Aligns label text to left */
}

/* Center the toggle switch inside its container */
.profile-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;  /* Prevents shrinking */
  width: 60px; /* Same as toggle width */
}

/* Toggle Switch */
.profile-toggle-label {
  position: relative;
  width: 60px;
  height: 30px;
  background: red;
  border-radius: 30px;
  transition: background 0.4s ease-in-out;
}

.profile-toggle-label:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.4s ease-in-out;
}

.profile-toggle-switch:checked + .profile-toggle-label {
  background: #4caf50; /* Green when active */
}

.profile-toggle-switch:checked + .profile-toggle-label:before {
  transform: translateX(30px);
}
.remember-me-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.remember-me-container input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.remember-me-container label {
  font-size: 14px;
  color: #ddd;
  cursor: pointer;
}
.moolin {
    background-color: #b41f3a;
}
    .hide-on-small-screen {
        display: block; /* Default to block */
    }

    @media screen and (max-width: 1200px) {
        .hide-on-small-screen {
            display: none; /* Hide the element on small screens */
        }
    }
	img.thanksgiving-night-logo {
    width: 45%;
    margin: -47px;
}
.custom-image2 {
    margin-top: 10px;
    width: 99%; /* Full width */
    max-width: 477px; /* Max width */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #fcb514; /* Border color */
    border-radius: 25px !important; /* Use !important if needed */
}
@media (max-width: 1200px) {
  .custom-image2 {
    display: none !important;
  }
}

.Mollie-modal {
    display: none; /* Hides the modal on load */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}


.Mollie-modal-content {
    background: linear-gradient(45deg, #4a148c, #8e24aa, #d81b60);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 55%;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    font-family: 'Arial', sans-serif;
}
@media (max-width: 480px) {
    .Mollie-modal-content {
        background: linear-gradient(45deg, #4a148c, #8e24aa, #d81b60);
        color: #fff;
        padding: 0px;
        border-radius: 12px;
        width: 100%;
        text-align: center;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        font-family: 'Arial', sans-serif;
    }
}

.Mollie-close {
    color: #eee;
    float: right;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
}

.Mollie-close:hover {
    color: #fff;
}

#MollieInfoButton {
    background: linear-gradient(90deg, #ff1744, #ff9100);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

#MollieInfoButton:hover {
    background: linear-gradient(90deg, #ff9100, #ff1744);
}

div#noon-slate img {
    width: 280px;
}
img.late-window-logo {
    width: 85%;
}
img.monday-night-logo {
  width: 85%;
  max-width: 100%;
  height: auto;
  display: block;
}

img.friday-night-logo {
   width: 85%;
    max-width: 50%;
    height: 95%;
    display: block;
}
@keyframes colorWheel {
    0% { background: hsl(0, 100%, 50%); }
    16% { background: hsl(60, 100%, 50%); }
    33% { background: hsl(120, 100%, 50%); }
    50% { background: hsl(180, 100%, 50%); }
    66% { background: hsl(240, 100%, 50%); }
    83% { background: hsl(300, 100%, 50%); }
    100% { background: hsl(360, 100%, 50%); }
}

.form-group {
    animation: colorWheel 55s linear infinite;
    line-height: 30px;
    padding: 15px;
	color: black;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}


.selected-team {
    background-color: #4CAF50 !important; /* Green background */
    color: white !important; /* White text for contrast */
    transition: background-color 0.2s ease-in-out; /* Smooth transition */
}
.tnf-game {
    background: rgba(6, 98, 207, 0.3); /* Blue */
}

.fnf-sat-game {
    background: rgba(120, 0, 134, 0.3); /* Purple */
}

.sunday-noon-game {
    background: rgba(252, 181, 20, 0.3); /* Yellow */
}

.sunday-late-game {
    background: rgba(111, 66, 111, 0.3); /* Dark Purple */
}

.sunday-night-game {
    background: rgba(84, 154, 255, 0.3); /* Light Blue */
}

.mnf-game {
    background: rgba(255, 99, 71, 0.3); /* Light Red */
}

.final-matchup {
    background: rgba(160, 79, 188, 0.3); /* Special Color */
    color: red;
}

/* Style for headers above each group */
.matchup-header {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    background: black;
    color: white;
}
.red-hr {
    border: none;
    border-top: 2px solid red;
}

.blue-hr {
    border: none;
    border-top: 2px solid blue;
}
	.notice {
    background-color: yellow;
    color: black;
    font-size: 16px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #b41f3a;
}

/* When popup is active */
#rdm-matchups-popup.show {
    display: block;
}
.black-hr {
    border: none;
    border-top: 2px solid black;
}

.red-hr {
    border: none;
    border-top: 2px solid red;
}

.blue-hr {
    border: none;
    border-top: 2px solid blue;
}
.black-text {
    color: black;
}

.red-text {
    color: red;
}

/* rocky4 styles */
.rocky4 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* rocky4 content */
.rocky4-content {
    background-color: black;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    position: relative;
    max-width: 500px;
    top: 55px;

}

/* Close button */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Style for the notification button */
.notifbtn1 {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.notifbtn1:hover {
    background-color: #45a049;
}

/* Button to trigger rocky4 */
.open-rocky4-btn {
    background-color: hotpink;
    color: black;
    padding: 10px 20px;
border: 2px solid #fcb514;
    cursor: pointer;
}

.open-rocky4-btn:hover {
    background-color: #007bb5;
}




/* Media query for mobile devices */
@media screen and (max-width: 767px) {
    .kanga button {
        display: block; /* Make buttons block-level so they stack */
        width: 50%; /* Optionally make them full-width */
        margin-bottom: 10px; /* Optional spacing between buttons */
    }
}


button9#enable-notifications {
    background-color: hotpink;
    color: white;
	width: 400px;
    border: 2px solid #b41f3a;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

/* Base styles (for mobile devices by default) */
.tie-breaker-message {
       font-size: 21px;
    font-weight: bold;
    color: white;
    background-color: red;
    padding: 2px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    max-width: 97%;
    margin-left: auto;
    margin-right: auto;
}

/* For screens wider than 768px (tablets and desktops) */
@media (min-width: 768px) {
    .tie-breaker-message {
            font-size: 30px;
    font-family: 'Amatic SC';
    background-color: red;
    max-width: 100%;
    padding: 0px;
    }
}

#winners-panel {
    position: relative; /* Needed for absolute positioning inside */
    overflow: hidden; /* Prevents overflow issues */
}

#winners-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* Adjust as needed */
    height: 100%; /* Adjust as needed */
    transform: translate(-50%, -50%); /* Centers the GIF */
    background: url('https://wickem.online/images/closed3.gif') no-repeat center center;
    background-size: contain; /* Ensures full image is visible */
    z-index: 9999; /* Stays on top */
    pointer-events: none; /* Allows clicks to pass through if needed */
}


/* Custom width for "Teams Right" column */
.winner-table .teams-right {
	background-color: green;
    width: 20px; /* Adjust width as needed */
}

/* Custom width for "Teams Wrong" column */
.winner-table .teams-wrong {
	background-color: red;
    width: 20px; /* Adjust width as needed */
}

/* Custom width for "Total Teams" column */
.winner-table .total-teams {
	background-color: blue;
    width: 40px; /* Adjust width as needed */
}
.winners-panel {
    width: 69%;
	font-family: 'Graduate';
    margin: 20px auto;
    background: #0c0c0c;
    padding: 20px;
    border-radius: 10px;
}

/* Media query for screens 700px or less */
@media (max-width: 700px) {
    .winners-panel {
        width: 96%;

        margin: 0px;
        padding: 1px;
    }
}


.section {
    margin-bottom: 20px;
}



/* Leader Cards */
#leader-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Common styles for all leader cards */
.leader-card {
    position: relative;
    background: linear-gradient(270deg, #b41f3a, #00525e); /* Default background */
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    color: white;
	background-size: cover;        /* Ensures GIF covers the entire card */
    background-position: center;   /* Centers the GIF */
    background-repeat: no-repeat;  /* Prevents tiling */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-image 0.3s ease;
}

/* Default state for different ranks */
.leader-card.first-place {
    background-image: url('https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExenU3cDkxZmNtdnR1Yjl0NzUzMzR3enV3Yjg1YzNodnhlNHBlbnB4biZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/JQpv6BWZItX0KKHuma/giphy.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.leader-card.middle-place {
    background-image: url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExd3pvdXZkNmNpeHBoMTh1MmxxMHR6YXBleGNsdTlkeGpzM2FzaGFxYyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/FwpZsrTRl49RV35Fi5/giphy.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.leader-card.last-place {
    background-image: url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExd3pvdXZkNmNpeHBoMTh1MmxxMHR6YXBleGNsdTlkeGpzM2FzaGFxYyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/FwpZsrTRl49RV35Fi5/giphy.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




.leader-card .name {
    font-size: 1.8rem;
    font-weight: bold;
}

.leader-card .wins {
    font-size: 1rem;
}

.leader-card .guess {
    font-size: 1.9rem;
}

.leader-card .place-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.leader-card .place-indicator.star {
    font-size: 24px;
    color: gold;
}

.leader-card .place-indicator.number {
        background-color: #fcb514;
    border-radius: 20px;
    font-family: 'digital-7';
    padding: 5px;
    color: red;
    font-size: 18px;
}

/* MNF Result Section */
#mnf-info {
    background-color: #fcb514;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: black;
    position: relative;
    overflow: hidden;
    animation: flashAnimation 55s infinite; /* Flashing effect */
}

/* Flash animation */
@keyframes flashAnimation {
    0% { background-color: yellow; }
    50% { background-color: red; }
    100% { background-color: yellow; }
}


#mnf-info:hover {
    background-image: url('https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExcWFrNDZ0aGUwZnA4ajNpOTJ2cmxkdzVlZnZ5ZjNic2YxMWp5OGF2aiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/O7WBcbxxpR0KB3HNgj/giphy.webp'); /* Replace with actual GIF URL */
    background-size: cover;
    background-position: center;
	color: white;
}


.mnf-team {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
}

.mnf-score {
    font-size: 2.2rem;
    color: #00b894;
    background-color: black;
    display: inline-block; /* Ensures background wraps closely around text */
    padding: 2px 5px; /* Adjust padding as needed */
    border-radius: 4px; /* Optional: Rounds the background corners */
}


/* Final Winner Section */
#winner-card {
        background-color: darkgreen;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: yellow;
    font-size: 2rem;
    font-weight: bold;
}
.mnf-team-logo {
        width: 100px;
    height: 100px;
    vertical-align: middle;
    margin: 0 10px;
}
.at-symbol-image {
        width: 100px;
    height: 100px;
    vertical-align: middle;
}
/* Remove hover effect after 10:30 PM */
.leader-card.no-hover:hover {
    background-image: none;
}

#nfl-news-panel {
    background: #107C10; /* Xbox Green */
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
    height: 280px; /* Fits about 2 full articles */
    overflow: hidden;
    position: relative;
    width: 80%;

    /* ✅ Thick Yellow Border */
    border: 5px solid #fcb514; /* Adjust thickness */
}


/* Make the news container scroll smoothly */
#news-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.1s linear; /* Smooth continuous scrolling */
    overflow-y: auto; /* ✅ Allows manual scrolling */
    scrollbar-width: thin;
    scrollbar-color: #444 #222;
    max-height: 280px;
}

/* Individual News Card */
.news-card {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    background: #292929;
    border-radius: 8px;
    height: 130px; /* Consistent size */
    box-sizing: border-box;
}

/* News Image on Left */
.news-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* News Content on Right */
.news-info {
    flex: 1;
    overflow: hidden;
}

.news-card h3 {
    font-size: 16px;
    margin: 5px 0;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card p {
    font-size: 12px;
    color: #aaa;
    margin: 5px 0;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden;
}

.news-card a {
    text-decoration: none;
    color: #00ff99;
    font-weight: bold;
}

/* 📱 Mobile Adjustments */
@media screen and (max-width: 600px) {
    .news-card {
        flex-direction: column;
        height: auto;
    }

    .news-card img {
    width: 35%;
    height: auto;
    margin-bottom: 10px;
    align-self: center;
    }
}
#MaverickContainer {
  font-family: Arial, sans-serif;
  margin: 0px;
}
/* Mobile styles */
@media (max-width: 768px) { /* Adjust the width as needed */
    .maverick-table {
	width: 100%;
        font-size: 9px; /* Smaller font size */
        margin-top: 10px; /* Less space above the table */
        background-color: #6a3d8a; /* Different background color for mobile */
    }
}

.maverick-h2 {
  color: #333;
}

.maverick-table {
  width: 60%;
  border-collapse: collapse;
  margin-top: 20px;
}

.maverick-table th, .maverick-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.maverick-table th {
  background-color: black;
  cursor: pointer;
}

.maverick-table {
  background-color: #f9f9f9;
}
.maverick-table tr {
  background-color: red;
  color: white;
}
.maverick-table tr:hover {
  background-color: green;
  color: white;
}

.maverick-teams-right {
  color: green;
}

.maverick-teams-wrong {
  color: red;
}
.maverick-weeks-won {
  color: #fcb514;
}
.maverick-total-teams {
	color: blue;
  font-weight: bold;
}

    body.nonac-body {
        font-family: Arial, sans-serif;
        text-align: center;
        background-color: #222;
        color: #fff;
    }
    table.nonac-table {
        width: 50%;
        margin: 20px auto;
        border-collapse: collapse;
        background-color: #333;
    }

    /* For mobile screens (max-width: 768px) */
    @media (max-width: 768px) {
        table.nonac-table {
            width: 100%;
        }
    }

    th.nonac-th, td.nonac-td {
        padding: 10px;
        border: 1px solid #555;
    }
    th.nonac-th {
        background-color: green;
		color: #fcb514;
    }
	
/* TwixLeft Overlay Styles */
.twixleft {
    left: -320px; /* Off-screen initially */
    top: 20%;
    width: 300px;
    background: #111;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    transition: left 0.4s ease-in-out;
    z-index: 1000;
}
.twixleft-content {
    font-family: Arial, sans-serif;
}
.twixleft h2 {
    margin: 0;
    padding-bottom: 10px;
    font-size: 18px;
    color: #0f0;
    text-align: center;
}
.twixleft ul {
    list-style: none;
    padding: 0;
}
.twixleft li {
    padding: 5px 0;
    font-size: 14px;
}
.twixleft button {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    background: #0f0;
    color: #000;
    border: none;
    cursor: pointer;
}
.hidden {
    display: none;
}
	/* Throwdown Countdown Styling */
#throwdownCountdown {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #4CAF50; /* A nice green background */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

#throwdownCountdown span {
    font-size: 28px;
    display: block;
    padding-top: 10px;
}
/* Unique container for season selection buttons */
.season-button-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Unique styling for buttons */
.season-switch-btn {
    background: #00525e;
    border: 3px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
    border-radius: 10px;
}

/* Button images */
.season-switch-btn img {
    width: 50px;
    height: 50px;
}

/* Hover effect */
.season-switch-btn:hover {
    transform: scale(1.1);
}

/* Active button styling (Xbox Green border) */
.active-season-button {
    border: 3px solid #4CAF50; /* Xbox Green */
}

/* Styling for pie chart container */
#pieparent {
    color: #fcb514;
    height: 500px;
    background-color: black;
    width: 60%;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}

/* Pie chart height */
#myPieChart {
    height: 500px;
}

/* Win/Loss Percentage Styling */
.win-percentage, .loss-percentage {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 15px;
    text-align: center;
    margin: 10px auto;
    width: 60%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.win-percentage {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.2);
}

.loss-percentage {
    color: #F44336;
    background-color: rgba(244, 67, 54, 0.2);
}

/* Hover effects */
.win-percentage:hover, .loss-percentage:hover {
    cursor: pointer;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Percentage container */
.percentage-container {
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    width: 63%;
    background-color: black;
    justify-content: center;
    margin-top: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .percentage-container {
        width: 99%;
    }
    #pieparent {
        width: 89%;
        margin: 0;
    }
}

/* Xbox Color Scheme */
:root {
  --xbox-green: #107c10;
  --xbox-dark: #2f2f2f;
  --xbox-light: #e6e6e6;
  --xbox-accent: #00e600;
}

/* Container */
.linegraph4-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    width: 98%;
    height: 60vh;
    border-radius: 15px; /* Rounded corners */
    overflow: hidden; /* Ensures content stays within the rounded borders */
    border: 2px solid #ccc; /* Optional: Add a border for better visibility */
}

/* Hide on screens smaller than 777px */
@media (max-width: 777px) {
    .linegraph4-container,
    .season-buttons {
        display: none;
    }
}

.custom-picks-title {
    color: yellow;
}


/* Player List */
.linegraph4-player-list {
  width: 25%;               /* Adjusted width */
  padding: 0px;
  border-right: 1px solid #ddd;
  background-color: var(--xbox-dark);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

/* Customize scrollbar */
.linegraph4-player-list::-webkit-scrollbar {
  width: 8px; /* Adjust the width of the scrollbar */
}

.linegraph4-player-list::-webkit-scrollbar-track {
  background: var(--xbox-dark); /* Track (background) color */
}

.linegraph4-player-list::-webkit-scrollbar-thumb {
  background-color: #00FF00; /* Thumb color (adjust to your design) */
  border-radius: 4px;
  border: 2px solid var(--xbox-dark); /* Optional: adds a border around the thumb */
}

.linegraph4-player-list::-webkit-scrollbar-thumb:hover {
  background-color: #fcb514; /* Thumb hover color (adjust to your design) */
}


.linegraph4-player-item {
           cursor: pointer;
    padding: 0px;
    margin-bottom: 5px;
    border: 2px solid var(--xbox-accent);
    background-color: var(--xbox-light);
    color: var(--xbox-dark);
    font-size: 16px;
    text-align: center;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    display: flex;
    width: 87%;
    justify-content: center;
    align-items: center;
}

.linegraph4-player-item:hover {
  background-color: var(--xbox-green);
  color: white;
}

.linegraph4-player-item:active {
  background-color: var(--xbox-accent);
  color: white;
}

/* "Show All" and "Reset" Buttons */
.linegraph4-player-list .button-item {
    cursor: pointer;
    padding: 12px;
    margin-top: 9px;
    border: 2px solid var(--xbox-accent);
    background-color: var(--xbox-green);
    color: white;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.linegraph4-player-list .button-item:hover {
  background-color: var(--xbox-accent);
}

/* Chart Container */
.linegraph4-chart-container {
  width: 75%;
  cursor: url('/images/cursor5.png'), auto; /* Custom cursor image */
  padding: 0px;
  background-color: white;
  position: relative;
  height: 100%;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .linegraph4-container {
    flex-direction: column;
    height: auto;
  }

  .linegraph4-player-list {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .linegraph4-chart-container {
    width: 100%;
    padding: 0px;
  }

  .linegraph4-player-item {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 8px;
  }
}
.chartjs-tooltip {
  font-size: 12px;
  padding: 8px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  pointer-events: none;
  font-family: Arial, sans-serif;
  transition: opacity 0.1s ease;
}
ul#linegraph4-player-names {
    text-align: -webkit-center;
}
/* Xbox-Themed Season Buttons */
/* Shared Styles for VVV and WWW Buttons */
.season-buttons {
  text-align: center;
  margin-bottom: 15px;
}

.season-button {
  display: inline-flex; /* Allows the image and button to be centered properly */
  align-items: center;
  justify-content: center;
  background-color: var(--xbox-dark);
  color: white;
  border: 2px solid var(--xbox-accent);
  padding: 8px 16px; /* Reduced padding to match proportions */
  font-size: 18px;
  cursor: pointer;
  margin: 5px;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 120px; /* Standardized width for buttons */
  height: 50px; /* Adjusted height for consistency */
}

/* Hover Effect */
.season-button:hover {
  background-color: var(--xbox-green);
  color: black;
  border-color: var(--xbox-accent);
  transform: scale(1.05);
}

/* Active (Selected) Button */
.season-button.active {
  background-color: var(--xbox-accent);
  color: black;
  border: 2px solid var(--xbox-green);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--xbox-green);
}

/* Image inside Buttons */
.season-button img {
  width: 45px; /* Scaled image size */
  height: auto;
  transition: opacity 0.3s ease;
  margin-right: 5px; /* Small spacing between image and text */
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .season-button {
    width: 100px;
    font-size: 16px;
    padding: 6px 12px;
  }

  .season-button img {
    width: 35px;
  }
}
    .week-tab {
      margin: 10px;
    }
    .rascal-info {
      margin-bottom: 15px;
    }
    .rascal {
      margin-top: 10px;
    }
    .player-list {
      margin-top: 20px;
    }
    .player-item {
      margin-bottom: 0px;
    }
 #season-toggle {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  .season-btn {
    display: inline-flex; /* Allows the image and button to be centered properly */
  align-items: center;
  justify-content: center;
  background-color: var(--xbox-dark);
  color: white;
  border: 2px solid var(--xbox-accent);
  padding: 8px 16px; /* Reduced padding to match proportions */
  font-size: 18px;
  cursor: pointer;
  margin: 5px;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 50px; /* Standardized width for buttons */
  height: 50px; /* Adjusted height for consistency */
}
  .season-btn:hover {
  background-color: var(--xbox-green);
  color: black;
  border-color: var(--xbox-accent);
  transform: scale(1.05);
}
 .season-btn.active {
    background-color: var(--xbox-accent);
  color: black;
  border: 2px solid var(--xbox-green);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--xbox-green);
}
.season-btn img {
  width: 40px; /* Scaled image size */
  height: auto;
  transition: opacity 0.3s ease;
  margin-right: 5px; /* Small spacing between image and text */
}
.week-tab.disabled {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(100%);
}
    /* Basic Layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

/* Main container */
.comparison-container {
    display: flex;
    width: 90%;
	background-color: black;
    margin: auto;
    gap: 20px;
}

/* Left Side: Meltyburg List */
.meltyburg-container {
    width: 25%;
    height: 478px;
    overflow-y: auto;
    border-right: 2px solid #ccc;
    padding: 10px;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Meltyburg List Items */
.meltyburg-item {
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    color: white;
    background: red;
    border: 1px solid #ccc;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, border 0.3s;
}

.meltyburg-item:hover {
    background: #ddd;
}

.meltyburg-item.selected {
    background: #2e7d32;
    color: white;
    border: 2px solid #1b5e20;
}

/* Right Side: Comparison Slots */
.comparison-slots {
    width: 75%;
    display: flex;
    justify-content: space-around;
    max-height: 500px;
    overflow: hidden;
    background: yellow;
    border-radius: 5px;
}

/* Individual Comparison Slot */
.comparison-slot {
    width: 48%;
    min-height: 100%;
    max-height: 500px;
    overflow-y: auto;
    background: red;
    padding: 0px;
    border-radius: 5px;
}
.comparison-slot h3 {
    position: sticky;
    top: 0;
    background: black; /* Match Xbox theme */
    color: #fcb514; /* Make text stand out */
    padding: 10px;
    text-align: center;
    z-index: 10; /* Ensure it stays above other elements */
    border-bottom: 2px solid black; /* Optional: Adds separation */
}

/* Filled Slot */
.comparison-slot.filled {
    border-color: #2e7d32;
    background: green;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

/* Clear All Button */
.clear-button {
    width: 30%;
    padding: 12px;
    margin-top: 15px;
    background: #d32f2f;
    color: white;
    cursor: pointer;
    border: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.clear-button:hover {
    background: #b71c1c;
}

/* For Firefox - Static Color Shift (Since Firefox does not support animations in scrollbar-color) */
.meltyburg-container, .comparison-slot {
    scrollbar-width: thin; /* Keeps scrollbar thin */
    scrollbar-color: #ff0000 #222; /* Starts with red */
    animation: rainbowScrollFirefox 6s linear infinite; /* Loop color change */
}

/* Firefox Animation (Fallback) */
@keyframes rainbowScrollFirefox {
    0% { scrollbar-color: #ff0000 #222; } /* Red */
    16% { scrollbar-color: #ff7f00 #222; } /* Orange */
    33% { scrollbar-color: #ffff00 #222; } /* Yellow */
    50% { scrollbar-color: #00ff00 #222; } /* Green */
    66% { scrollbar-color: #0000ff #222; } /* Blue */
    83% { scrollbar-color: #4b0082 #222; } /* Indigo */
    100% { scrollbar-color: #9400d3 #222; } /* Violet */
}

/* Webkit Browsers (Chrome, Edge, Safari) */
.meltyburg-container::-webkit-scrollbar,
.comparison-slot::-webkit-scrollbar {
    width: 8px; /* Thin scrollbar */
}

.meltyburg-container::-webkit-scrollbar-track,
.comparison-slot::-webkit-scrollbar-track {
    background: #222; /* Dark track */
    border-radius: 5px;
}

/* Animated Rainbow Scrollbar */
@keyframes rainbowScroll {
    0% { background: #ff0000; } /* Red */
    16% { background: #ff7f00; } /* Orange */
    33% { background: #ffff00; } /* Yellow */
    50% { background: #00ff00; } /* Green */
    66% { background: #0000ff; } /* Blue */
    83% { background: #4b0082; } /* Indigo */
    100% { background: #9400d3; } /* Violet */
}

.meltyburg-container::-webkit-scrollbar-thumb,
.comparison-slot::-webkit-scrollbar-thumb {
    border-radius: 5px;
    animation: rainbowScroll 3s linear infinite; /* Smooth color shift */
}

/* Hover Effect - Speed Boost */
.meltyburg-container::-webkit-scrollbar-thumb:hover,
.comparison-slot::-webkit-scrollbar-thumb:hover {
    animation-duration: 1s; /* Faster color shift when hovered */
}

@media screen and (max-width: 1000px) { /* Anything below 777px */
    .spaghetti {
        display: none !important; /* Completely hides the element */
    }
}
.claim-message3 {
  background-color: green;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.claim-message2 {
  background-color: yellow;
  color: black;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.claim-message {
  background-color: red;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

@keyframes alternateColors {
  0% {
    background: rgba(255, 0, 0, 0.9); /* Red */
  }
  50% {
    background: rgba(255, 255, 0, 0.9); /* Yellow */
  }
  100% {
    background: rgba(255, 0, 0, 0.9); /* Back to Red */
  }
}

#crown-conquerors-hall-container {
  position: relative; /* Allows positioning for the pseudo-element */
  width: 100%;        /* Make it responsive */
  max-width: 600px;   /* Set the maximum width */
  margin: 0 auto;     /* Center horizontally */
}

#crown-conquerors-hall {
  display: block;     /* Ensure the image behaves like a block element */
  width: 100%;        /* Responsive width */
}





#crown-conquerors-hall2 {
  width: 100%;        /* Make the image responsive */
  max-width: 600px;   /* Set the maximum width */
  margin: 0 auto;     /* Center the image horizontally */
  display: block;     /* Ensure it's a block-level element */
}

/* Winner Showcase Panel */
#winner-showcase-panel {
  width: 90vw;
max-width: 1200px;
margin: 0 auto;
padding: 30px;
background-color: #107c10; /* Xbox Green */
border: 2px solid #444444; /* Xbox Dark Gray for border */
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Slightly darker shadow for depth */
display: flex;
flex-direction: column;
overflow: hidden;
transition: all 0.3s ease-in-out;

/* Adding Xbox typography & accent style */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Default Xbox font */
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); /* Soft text shadow for extra pop */
background-image: linear-gradient(145deg, #006f30, #107c10); /* Gradient background for more dynamic feel */
border-top: 3px solid #FFD200; /* Xbox Yellow accent line */
padding-top: 40px; /* Add some spacing for aesthetic balance */

/* Optional: add hover effect for interaction */
#winner-showcase-panel:hover {
    background-color: #006f30; /* Darker green when hovered */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25); /* More prominent shadow on hover */
}

}

/* Scrollable Tabs Section */
.monkey7 {
  display: flow;
  justify-content: flex-start;
  overflow-x: auto; /* Horizontal scroll if needed */
  margin-bottom: 30px;
  padding-bottom: 10px;
  gap: 0px; /* Space between tabs */
  scrollbar-width: thin; /* Thin scrollbar for better appearance */
}

.monkey7 .week-tab {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s ease;
  border-radius: 10px;
  box-sizing: border-box;
}

.monkey7 .week-tab img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
}


.monkey7 .week-tab:hover img {
  transform: scale(1.1); /* Slight zoom effect */
  filter: brightness(1.2); /* Lighten icon on hover */
}

.monkey7 .week-tab:hover {
  background-color: rgba(0, 123, 255, 0.1); /* Light hover background */
}

.monkey7 .week-tab.active {
  background-color: #007bff; /* Blue background for active tab */
}

.monkey7 .week-tab.active img {
  filter: brightness(1.4); /* Make the active tab's icon more prominent */
}

/* Week Content Section */
.week-content {
  display: none; /* Hidden by default */
  animation: fadeIn 0.5s ease-out; /* Smooth fade-in animation */
}

.week-content.active {
  display: block;
}

/* Transition for Week content */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.week-details {
  margin-top: 30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.week-details p {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
}

.week-details a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.week-details a:hover {
  text-decoration: underline;
}

.rascal-info h3 {
  font-size: 20px;
  color: #fcb514;
  margin-bottom: 15px;
}

/* Responsive adjustments for small screens */
@media (max-width: 800px) {
  #winner-showcase-panel {
    width: 90%;
	font-size: 12px;
    padding: 15px;
    box-shadow: none;
  }

  .monkey7 {
    gap: 10px; /* Reduce gap between tabs on small screens */
  }

  .monkey7 .week-tab {
    padding: 0px;
  }

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

/* Stylish Winner and Info Section */
.rascal {
  margin-top: 5px;
  padding: 0px;
  background-color: #f0f8ff;
  border-radius: 8px;
  border: 2px solid #d6e9f8;
}

.rascal p {
  margin: 10px 0;
  font-size: 18px;
  color: #444;
}

.rascal strong {
  font-weight: bold;
}

/* Player List Styling */
.player-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.player-item {
  background-color: #fff;
  padding: 0px;
  color: #b41f3a;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.player-item .player-name {
  font-size: 16px;
  color: #333;
}

.player-item .player-stats {
  font-size: 14px;
  color: #888;
}

.player-item:hover {
  background-color: yellow;
  cursor: pointer;
}

.player-item:hover .player-name {
  font-weight: bold;
}

/* Final Winner Styling */
#week-1-final-winner,
#week-2-final-winner,
#week-3-final-winner,
#week-4-final-winner,
#week-5-final-winner,
#week-6-final-winner,
#week-7-final-winner,
#week-8-final-winner,
#week-9-final-winner,
#week-10-final-winner,
#week-11-final-winner,
#week-12-final-winner,
#week-13-final-winner,
#week-14-final-winner,
#week-15-final-winner,
#week-16-final-winner,
#week-17-final-winner,
#week-18-final-winner,
#week-19-final-winner,
#week-20-final-winner,
#week-21-final-winner,
#week-22-final-winner
 {
  font-size: 22px;
  font-weight: bold;
  color: #28a745;
  text-transform: uppercase;
}


#retagon-container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background: linear-gradient(45deg, #1a1a1a, #292929);
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.3);
    font-family: Arial, sans-serif;
}
@media (max-width: 500px) {
  #retagon-container {
    max-width: 100%;
    padding: 10px;
    font-size: 10px;
    border-radius: 0;
    box-shadow: none;
  }
}


#retagon-player-selection {
    text-align: center;
    margin-bottom: 20px;
}

#retagon-player-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.retagon-player-button {
    background: #0f9d58;
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: bold;
    border-radius: 4px;
}

.retagon-player-button:hover {
    background: #34a853;
    transform: scale(1.05);
}

/* Excel-Style Table */
#retagon-table {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

/* Headers (Scoped) */
#retagon-table th {
    background: #111;
    color: white;
    padding: 10px;
}

/* Team Name and Logo in Center (Scoped) */
#retagon-table td:nth-child(3), 
#retagon-table td:nth-child(4), 
#retagon-table th:nth-child(3), 
#retagon-table th:nth-child(4) {
    background: #222;
    font-weight: bold;
}

/* Player 1 Columns (Blue) (Scoped) */
#retagon-table td:nth-child(1), 
#retagon-table td:nth-child(2), 
#retagon-table th:nth-child(1), 
#retagon-table th:nth-child(2) {
    background: #0f52ba;
    color: white;
}

/* Player 2 Columns (Orange) (Scoped) */
#retagon-table td:nth-child(5), 
#retagon-table td:nth-child(6), 
#retagon-table th:nth-child(5), 
#retagon-table th:nth-child(6) {
    background: #f57c00;
    color: white;
}

/* Team Logos (Scoped) */
#retagon-table .retagon-logo {
    width: 50px;
    height: 50px;
    display: block;
    margin: auto;
    border-radius: 5px;
    background: #fff;
}

/* Parallax Panel */
.parallax-panel {
    position: relative;
    height: 500px; /* Adjust height as needed */
    background-image: url('https://image.cnbcfm.com/api/v1/image/106163086-1570124943203gettyimages-53265790.jpeg?v=1570125014');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Content Area */
.parallax-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensures it covers the entire panel */
    text-align: center;
}

/* Quote Box */
.quote-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5); /* 50% opacity black background */
    color: white;
    padding: 30px;
    border-radius: 15px; /* Adds rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Adds subtle shadow for depth */
    max-width: 600px; /* Limits the width of the quote box */
    font-family: 'Georgia', serif; /* Stylish font for quotes */
    line-height: 1.6;
    position: relative;
}

/* Left-Side Bar */
.quote-bar {
    width: 10px;
    background-color: #ffb612; /* Packers Gold Color */
    border-radius: 10px 0 0 10px; /* Match the rounded corners */
    height: 100%; /* Full height of the quote box */
    position: absolute;
    left: 0;
    top: 0;
}

/* Quote Text Container */
.quote-text {
    padding-left: 20px; /* Space between the bar and text */
    text-align: left;
}

/* Quote Text */
.quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
}

/* Author Name */
.author {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
    margin-top: 10px;
    color: #f0e68c; /* Optional: Accent color for the author name */
}
@keyframes rainbowBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.wickem-feedback-form-title {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    border: 2px solid white;
    display: inline-block;
    
    /* Rainbow gradient */
    background: linear-gradient(45deg, 
        red, orange, yellow, green, cyan, blue, violet, red);
    background-size: 300% 300%;
    
    /* Animation */
    animation: rainbowBackground 4s linear infinite;
}
#plato2 {
	    cursor: pointer;
    padding: 12px 20px;
    background-color: #107c10;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.2s ease-in-out;
    margin: 0;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    text-transform: uppercase;
    min-width: 0px;
	}



/* Button Styles */
.open-prkch1-modal {
	overflow: hidden;
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.open-prkch1-modal:hover {
    background-color: #45a049; /* Darker Green on Hover */
}

/* Modal Styles */
.prkch1-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
	color: white;
    left: 50%; /* Position horizontally at the center of the viewport */
    top: 50%; /* Position vertically at the center of the viewport */
    width: 50%; /* Set width to 50% of the viewport */
    height: 50%; /* Set height to 50% of the viewport */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 1.0); /* Semi-transparent background */
    transform: translate(-50%, -50%); /* Center the element by adjusting its position */
}


.prkch1-modal-content {
    background-color: red;
    margin: 18% auto;
    overflow-y: scroll;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    color: yellow;
}

.prkch1-modal-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 0px;
}

.prkch1-modal-footer .prkch1-modal-close {
    background-color: #f44336; /* Red */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prkch1-modal-footer .prkch1-modal-close:hover {
    background-color: #d32f2f; /* Darker Red on Hover */
}
/* Custom scrollbar for the modal */
#prkch1::-webkit-scrollbar {
    width: 8px; /* Thinner scrollbar */
}

/* Track of the scrollbar */
#prkch1::-webkit-scrollbar-track {
    background: #1b1b1b; /* Dark background for the scrollbar track */
}

/* Handle (the part you drag) of the scrollbar */
#prkch1::-webkit-scrollbar-thumb {
    background-color: #107c10; /* Xbox green */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
    border: 2px solid #1b1b1b; /* Dark border for contrast */
}

/* Handle hover effect */
#prkch1::-webkit-scrollbar-thumb:hover {
    background-color: #00b300; /* Lighter Xbox green when hovered */
}

/* Optional: Scrollbar button (optional for certain scroll types) */
#prkch1::-webkit-scrollbar-button {
    display: none; /* Hide the buttons at the top and bottom of the scrollbar */
}

/* Custom styling for the 'Sign Up' button */
input[type="submit"][name="submit_signup"] {
  background-color: #ff8c00; /* Bold orange background */
  color: #fff; /* White text */
  padding: 16px 36px; /* Spacious padding for a modern look */
  border: none;
  border-radius: 12px; /* Rounded corners for a smooth feel */
  cursor: pointer;
  font-size: 18px; /* Slightly larger text for emphasis */
  font-weight: 700; /* Bold text */
  text-transform: uppercase; /* Uppercase text for impact */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Hover effect for the 'Sign Up' button */
input[type="submit"][name="submit_signup"]:hover {
  background-color: #e67e22; /* Darker orange on hover */
  transform: translateY(-3px); /* Lift the button on hover */
}

/* Focus effect for better accessibility */
input[type="submit"][name="submit_signup"]:focus {
  outline: none;
  border: 2px solid #ffcd00; /* Subtle yellow outline on focus */
  box-shadow: 0 0 8px rgba(255, 205, 0, 0.6); /* Glow effect */
}

/* General styling */
.getbackabit {
  font-size: 16px; /* Adjusted for readability */
  font-weight: 600; /* Semi-bold for a more refined look */
  color: #ffcd00; /* A soft gold/yellow for contrast */
  background-color: #121212; /* Darker background for a sleek feel */
  padding: 12px 24px; /* More spacious padding */
  border-radius: 12px; /* Softer, rounded corners */
  text-align: center;
  width: 100%;
  max-width: 500px; /* Wider layout on desktop */
  margin: 20px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Bolder shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease-in-out;
}

.getbackabit:hover {
  transform: scale(1.08); /* Slight zoom effect */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6); /* Larger shadow on hover */
}

/* Container styling */
.blackberry-container {
  width: 100%;
  max-width: 600px; /* Wider on desktop */
  margin: 0 auto;
  padding: 20px 30px; /* More spacious padding */
  background-color: #1c1c1c; /* Deep charcoal background */
  border-radius: 16px; /* Smooth corners */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6); /* Deeper shadow for emphasis */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Clean font */
  color: #fff;
  display: flex;
  flex-direction: column; /* Column layout for inputs */
  justify-content: center;
  align-items: center;
  padding-top: 40px; /* Space at the top */
}

.blackberry-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.blackberry-col-25 {
  flex: 1 1 25%;
  padding: 10px;
  font-weight: 600;
  color: #00ff00; /* Xbox green */
  font-size: 18px; /* Adjusted label size */
}

.blackberry-col-75 {
  flex: 1 1 24%;
  padding: 0px;
}

.blackberry-container input[type="text"],
.blackberry-container input[type="email"],
.blackberry-container input[type="time"],
.blackberry-container select,
.blackberry-container textarea {
  width: 100%;
  padding: 12px 16px; /* Balanced padding */
  border: 2px solid #333;
  border-radius: 10px; /* Softer borders */
  background-color: #333;
  color: #fff;
  font-size: 14px; /* Slightly smaller text for better fit */
  box-sizing: border-box;
  margin-bottom: 15px; /* Space between inputs */
}

.blackberry-container input[type="text"]:focus,
.blackberry-container input[type="email"]:focus,
.blackberry-container input[type="time"]:focus,
.blackberry-container select:focus,
.blackberry-container textarea:focus {
  border-color: #00ff00; /* Highlight focus */
  outline: none;
}

.blackberry-container input[type="submit877"] {
  background-color: #00ff00; /* Xbox green */
  color: #121212; /* Dark text for contrast */
  padding: 14px 30px; /* More spacious button */
  border: none;
  border-radius: 8px; /* Rounded edges */
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out;
}

.blackberry-container input[type="submit877"]:hover {
  background-color: #4CAF50; /* Darker green on hover */
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .blackberry-container {
    padding: 15px; /* Less padding on mobile */
    max-width: 100%; /* Full-width layout */
    width: auto;
  }

  .blackberry-row {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .blackberry-col-25,
  .blackberry-col-75 {
    width: 100%; /* Full width on mobile */
  }

  .blackberry-col-25 {
    font-size: 16px; /* Adjusted font size */
    padding: 5px 0;
  }

  .blackberry-container input[type="text"],
  .blackberry-container input[type="email"],
  .blackberry-container input[type="time"],
  .blackberry-container select,
  .blackberry-container textarea {
    font-size: 14px; /* Smaller font size for compact screens */
    padding: 10px; /* Adjusted padding */
  }

  .blackberry-container input[type="submit877"] {
    font-size: 16px; /* Smaller button text */
    padding: 10px 25px; /* Adjusted button size */
  }
}
#button4 {
    background-color: #552583;
    color: #fcb514;
    border: 2px solid #b41f3a;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}
#show-feedback-popup img {
    background-color: #fcb514;
    color: #552583;
    border: 2px solid #b41f3a;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

@media (max-width: 768px) {
    #show-feedback-popup img {
        max-width: 89%; /* 80% of the width on mobile */
    }
}

/* Base panel styling */
/* Base panel styling */
.hall-of-fame-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 110, 0.1), rgba(110, 0, 0, 0.2)); /* Subtle background */
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 95%;
  margin: 30px auto;
  background-color: #1c1c1c; /* Xbox dark background */
}

/* Hide on screens smaller than 777px */
@media (max-width: 877px) {
  .hall-of-fame-panel {
    display: none;
  }
}

/* Make it 100% wide for screens between 777px and 1200px */
@media (min-width: 877px) and (max-width: 1200px) {
  .hall-of-fame-panel {
    max-width: 100%; /* Full width */
    margin: 30px 0; /* Remove side margin */
    border-radius: 0; /* Optional: remove rounded corners for a flush look */
  }
}



.welcome-text {
  font-size: 3em; /* You can adjust the size */
  font-weight: bold;
  background-image: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
  background-size: 400% 400%;
  color: transparent;
  background-clip: text;
  animation: rainbow-animation 12s ease infinite;
}

@keyframes rainbow-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.welcome-text.shrink h1 {
  font-size: 2.5rem;
  transform: translateY(-40px);
}

/* Player List Styling */
.players-list {
  width: 80%;
}

.players-list ul {
  list-style-type: none;
  padding: 0;
  display: flex; /* Aligns list items horizontally */
  flex-wrap: wrap; /* Allows wrapping to next line if items exceed container width */
  gap: 15px; /* Adds space between items */
  justify-content: center; /* Centers items within the container */
}

.players-list li {
  cursor: pointer;
  padding: 12px 20px;
  background-color: #107c10; /* Xbox-style green background */
  color: #ffffff; /* White text for contrast */
  border-radius: 10px; /* Slightly more rounded edges */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Slightly more dramatic shadow */
  transition: background-color 0.3s, transform 0.2s ease-in-out;
  margin: 0;
  font-weight: bold; /* Makes text stand out more */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Xbox-like font */
  text-align: center;
  text-transform: uppercase; /* Make text more bold and impactful */
  min-width: 0px; /* Ensures buttons don't shrink too small */
}

.players-list li:hover {
  background-color: #fcb514; /* Lighter green on hover for feedback */
  transform: translateY(-4px); /* Subtle lift effect */
}

.players-list li:active {
  background-color: #fcb514; /* Darker green when clicked */
  transform: translateY(2px); /* Slight push-down effect */
}

.players-list li:focus {
  outline: none; /* Removes default focus outline */
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.6); /* Adds a glow effect for focus */
}


.players-list li:hover {
  background-color: #107c10; /* Xbox green hover effect */
  transform: scale(1.05); /* Subtle zoom on hover */
  color: #fff; /* White text */
}

.players-list li.active {
  background-color: #00525e; /* Highlight active player with green */
}

/* Player Profile Panel */
.player-profile-panel {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  width: 100%;
  text-align: center;
  max-height: 377px;
  gap: 10px;
}

/* Profile Info, Player Trophies, and Trophy Info */
.profile-info, .player-trophies, .trophy-info {
  width: 32%;
  padding: 0px;
  overflow-y: scroll; /* Allow vertical scrolling */
  background-color: #fff; /* White background for panels */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  max-height: 400px; /* Define max height to limit the scrollable area */
}

/* ✅ Works in Firefox + Chrome + Edge + Safari */

/* Firefox Scrollbar */
.profile-info, 
.player-trophies, 
.trophy-info {
  scrollbar-width: thin; /* Makes scrollbar thinner */
  scrollbar-color: #107c10 #1c1c1c; /* Xbox green thumb, blackish background */
}

/* ✅ Webkit Browsers (Chrome, Edge, Safari) */
.profile-info::-webkit-scrollbar,
.player-trophies::-webkit-scrollbar,
.trophy-info::-webkit-scrollbar {
  width: 8px; /* Set width of scrollbar */
  height: 8px; /* Set height of horizontal scrollbar */
}

/* Track of the scrollbar */
.profile-info::-webkit-scrollbar-track,
.player-trophies::-webkit-scrollbar-track,
.trophy-info::-webkit-scrollbar-track {
  background: #1c1c1c; /* Xbox blackish background */
  border-radius: 10px;
}

/* Handle of the scrollbar */
.profile-info::-webkit-scrollbar-thumb,
.player-trophies::-webkit-scrollbar-thumb,
.trophy-info::-webkit-scrollbar-thumb {
  background-color: #107c10; /* Xbox green for the thumb */
  border-radius: 10px;
  border: 2px solid #1c1c1c; /* Border for the thumb for better contrast */
}

/* Hover effect on the scrollbar handle */
.profile-info::-webkit-scrollbar-thumb:hover,
.player-trophies::-webkit-scrollbar-thumb:hover,
.trophy-info::-webkit-scrollbar-thumb:hover {
  background-color: #00b300; /* Lighter Xbox green when hovering */
}





.profile-info:hover, .player-trophies:hover, .trophy-info:hover {
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.profile-info h3, .player-trophies h3, .trophy-info h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  color: green;
  margin-top: 0px;
  text-align: center;
}
#trophymodal-unique h2 {
    color: yellow;
    background-color: black;
    text-align: center;
    font-family: cursive;
}
button#open-trophy-modal-unique {
    background-color: #fcb514;
    color: red;
}
.profile-info p {
     font-size: 1.1rem;
    color: #fcb514;
    margin: 5px 0;
}
.profile-info h3 {
	    font-size: 2.5rem;
    background-color: #fcb514;
   
  
	}


.player-trophies .trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
}

.player-trophies .trophy-grid .trophy-item {
  background-color: #f0f0f0; /* Light grey for trophy items */
  padding: 10px;
  overflow: hidden;
  max-height: 386px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
}

.player-trophies .trophy-grid .trophy-item:hover {
  transform: scale(1.1);
  background-color: #107c10; /* Green hover effect */
}



.trophy-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}



/* Trophy Information Panel */
.trophy-info {
     max-height: 400px;
    overflow-y: auto;
    color: #fcb514;
    background-color: #00525e;
}

.trophy-info p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
}
.player-trophies {
    background-color: #fcb514;
}
.trophy-info img {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.profile-info {
    background-color: #552583;
}
.trophy-info .trophy-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

/* Add a footer */
.hall-of-fame-footer {
  margin-top: 0px;
  text-align: center;
  font-size: 1.2rem;
  color: #888;
}


.testimonial-slider {
  position: relative;
  width: 60%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: black;
  color: yellow;
  padding: 0;
  text-align: center;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-image {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 0px;
}

.testimonial-quote {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2em;
  color: yellow;
  margin-bottom: 15px;
  font-style: italic;
  color: #fcb514;
}

.testimonial-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  color: #b41f3a;
  margin-bottom: 5px;
}

.testimonial-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6em; /* Smaller font for title */
  color: #00525e; /* Title color */
  margin-bottom: 15px;
}

/* Navigation buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5em;
}

.slider-nav#prevSlide {
  left: 10px;
}

.slider-nav#nextSlide {
  right: 10px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .testimonial-slider {
    width: 100%;
    margin: 0;
  }

  .testimonial-slide {
    padding: 20px;
  }
}
/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 10px;
}

/* Question Button */
.faq-question {
    background-color: #ffb612; /* Gold Color */
    color: white;
    font-size: 1.2rem;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e6a50f; /* Slightly darker gold on hover */
}

/* Answer Content */
.faq-answer {
    display: none;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-left: 5px solid #ffb612; /* Left border to match the question button color */
    border-radius: 5px;
    font-size: 1rem;
}

/* Opened Answer */
.faq-answer.open {
	color: black;
    display: block;
    animation: slideDown 0.3s ease-out;
}

/* Animation for Sliding Down */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset some default browser styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow */
}




/* Icon style */
#notification-box::before {
    content: "🏈"; /* Icon */
    font-size: 35px; /* Icon size */
    margin-right: 10px; /* Space between icon and text */
    animation: glow-icon 1s infinite alternate; /* Glow effect */
}

/* Show notification */
#notification-box.show {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Slide into view */
}

/* Keyframes for glowing effect on the icon */
@keyframes glow-icon {
    from {
        text-shadow: 0 0 10px rgba(252, 181, 20, 0.8), 0 0 20px rgba(252, 181, 20, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(252, 181, 20, 1), 0 0 30px rgba(252, 181, 20, 0.8);
    }
}

/* Ensure crisp text rendering */
body, #notification-box {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Media queries for smaller screens */
@media (max-width: 480px) {
    #notification-box {
        font-size: 16px;		/* Reduce font size on smaller screens */
        padding: 10px 5px; /* Further reduce padding */
    }

    #notification-box::before {
        font-size: 30px; /* Adjust icon size */
    }
}

/* Notification image styles */
#notification-image {
    display: none; /* Initially hidden */
    width: 40px; /* Width of the image */
	margin-right: 20px;
    height: auto; /* Maintain aspect ratio */
    margin-left: 10px; /* Space between text and image */
    box-shadow: 0 0 10px rgba(252, 181, 20, 0.8), /* Outer glow */
                0 0 20px rgba(252, 181, 20, 0.5); /* Inner glow */
    transition: box-shadow 0.3s ease; /* Transition for glow effect */
}

/* Glow effect when the image is shown */
#notification-image.show-glow {
    box-shadow: 0 0 20px rgba(252, 181, 20, 1), /* Brighter outer glow */
                0 0 30px rgba(252, 181, 20, 0.8); /* Brighter inner glow */
}

/* Mobile adjustments */
@media (max-width: 600px) {
    #notification-image {
        width: 40px; /* Smaller width for mobile */
    }
}

/* Reset some default browser styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

#notification-box {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 90%;
    max-width: 360px;
    padding: 16px 22px;
    
    background: linear-gradient(145deg, #0b0b0b, #1a1a1a); /* Subtle dark gradient */
    color: #107c10; /* Xbox green text */
    
    border: 3px solid #fcb514; /* Inner golden border */
    outline: 4px solid #552583; /* Royal purple outer outline */
    border-radius: 14px;

    box-shadow:
        0px 4px 15px rgba(0, 255, 0, 0.4),
        0px 0px 35px rgba(252, 181, 20, 0.8),
        0px 0px 80px rgba(85, 37, 131, 0.6); /* Green/gold/purple triple aura */

    font-size: 20px;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    opacity: 0;
    transition:
        transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55),
        opacity 0.3s ease-in-out;
    transform: translateY(150px);
    z-index: 1002;
    text-align: left;
    backdrop-filter: blur(6px); /* Nice soft blur */
}



/* Icon style */
#notification-box::before {
    content: "🏈"; /* Icon */
    font-size: 35px; /* Icon size */
    margin-right: 10px; /* Space between icon and text */
    animation: glow-icon 1s infinite alternate; /* Glow effect */
}

/* Show notification */
#notification-box.show {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Slide into view */
}

/* Keyframes for glowing effect on the icon */
@keyframes glow-icon {
    from {
        text-shadow: 0 0 10px rgba(252, 181, 20, 0.8), 0 0 20px rgba(252, 181, 20, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(252, 181, 20, 1), 0 0 30px rgba(252, 181, 20, 0.8);
    }
}

/* Ensure crisp text rendering */
body, #notification-box {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Media queries for smaller screens */
@media (max-width: 480px) {
    #notification-box {
        font-size: 16px;		/* Reduce font size on smaller screens */
        padding: 10px 5px; /* Further reduce padding */
    }

    #notification-box::before {
        font-size: 30px; /* Adjust icon size */
    }
}

/* Notification image styles */
#notification-image {
    display: none; /* Initially hidden */
    width: 40px; /* Width of the image */
	margin-right: 20px;
    height: auto; /* Maintain aspect ratio */
    margin-left: 10px; /* Space between text and image */
    box-shadow: 0 0 10px rgba(252, 181, 20, 0.8), /* Outer glow */
                0 0 20px rgba(252, 181, 20, 0.5); /* Inner glow */
    transition: box-shadow 0.3s ease; /* Transition for glow effect */
	    animation: glow-icon 1s infinite alternate; /* Glow effect */
}

/* Glow effect when the image is shown */
#notification-image.show-glow {
    box-shadow: 0 0 20px rgba(252, 181, 20, 1), /* Brighter outer glow */
                0 0 30px rgba(252, 181, 20, 0.8); /* Brighter inner glow */
}

/* Mobile adjustments */
@media (max-width: 600px) {
    #notification-image {
        width: 40px; /* Smaller width for mobile */
    }
}
  .flashing-text {
    background-color: black;
    color: white;
  }

  @media (max-width: 1200px) {
    .flashing-text {
      animation: flash 5s infinite;
    }
  }

  @keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
      .map-container {
        position: relative;
        width: 100%; /* Full width */
        height: 0; /* Set height to 0 initially */
        padding-bottom: 59.72%; /* Aspect ratio of 1800 x 1073 */
        background-image: url('/images/us-map12.jpg'); /* Ensure this path is correct */
        background-size: contain; /* Adjust to contain */
        background-repeat: no-repeat;
        background-position: center; /* Center the image */
    }

   .matchup-box {
        position: absolute;
        padding: 0px;
        border-radius: 5px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start; /* Align logos to the top */
        width: 120px; /* Adjust width to fit both logos */
        cursor: pointer;
    }

    .team-logo {
        width: 50px; /* Adjust the size as needed */
        height: 50px; /* Adjust the size as needed */
        margin: 5px; /* Space between logos */
        transition: background-color 0.3s ease; /* Smooth transition */
    }
    .team-logo3 {
        width: 80px; /* Adjust the size as needed */
        height: 80px; /* Adjust the size as needed */
        margin: 5px; /* Space between logos */
        transition: background-color 0.3s ease; /* Smooth transition */
    }
.unselected-team {
    background-color: red;
    border-radius: 10px;
}

    .unselected {
        background-color: #D8090A; /* Unselected background */
        color: white;
    }

    .team-standings {
        font-size: 12px; /* Smaller font size for standings */
        text-align: center; /* Center align standings text */
        margin-top: -8px; /* Space between logo and standings */
    }

    /* Form section at the bottom of the map */
.submission-form {
    color: #43b748;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fcb514; /* Dark background */
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 255, 0, 0.4); /* Subtle green glow */
}

.submission-form input {
    margin: 10px;
    padding: 12px;
    width: 250px; /* Slightly wider input fields */
    background-color: #2d2d2d; /* Darker input background */
    border: 2px solid #107c10; /* Xbox green border */
    color: #ffffff; /* White text */
    font-size: 14px;
    border-radius: 5px;
    box-shadow: inset 0px 0px 5px rgba(0, 255, 0, 0.2); /* Green inner glow */
    outline: none;
    transition: all 0.3s ease;
}

/* Input hover and focus effects */
.submission-form input:focus {
    border-color: #43b748; /* Lighter green on focus */
    box-shadow: 0 0 10px #43b748, inset 0 0 10px rgba(0, 255, 0, 0.5); /* Bright green glow */
}

/* Button styling with Xbox theme */
.submission-form button {
    margin-top: 15px;
    padding: 12px 30px;
    background-color: #107c10; /* Xbox green */
    color: #ffffff; /* White text */
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 25px; /* Rounded button */
    cursor: pointer;
    text-transform: uppercase; /* Xbox-style uppercase */
    box-shadow: 0 0 10px #43b748; /* Green glow */
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* Button hover effect */
.submission-form button:hover {
    background-color: #43b748; /* Lighter green on hover */
    box-shadow: 0 0 20px #43b748; /* Intense green glow */
}

/* Button active effect */
.submission-form button:active {
    background-color: #075f07; /* Darker green when clicked */
    box-shadow: 0 0 10px #075f07; /* Reduced glow on click */
}


    /* Hide the map on mobile devices */
    @media (max-width: 1200px) {
        .map-container {
            display: none; /* Hides the map on mobile */
        }
    }

.selected-matchup {
    background-color: blue;
    transition: background-color 0.3s ease;
}
	
.selected-container {
    background-color: green;
    color: white;
    border: 2px solid darkgreen;
}
@media (max-width: 1200px) {
    .submission-form {
        display: none; /* Hide the submission form on small screens */
    }
}
#matchupCounter {
    color: #107C10; /* Xbox green */
    font-size: 18px;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #1B1B1B; /* Dark background to contrast the green */
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    transition: transform 0.2s ease, background-color 0.3s ease;
}

#matchupCounter:hover {
    background-color: #252525; /* Slightly lighter dark background on hover */
    transform: scale(1.00); /* Small scale effect on hover */
}
#matchupCounterDuplicate {
    position: absolute; /* Position it absolutely within the map-container */
    top: 32%; /* Adjust the top position */
    left: 29%; /* Adjust the left position */
    color: #fcb514; /* Xbox green */
    font-size: 27px;
    font-weight: bold;
    padding: 5px 10px;
    background-color: rgba(27, 27, 27, 0.8); /* Semi-transparent background for contrast */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    transition: transform 0.2s ease, background-color 0.3s ease;
    z-index: 10; /* Ensure it appears above the map */
}
.rainbow-text {
    background: linear-gradient(90deg, 
        red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold; /* Optional for better visibility */
}
#matchupMessage {
    background-image: url('/images/weather.png');
    background-size: cover;
    padding: 18px;
    color: black;
    width: 230px;
    height: 300px;
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: x-large;
    transform: translate(0, 0);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    border-radius: 8px;
}

#imagePath {
    position: absolute;
    top: 21%;
    left: 11%;
    width: 230px;
    height: auto;
    z-index: 10000;
    pointer-events: auto;
}
#different {
    position: absolute; /* ✅ Critical addition */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow clicks to pass through unless explicitly set on children */
    z-index: 998; /* Highest possible to appear above map */
}

.byes-container {
    background-color: black;
}
.atlas-byes-container {
    display: none; /* Hidden by default, shows when byes exist */
    background: #222;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.bye-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bye-team {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-logo2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
}


.image-container {
        position: relative; /* Make the container relative */
        display: inline-block; /* Align the container inline */
    }
        /* Container for the image with the football border */
        .football-border {
            display: inline-block;
            padding: 0px; /* Space between the border and the image */
            border-image: url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBwgHBgkIBwgKCgkLDRYPDQwMDRsUFRAWIB0iIiAdHx8kKDQsJCYxJx8fLT0tMTU3Ojo6Iys/RD84QzQ5OjcBCgoKDQwNGg8PGjclHyU3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3N//AABEIAJQAlQMBIgACEQEDEQH/xAAcAAEAAQUBAQAAAAAAAAAAAAAABwEDBAUGAgj/xABBEAABAwMABwUFBgMGBwAAAAABAAIDBAURBhITITFBUQciYXGBFDKRobEVI0JSYsFygtEWJTNEY5IkQ3N0ovDx/8QAGgEAAgMBAQAAAAAAAAAAAAAAAAQBAwUCBv/EACgRAAICAgEDBAICAwAAAAAAAAABAgMEERIhMUEFE1FhIiOh8DJSgf/aAAwDAQACEQMRAD8AnFERABEVMoAqiosKsu9toTisuFJTnpLM1p+ZQBnIufk030Xjdh9/twP/AF2r1DpnozOcRX+3E/8AcNH7qNo64y+DfIsWkuFFWt1qOsp6gdYpWu+hWTlSclUVFVABERABERABERABERABUJwrdRPFTwvmmkZHGwaz3vcAGjqSop0t7TnTukpLDMIYhkOquMj/AOAch4nf5Lic1BdS2qmdr1EkC/6U2iwsxX1Q22MtgjGvI7+UcB4nAWqhvF9vDNrT00dppHDuOn+8qHjrq+6z11lHeg0VPU3GW5XCnrZ2xHWY80ksgkkPMuxvI+uF0mmWmkFtt4ZRyvjqpnautLG5hY3G84IXEbG1yaLp0RjNVxe38+DB0tuUVE80s1ZU3Stx3xNUO2Uf8TGYbnwwuCkiZI7OyhYActbHE1jW+QAXQ6KWB+kRfVvqNnb2OO0qc73HmATuz1J4eK3M+hcFXPLPb53UtAyPLZKnfru5kfoxzKUmrbfyNGuWNj/g3tnB7DA91eXQA8W+hAW7q7DcqWi9tkpnmkycTDgRnc7HEA8lreeOaoanHuPQddi3Hqa91FBrh4hY144PaMOHqN621v0h0gtZH2fe62No/wCXK/bMPo/PywrGqCvDmKY3Tj5OZY9cl1R3Fn7WrjTkMv1sjqo+c9EdV482OOD6EKRdHdLrJpGz+665j5gMup39yVvm07/Xgvn4sVp8WZGSNLmSsOWTRu1XtPgRvCZry/8AYQu9Ni+sOh9RB2VVQnot2nXO0FtPpCH3GhG4VLB9/GOrhwePn5qX7RdaG8UMdbbaqOpp38HxnPoeh8E5GSktoyrKZ1vUkZqIi6KwiIgAiIgCKu1u7ySVsFnjeRAyMSzs5PcT3QfLGfXwXM6H2QXm6CORuKSAB0+N2Ryb6/TKadSmXTG7yEkt2waN/ANja36gqQ9ELT9kWWKORuKiX7yb+I8B6Dd8Ujxdlz32RsymsfFjruzLutfTWO0vqXNa2OFurHG3cCeTQFD9ZVVF0rnT1cutNM8axcdwzwHgAug0/vP2hdPY4XZp6Qlu78UnM+nD4rllXkW7lpdkX4OPwhyfdkq7OjifbdG6TDqfYufLsSO81vUg8yST6dVmkx3CufAJAKO3kCRn534yA7wG718lENPUT0sompppIZQMB8bi0/ELZ0ekdwpLfW0bDG9tWXOkkeDr6zgATnPQc1bHKj5QrZ6bPunskR0TL1tZrkxzbbH3o2Pdqte0b9Z2/wCR3Y9VgV1mh0jqIayQRU1uiad8YDZZByyeAHzA892sZpNBU0NntdEyR8jpI46gVJ44wN55gnf6YXQ3WeGeuiskU7YnFu1c385zuGOGNxJHkmNwsQlxtpe+xwsujM9ZcauKxslnpoACJJ+5rZ5DPHwWge0sc5rtxacHKl+4yuc+O1wmTvgColiaQWg8BnkT15DzWnq7JabRbp6aG3G41sjS85w57Ry38h0xvKXsxfMR2j1FrpMjYjKtubhdFc9Fqy2WiOvq5YWOecOgJ77c8B4nr0Wh3HdnKSlBxfU1q7I2LcWY5b0WRY7vc9G7h7dZZdRxP31M4nZTjo4dehG9W3NwV4Lc9N6muyUH0OLaY2LTRPWhemFu0roTJSExVcW6opZCNeM9fFp5H99y6RfMFJU1lsuEVytU5p66E91w4PHNrhzaeinnQbS+l0ste2jAgrYcNqqUnfG7qOrTyP8ARatdimjAycZ0v6OmREVgqEREAQo+h+0e0uspZBlja18sg/S3vfXVHqu50nuZtNlqKth++wGRD9Z3D4bz6LUQ0b6XtG0iqi0AFsD4z1D2AH5xlantMuAlloqKN3da0zP8zuH0PxSr/XCUvlmlH99tcPCSOI38zk8yeaIizjdQREQAW0sN6ltFzFdsxUu1CwiVxzjdwPXctWilScXtHM4RmtSRIWiN82kd2r6+qiDg4ytgyA4DGTjmeQ9FtrJNTvtzr1I+YiUFzwQe+7ONw+QwonW6k0kr57XR2wPjgZTvbqyt7p3bm58k3Xk6/wAjLyPT9vdf9R3T7RDfXbe9skZsX51NfDGtH4QeGOp4+S01+tk+kV1pIKC3spaVrD/xZZgFviB8hx3rc3a4UjZLbZ3zmVtSAXuZv2v5QccATv8ARZ1ZI6kjjoaZ8jp3jMkoGs6NmePnyHqeSalGNi0Z0LbKZJr/AIRNc6F9ur5qKZ7HSRO1SWHIKwCMFSTfbbYrBa6n2inNRU1hJjD35cD4HiAD8VHLxuzz5rNur4M3sa/3ob/n5LTm5Vy1XWt0eu0N3tn+LFumiPuzx82n4bjyK9U0EtTOyCnjMkryA1o5ld5a9E6S3RMmq2Mqan8RIy1h8B+67xlNy2irMsrhHjPySVo/eKS/Wmmudvfr087NYdWnm0+IOQVslE2jld/Y/S4UrzqWS+S4YM92Cq8Ogd9cdFLA4LTRgSWmVREUnJx2koFJpNSS6oDLhTuhc7/UiOs0erXyf7VFelNSZ9Iq12trNa8Rt8A0AfXKmLTygmq9HZZqIZraJ7aqDAyXFm9zf5m6zfVQPLWMrp5qmN2WyyOcPUpPMb4o1PTEubf0XM54KqtA6vBew4FZ+zbPSIikAiIgAiIgDY6P3T7HusVbsGz7MEBhOMZ3ZB5FdtojXz3Cqu14rZRHSBwxHuOrgfs3A8cqOF7jnliZIyOR7GyDDw12A4dD1V1dzh37CmRiRtXToymltzuF1uz7nC/WY0arafkGeCxKOsiq4y5m5w99h4tWSt3otonJcZJL3BqxyUzgYtf3Znjec+XwJ+XSfvPUu5EksWG49vg6XQ+w/ZlMKmqZismbvB4xt/L5nn8F0bhrAg81g226C4F7ZWbKrYfvYjyPUeC8X+7RWa3uqJAHynuxR59539BzT8VGuH0YU5Tvs+2aTTT2GSzz0ddLs3yDMGqMuEg3tcPI812nZrpGdJNFaaondrVlOfZ6vrtGgb/UYPqoQr6meuqX1NU/aSv9537DoF0vZHdja9Mn297sU10iIA/1mbx8W63yVNN/OWhy/D9ure+pOiqqBE0ZoIXzpp1Y3aKaUVEMTAygqPvafA3Bh4j+VxI8i1fRi5btD0XGk9jdDA1gr6c7Wle7hrc2HwcN3wPJcTjyjovx7fansgoEH+i9LX08j6eQ007XMIJaA/c5pG4sd4grODgVk2VuDPR12Ka2ew4hew8c1bRV7LS6CCqqymT1RsC8itax6lU1j1KnYF5UJAVrJVEbAzKCmkr62KkpxmSV2B4DmfQZKlulhjpKOGkgGIYW6rQPmfM8fVcpoBatjTPuUre/N3IsjgwHefU/RdctLFr4x5PyYPqF/OfBdka670LJm+1sk2FTCNZs3DcOR8FFlZfqq+1JfX4ZNGNUQjg0dR5rttPrrsqdlshd35hrTEHg3O4ev0Hio8qqfbFskZ1Jme479j4KrIsjKXAYwKJRj7r/AKi87gseWofQzUtxgztaKoZUNx+lwOF7p59qxwe3VlZue3p5eC8zM14XsP4mkKivcJD1qU4v7Pp6jqI6ykgqYSHRTRtkYQdxBGR9UXL9k9d7doDaSSS6CM05/kJaPkAi1jzLWno69UVUQQRR2taDuqte/wBohL5AAa2CMd54HCVo/MOfUeW+KqSpLiIpXAvIyx44SDqF9VOGQoe7Suzh7DNd9H6dz4nHaVFFE3vMPN8QHzb8OipsqUkPYuS4fizgg7qvYIK1lPWYxHOQc+5Lyd59D4LOHgc+Szp18X1NqFm10LqK2HFeg/wVXFlvJHpFTWCrkdVGidhZlpoX3K4wUbCQZHb3D8LRxPwWGN67bs7ogGVNwfjLvuo/Ib3H6fBWVV85pFGTb7VTkdlFGyGJkULQyNgDWtHAAcF4rKiKkpZamd2Iomlzirhc0DJcPiuM7Qbo0RQ22J2dc7SXHQcB8Rn0C1bZqENnn6K3bakzka+slr62arn/AMSV2sfDoPTgsdeS/pleckrJ029s9LtRWkWqmPXcJId0zeGT7w6HwXqGQSsDgCOoPEHoV6Vp7CyTax5yffaPxDr5hWx7aKX32Sz2CTE6OXWmcSdjcn6o6AsZ+4PxVVj9gmTR39w901rceer/APEWpHsjz1y/YyVURFJUFQhVRAEc6e9mVJezLcLLsqW4vy6SJwxDUnq7Huu/UPVQvWUtysdc6hraaWGVnGnnGHY6sdwcPEL6tWrv1gtmkFL7LdqKOoi4tJGHMPVruIPiFzKCktDFOTKs+aoK2GbcHaj+bH7ishdrpP2PV0GtNYZmV8AyfZqlwbM3wa/gfXCjuuoK+z1Hs9a2qoJQcCOsjIB8ncD5hKTx/g1KsuMzPRYDaitaMuhZMPzRlehcmA/fQyx+bdyqdUhj3ImacAZ6KUrJS+xWmlp8Yc2MFw/Ud5+ZUU2+toZ66njkmAY+VodrA8M71LH2nQn/ADcXqcK6iDTbaEM+e0ooy1F99qvbbvVT62Wl+qz+Ebh9F3F6vtDRWqpnbVxa7WEMw78R3BRf7dTAd2Qux+RpKL9vSSIwElubMlFgTXWCP8Lz54C2lmsuk2kJb9kWeUxO/wAxKNWMDrrOwD6ZVKom/A9K+uPdlokAEk4Xu10dxv1YKKwUj6mbPfl4RxDq53Af+4ypEsHY20ls+lNxfVO4mlpSWR+RdxPphSfbLZRWmkZSW2khpoGcGRMDR5+fimK8ZLrIRuz/ABA0mgGirNEbGaLamapmkM1TKBudIQBu8BgYVV0qJnRmN7e2VREUkBERABERAFCrNVR01ZCYauninidxZKwOafQq+iAOJufZZonXPMkdDJRSn8VHK6P/AMfd+S56r7G24/u7SKqi37hUQNlGPQtUrphQ4plkbZx7MhuPsjvlLUxzU98t8ro3BzTLRkb/ABGStj/YTS93G62Jni2gz9QpTRCikDtnLuRVN2XXqvYIrnpPT7EkF0dPbGNO7hh2f2WXRdjVhYQa+uuNZv8AdMojafRoz81JSI0R7k9a2c9aNCdGrOWuoLNStkbwkkbtH/7nZK3+qBjwXpFJw+vcIiIAIiIAIiIAIiIAIiIAIiIAIiIAIiIAIiIAIiIAIiIAIiIA/9k=') 30 round; /* Football image as the border */
            border-width: 15px; /* Thickness of the border */
            border-style: solid;
            background-color: white;
        }

        /* Styling the actual image */
        .football-border img {
            display: block;
            max-width: 100%;
        }
	.overlay-image {
    position: absolute;
    top: 35px;
    left: 85%;
    transform: translateX(-50%);
    z-index: 10;
    width: 20%; /* Set the width as a percentage for responsiveness */
    max-width: 200px; /* Optional: maximum width to limit size */
    height: auto; /* Maintain aspect ratio */
}

.image-container {
    position: relative;
}

.overlay-image {
    position: absolute;
    top: 40px; /* Adjust as needed */
    right: 40px; /* Adjust as needed */
    width: 25%; /* Adjust size as needed */
	left: 80%;
}

.main-image {
    width: 100%; /* Makes the stadium image responsive */
    height: auto; /* Maintain aspect ratio */
}
@media (max-width: 999px) {
    #week-selection {
        display: flex;
		flex-direction: row;
        align-items: stretch; /* Makes elements take full width */
        background-color: #107c10;
        padding: 10px;
        gap: 10px; /* Adds space between elements */
    }

    #week-selection label {
        font-weight: bold; /* Makes labels stand out */
        margin-bottom: 5px;
    }

    #week-selection select, 
    #week-selection button {
        width: 100%; /* Ensures dropdowns and buttons take full width */
        padding: 8px;
        font-size: 16px;
		align-self: center;
    }
}

@media (min-width: 1000px) {
    #week-selection {
        position: sticky;
        top: 41px;
        background-color: #107c10;
        z-index: 10; /* Ensures it stays above other content */
    }
}

.map-container2 {
    text-align: center;
    margin: 20px;
    border: 3px solid #2D2D2D; /* Dark border for emphasis */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Inner padding for aesthetics */
    background-color: #4CAF50; /* Xbox green background */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Stronger shadow for depth */
}
@media (min-width: 1000px) {
    #week-selection {
        display: grid;
        grid-template-areas: "left center right";
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
		z-index: 999;
    }

    .week-left {
        grid-area: left;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.week-center {
    grid-area: center;
    display: flex;
    font-size: 3rem; /* Or whatever looks good */
    font-family: 'digital-7';
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: slideIn 1s ease-out 3.5s forwards; /* ⏱ 1.5s delay */
    opacity: 0; /* Start hidden */
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}



    .week-right {
        grid-area: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 45px;
    }
}

.map-buttons {
    display: flex;
	background-color: #fcb514;
	width: 69%;
    flex-direction: column; /* Stack buttons vertically */
    align-items: center;    /* Center align the buttons */
    margin: 20px;          /* Add some margin around the button container */
}
@media (max-width: 1200px) {
    .map-buttons {
        display: flex;
        background-color: #fcb514;
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin: 0px;
    }
}

.map-buttons button {
    background-color: #4CAF50; /* Change to your preferred color */
    color: white;              /* Text color */
    border: none;              /* Remove default border */
    padding: 10px 20px;        /* Add some padding */
    margin: 5px 0;            /* Add margin between buttons */
    border-radius: 5px;        /* Rounded corners */
    cursor: pointer;           /* Change cursor to pointer */
    transition: background-color 0.3s; /* Smooth transition on hover */
}

.map-buttons button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

#map-iframe {
    width: 69%; /* Default width for normal screens */
}

@media (max-width: 1200px) {
    #map-iframe {
        width: 100%; /* Set to 100% for screens smaller than 1200px */
    }
}


td {
    border: 0px solid #ddd;
}
@keyframes colorChange {
        0% { color: #fcb514; }
        25% { color: #ff5733; } /* Change to another color */
        50% { color: #33ff57; } /* Change to another color */
        75% { color: #3357ff; } /* Change to another color */
        100% { color: #fcb514; } /* Return to the original color */
    }

    @keyframes pop {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); } /* Scale up */
        100% { transform: scale(1); }  /* Scale back */
    }

    .testingnow {
        font-size: 35px;
        font-family: 'digital-7', sans-serif;
        animation: colorChange 5s infinite, pop 0.5s ease-in-out; /* Apply animations */
        color: #fcb514; /* Initial color */
    }
body {
    overflow: auto; /* Keep the body scrollable */
}




#message-box {
    display: none; /* Hides the message box */
}
.modalPlaybook {
    display: none; /* Hide the modal by default */
    position: fixed; /* Position it fixed to cover the entire viewport */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center; /* Center the modal content */
    align-items: center; /* Center the modal content */
    z-index: 1000; /* Ensure it sits on top of other elements */
}

    /* Default style for all screens */
    .blank-space {
        display: none; /* Hide by default */
    }

    /* Show the blank space on screens 800px or less */
    @media (max-width: 800px) {
        .blank-space {
            display: block; /* Show blank space */
            height: 150px; /* Set height */
        }
    }
	
.trophy-id2 {
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
  color: #00ff00; /* Xbox green */
  background: linear-gradient(90deg, #003300, #004d00); /* Subtle green gradient */
  padding: 3px 6px; /* Comfortable padding for readability */
  margin-right: 8px;
  border: 2px solid #00ff00; /* Xbox green border */
  border-radius: 8px; /* Smooth edges for a polished look */
  box-shadow: 0px 4px 6px rgba(0, 255, 0, 0.3), inset 0px 2px 4px rgba(0, 0, 0, 0.6); /* Glow and depth effect */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Subtle text shadow for contrast */
  text-transform: uppercase; /* Bold and commanding style */
  letter-spacing: 1px; /* Slight spacing for a sleek look */
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s; /* Smooth hover animation */
}


.trophy {
  position: relative;
  display: inline-block;
  text-align: center;
}

.trophy img {
  width: 100px; /* Adjust size as needed */
  height: auto;
  display: block;
  margin: 0 auto;
}

.trophy-id {
    position: absolute;
    top: 5px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
    z-index: 1;
}
img#stadium-image {
    max-width: 1265px;
}



/* General Trophy Item Styles */
.trophy-item {
  display: flex;
  justify-content: space-between; /* Separate main sections */
  align-items: center;
  background: #1c2b2d; /* Dark greenish-gray background */
  border: 2px solid #22b14c; /* Xbox green border */
  border-radius: 10px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #e8f5e9; /* Brightened text color */
}

.trophy-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(34, 177, 76, 0.6); /* Glowing hover effect */
}

/* Icon Section */
.trophy-icon {
  width: 90px; /* Smaller, compact icon */
  height: auto;
  margin-right: 20px;
  border: 3px solid #22b14c;
  border-radius: 10px;
  background: #1a2426; /* Subtle background for icon */
}

/* Content Section */
.trophy-content {
  flex: 1; /* Take up remaining space */
  display: flex;
  flex-direction: column;
}

.trophy-name {
  font-size: 1.2em; /* Adjusted title size */
  font-weight: bold;
  color: #7cfc00; /* Bright Xbox green */
  text-shadow: 1px 1px 3px #000;
  margin: 0 0 5px 0; /* Added spacing below */
}

.trophy-description {
  font-size: 0.95em;
  font-style: normal; /* Removed italic for a cleaner look */
  color: #d3f5db; /* Brighter, easy-to-read text */
}




label2 {
  font-weight: bold;
  display: inline-block;
  margin-right: 5px;
  color: white;
}

p {
  font-size: 14px; /* Adjust for better readability */
  margin-bottom: 10px;
}

/* Ensure the modal covers the full screen */
.modal-trophy {
  display: none; /* Hidden by default */
  position: fixed; /* Position it fixed on the screen */
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.5); /* Dark background overlay */
  z-index: 9999; /* Ensure it sits on top of other content */
}

/* Modal content box styling */
.modal-content-trophy {
  position: absolute;
  top: 50%; /* Center it vertically */
  left: 50%; /* Center it horizontally */
  transform: translate(-50%, -50%); /* Correct centering */
  background-color: #fff; /* White background for modal content */
  padding: 20px;
  border-radius: 8px;
  width: 90%; /* Ensure it’s responsive */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  max-height: 80vh; /* Limit the height of the modal content */
  overflow: auto; /* Make the content scrollable only when needed */
}

/* Custom Xbox-themed Scrollbar styling */
.modal-content-trophy::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
  height: 12px; /* Height of the scrollbar (for horizontal scrollbar) */
}

/* Xbox Green Thumb styling */
.modal-content-trophy::-webkit-scrollbar-thumb {
  background-color: #107c10; /* Xbox green for the scrollbar thumb */
  border-radius: 6px; /* Rounded corners for the thumb */
}

/* Darker Xbox Green on Hover */
.modal-content-trophy::-webkit-scrollbar-thumb:hover {
  background-color: #1a9a1a; /* Darker Xbox green when hovering over the scrollbar */
}

/* Xbox Grey Track styling */
.modal-content-trophy::-webkit-scrollbar-track {
  background: #333333; /* Dark grey for the scrollbar track */
  border-radius: 6px; /* Rounded track edges */
}

/* Smooth edges for the track */
.modal-content-trophy::-webkit-scrollbar-track-piece {
  border-radius: 6px; /* Smooth track edges */
}


/* Close button styling */
.close-trophy {
    font-size: 30px;
    font-weight: bold;
    color: red;
    position: absolute;
    background-color: yellow;
    top: 10px;
    right: 20px;
    padding: 7px;
    cursor: pointer;
}

.close-trophy:hover,
.close-trophy:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Trophy list item styling */
.trophy-list-unique div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.trophy-list-unique img {
  width: 50px; /* Image size */
  height: 50px;
  margin-right: 15px;
  transition: all 0.3s ease; /* Smooth transition */
}

.trophy-list-unique img:hover {
  width: 100px; /* Triple the size */
  height: 100px;
}


.trophy-list-unique h4 {
  margin: 0;
}



/* Open button styling */
.open-trophy-btn {
  position: static;
  bottom: 20px;
  left: 20px;
  padding: 10px 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.open-trophy-btn:hover {
  background-color: #45a049;
}
.welcome-text h2 {
    margin-top: -7px;
    font-size: 36px;
    color: #fcb514;
}
/* Styling for the categories */
.category-header {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #ffcc00; /* Change to your desired color */
}

/* Styling for the shortcuts list items */
.shortcut {
    margin: 5px 0;
    font-size: 14px;
    color: #fff;
}
@media (max-width: 700px) {
    .prkch1-modal {
        display: none;
        position: fixed;
		color: white;
        z-index: 9999;
        left: 50%;
        top: 50%;
        width: 100vw;
        height: 100vh;
        overflow: auto;
        background-color: rgba(0, 0, 0, 1.0);
        transform: translate(-50%, -50%);
    }
}
/* ✅ Works in Firefox + Chrome + Edge + Safari */

/* Firefox Scrollbar */
body {
    scrollbar-width: thin; /* Makes scrollbar thinner */
    scrollbar-color: #107c10 #1c1c1c; /* Xbox green thumb, blackish background */
}

/* ✅ Webkit Browsers (Chrome, Edge, Safari) */
body::-webkit-scrollbar {
    width: 8px; /* Set width of scrollbar */
    height: 8px; /* Set height of horizontal scrollbar */
}

/* Track of the scrollbar */
body::-webkit-scrollbar-track {
    background: #1c1c1c; /* Xbox blackish background */
    border-radius: 10px; /* Rounded corners for the track */
}

/* Handle of the scrollbar */
body::-webkit-scrollbar-thumb {
    background-color: #107c10; /* Xbox green for the thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 2px solid #1c1c1c; /* Border for better contrast */
}

/* Optional: Hover effect for the scrollbar thumb */
body::-webkit-scrollbar-thumb:hover {
    background-color: #2fd32f; /* Lighter green on hover for the thumb */
}

.stats-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: url('https://wickem.online/images/closed3.gif') no-repeat center center;
    background-size: contain;
    z-index: 9999;
    pointer-events: none;
    display: none; /* Hide by default */
}

img.thursday-night-logo {
    Height: 100%;
}
@keyframes rainbowOscillate {
    0% { color: red; text-shadow: 0 0 10px red; }
    14% { color: orange; text-shadow: 0 0 10px orange; }
    28% { color: yellow; text-shadow: 0 0 10px yellow; }
    42% { color: lime; text-shadow: 0 0 10px lime; }
    57% { color: cyan; text-shadow: 0 0 10px cyan; }
    71% { color: blue; text-shadow: 0 0 10px blue; }
    85% { color: violet; text-shadow: 0 0 10px violet; }
    100% { color: red; text-shadow: 0 0 10px red; }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 0, 255, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 255, 0, 0.8); }
}


.froglips-profile-btn {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0px 0px;
    border: 3px solid white;
    border-radius: 10px;
    cursor: pointer;
    animation: rainbowOscillate 2s infinite linear, pulseGlow 1.5s infinite ease-in-out;
    transition: transform 0.2s ease-in-out;
}
.froglips-profile-btn2 {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    transition: transform 0.2s ease-in-out;
}

.froglips-profile-btn2 img {
    height: 80%;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: box-shadow 0.2s, transform 0.2s;
}

.froglips-profile-btn2:hover img {
    border: 3px solid #fcb514;
    box-shadow: none;
    transform: none;
}


.froglips-profile-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 999px) {
    .froglips-profile-btn2 img {
        height: 130%;
    }

    .Mollie-custom-home-icon {
        height: 60px;
        width: 60px;
    }
}
img.week-logo {
    max-height: 43px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

img.week-logo:hover {
    transform: scale(1.05);
}
.button123 {
	width: 27%;
}
@media screen and (max-width: 1000px) {
    .button123 {
        position: relative;
        width: 100%;
        margin-bottom: 30px;
    }
}

.button123 img {
	   background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 150px;
}


.hamburger-menu-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 12px;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;

    position: absolute;
    top: 83px;
    right: 10px;
    background-color: #107c10;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    transition: all 0.3s ease;

    min-width: 260px;
    width: 300px; /* Make room for 2 tiles */
}


.hamburger-menu-content.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hamburger-menu-content button,
.hamburger-menu-content .tile-button,
.hamburger-menu-content a.tile-button {
    width: 100%; /* this is okay in a grid column */
    height: 100px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    padding: 0px;
    box-sizing: border-box;
}


.hamburger-menu-content button:hover,
.hamburger-menu-content a.tile-button:hover,
.hamburger-menu-content .tile-button:hover {
    transform: scale(1.05);
    background: #0fa2ae;
}

.hamburger-menu-content img {
    max-height: 100px;
    width: 140px;
    object-fit: contain;
}


#pivotButton {
    height: 100px;
    width: 100%;
}
.live-tile {
    position: relative;
    perspective: 1000px;
    height: 100px;
    overflow: hidden;
}

.live-tile span {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    padding: 0px;
    border-radius: 8px;
    background-color: #0d8b97;
    color: white;
    transition: transform 0.6s;
}

.tile-front {
    transform: rotateY(0deg);
    z-index: 2;
}

.tile-back {
    transform: rotateY(180deg);
    z-index: 1;
}

.live-tile.flipped .tile-front {
    transform: rotateY(180deg);
}

.live-tile.flipped .tile-back {
    transform: rotateY(0deg);
}
.live-tile:hover {
  box-shadow: 0 0 12px #00ffd5, 0 0 20px #00ffd5;
  transform: scale(1.05);
}
.tile-gif {
    width: 100%;
    height: 72%;
    object-fit: cover;
    border-radius: 8px;
}
/* Vertical Flip Support (flip-up modifier) */
.live-tile.flip-up span {
    transition: transform 0.6s;
}

/* Flip-Up Front and Back transforms */
.live-tile.flip-up .tile-front {
    transform: rotateX(0deg);
}

.live-tile.flip-up .tile-back {
    transform: rotateX(180deg);
}

/* When flipped */
.live-tile.flip-up.flipped .tile-front {
    transform: rotateX(180deg);
}

.live-tile.flip-up.flipped .tile-back {
    transform: rotateX(0deg);
}
.live-video-tile {
  position: relative;
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
  cursor: pointer;
}
.live-video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.96);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.fullscreen-modal video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffd5;
}
@media (max-width: 1000px) {
  button.froglips-profile-btn2 {
    top: 83px;
    /* Optional z-index and right/left if needed */
    z-index: 999;
    right: 15px;
  }
}
@media (max-width: 1000px) {
  .hamburger-menu-content {
    top: 203px;
  }
}
.tile-back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.tile-back-img:hover {
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}
#week-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 10px 0;
}

#week-nav-buttons button {
    font-size: 1.5em;
    color: white;
    padding: 0px 16px;
    background-color: #00525e;
    border-radius: 8px;
    cursor: pointer;
}
.week-left {
    max-width: 190px;
}
.winner-announcement {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center;    /* Center horizontally */
    justify-content: center;
    gap: 8px;               /* Small spacing between text and image */
}

.winner-name {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.winner-avatar {
    width: 150px;          /* Adjust as needed */
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0e7a0d;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.crownidbuttonintopbar {
    background-color: #b41f3a !important; /* default color */
    transition: background-color 0.3s ease;
}

.crownidbuttonintopbar.logged-in {
    background-color: green !important; /* color when logged in */
}

/* Scrolling message */
.scrolling-message {
    position: fixed;
    top: 20px;
    left: 100%;
    font-size: 30px;
    font-weight: bold;
    white-space: nowrap;
    color: #fff;
    padding: 10px 20px;
    background: #0e7a0d;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    animation: scrollMessage 6s linear forwards;
    z-index: 9999;
}

@keyframes scrollMessage {
    from { left: 100%; }
    to { left: -100%; }
}
.crownid-logo {
    height: 40px;            /* Adjust height as desired */
    vertical-align: middle;  /* Aligns vertically with text */
    display: inline-block;
    margin-left: 5px;        /* Adjust spacing between text and logo */
}
.profile-picture-container {
  margin-top: 10px;
  text-align: center;
}

.profile-picture {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #444;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.winner-container {
  position: relative;
}
.winner-ghost-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* or 'contain' if your images aren't uniform */
  border-radius: 8px;
  pointer-events: none;
  opacity: 0.25;
  z-index: 1;
  animation: ghostFade 3s ease-in-out infinite;
}



@keyframes ghostFade {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}

.overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 10;
  display: none; /* or none if you want toggle-on */
}


  .wickem-player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(8, 12, 20, 0.85);
    padding: 10px 14px;
    border-radius: 12px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    color: #00ff90;
    font-family: 'Segoe UI', sans-serif;
  }

  .wickem-player-controls button {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #00ff90;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .wickem-player-controls button:hover {
    transform: scale(1.25);
  }

  .seek-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #seekBar {
    width: 300px;
    accent-color: #00ff90;
  }

  .time-display {
    font-size: 12px;
    color: #b0ffc2;
  }
.week-tab {
  position: relative;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 8px;
}


  #volumeBar {
    width: 100px;
    accent-color: #00ff90;
  }
  #secretFullScreen {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 20px #00ffd5;
}

.video-js {
  object-fit: cover;
}
.vjs-progress-control {
  display: flex !important;
}
.video-js .vjs-control-bar {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.video-js .vjs-progress-control {
  flex-grow: 1;
  margin: 0 12px;
  min-width: 0; /* ensure it can shrink properly if needed */
}
/* Target your custom forward/back buttons */
.vjs-forwardbutton,
.vjs-backbutton {
  width: 32px !important;
  height: 32px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hide the text label span inside */
.vjs-forwardbutton .vjs-control-text,
.vjs-backbutton .vjs-control-text {
  display: none !important;
}

/* Hide icon placeholder that blocks image */
.vjs-forwardbutton .vjs-icon-placeholder,
.vjs-backbutton .vjs-icon-placeholder {
  display: none !important;
}
button.vjs-play-control.vjs-control.vjs-button.vjs-paused {
    background-color: red;
}
button.vjs-play-control.vjs-control.vjs-button.vjs-playing {
    background-color: green;
}
.matchup {
    display: block;
    flex-direction: column; /* Stack logo and matchup-inner vertically */
    border-bottom: 1px solid #ddd;
    margin-bottom: 0px;
    padding: 5px;
    position: relative;
}

.matchup-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    transition: opacity 0.3s ease-in-out;
}





.takeover-logo {
    display: none;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    background-color: black;
    border-radius: 10px;
    animation: takeoverSlideIn 0.9s ease-out;
}

.takeover-logo img {
    max-width: 50%;
    height: auto;
    transition: transform 0.2s ease-in-out;
}

.takeover-logo img:hover {
    transform: scale(1.05);
}

.takeover-logo.active {
    display: block;
}

.hidden {
    display: none !important;
}

@keyframes takeoverSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, white, transparent);
    border-radius: 50%;
    animation: sparkleAnim 0.6s ease-out forwards;
    pointer-events: none;
    opacity: 0.9;
}

@keyframes sparkleAnim {
    0% {
        transform: scale(0.5) translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: scale(1.5) translate(var(--x), var(--y));
        opacity: 0;
    }
}

.takeover-logo {
    position: relative; /* Needed to anchor ::after */
    z-index: 1; /* ensures the takeover-logo itself is above other content */
}

.takeover-logo img {
    position: relative;
    z-index: 2; /* image stays above the glow */
}

.takeover-logo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 75%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--glow-color, rgba(255,255,255,0.5)), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 1.5s 2 ease-in-out;
    z-index: 0;
    pointer-events: none;
}



@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}
.burst-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.75;
    pointer-events: none;
    animation: ringExpand 0.6s ease-out forwards;
    z-index: 1;
  }
  
  @keyframes ringExpand {
    to {
      transform: translate(-50%, -50%) scale(4);
      opacity: 0;
    }
  }
  .at-symbol {
    width: 32px; /* adjust size as needed */
    height: auto;
    margin: 0 10px;
    vertical-align: middle;
  }
  .player-matchup-fact {
    font-size: 1em;
    font-style: italic;
    font-family: 'Orbitron';
    color: black;
    border-bottom: dashed;
    margin-bottom: 5px;
    padding-left: 8px;
    background-color: #107c10;
}
.flippy-thurs-night-madness {
  height: 75px;
  perspective: 1000px;
}

.flippyrino-thursday-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform;
  transform-style: preserve-3d;
}

.thursday-front-plate, .thursday-back-sauce {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
}

.thursday-back-sauce {
  transform: rotateY(180deg);
}

.flippy-thurs-night-madness.flipped .flippyrino-thursday-inner {
  transform: rotateY(180deg);
}
.flip-it-friday-baby {
  height: 75px;
  perspective: 1000px;
}

.fliprino-friday-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform;
  transform-style: preserve-3d;
}

.friday-front-glory,
.friday-back-sizzle {
  position: absolute;
    display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
}

.friday-back-sizzle {
  transform: rotateY(180deg);
}

.flip-it-friday-baby.flipped .fliprino-friday-inner {
  transform: rotateY(180deg);
}
.saturdazzle-flipper {
  width: 100%;
  height: 75px;
  perspective: 1000px;
}
img.saturday-night-logo {
    width: 85%;
    max-width: 50%;
    height: auto;
    display: block;
}
.fliprino-saturday-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform;
  transform-style: preserve-3d;
}

.saturday-front-fire,
.saturday-back-blaze {
  position: absolute;
    display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
}

.saturday-back-blaze {
  transform: rotateY(180deg);
}

.saturdazzle-flipper.flipped .fliprino-saturday-inner {
  transform: rotateY(180deg);
}
/* NOON */
.sunburst-noon-flip {
  height: 75px;
  perspective: 1000px;
}
img.noon-slate-logo {
  width: 85%;
  max-width: 100%;
  height: auto;
  display: block;
}
.fliprino-noon-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform;
  transform-style: preserve-3d;
}
.noon-front-face, .noon-back-vibe {
  position: absolute;
    display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
}
.noon-back-vibe { transform: rotateY(180deg); }
.sunburst-noon-flip.flipped .fliprino-noon-inner { transform: rotateY(180deg); }

/* LATE */
.sunburst-late-flip { height: 75px; perspective: 1000px; }
.fliprino-late-inner { position: relative; width: 100%; height: 100%; transition: transform; transform-style: preserve-3d; }
.late-front-face, .late-back-vibe { position: absolute; width: 100%;   display: flex;
  align-items: center;
  justify-content: center; height: 100%; backface-visibility: hidden; border-radius: 10px; }
.late-back-vibe { transform: rotateY(180deg); }
.sunburst-late-flip.flipped .fliprino-late-inner { transform: rotateY(180deg); }

/* NIGHT */
.sunburst-night-flip { height: 75px; perspective: 1000px; }
.fliprino-night-inner { position: relative; width: 100%; height: 100%; transition: transform; transform-style: preserve-3d; }
.night-front-face, .night-back-vibe { position: absolute; width: 100%;   display: flex;
  align-items: center;
  justify-content: center; height: 100%; backface-visibility: hidden; border-radius: 10px; }
.night-back-vibe { transform: rotateY(180deg); }
.sunburst-night-flip.flipped .fliprino-night-inner { transform: rotateY(180deg); }
.monday-flip-fury {
  height: 75px;
  perspective: 1000px;
}
img.sunday-night-logo {
  width: 85%;
  max-width: 100%;
  height: auto;
  display: block;
}
.fliprino-monday-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform;
  transform-style: preserve-3d;
}

.monday-front-plate,
.monday-back-beast {
	 display: flex;
  position: absolute;
  width: 100%;
    align-items: center;
  justify-content: center;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
}

.monday-back-beast {
  transform: rotateY(180deg);
}

.monday-flip-fury.flipped .fliprino-monday-inner {
  transform: rotateY(180deg);
}
/* Container Flip Style (if you're using one) */
.wacky-wednesday-wrap {
  perspective: 1000px;
  margin: 0px auto;
}

/* Flip Inner */
.fliprino-wednesday-inner {
  position: relative;
  width: 100%;
  height: 75px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Flipped state */
.wacky-wednesday-wrap.flipped .fliprino-wednesday-inner {
  transform: rotateY(180deg);
}

/* Front */
.wednesday-front-plate {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0c3; /* deep green */
  color: white;
  position: absolute;
  width: 100%;
  height: 75px;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

/* Logo */
.wednesday-night-logo {
  width: 85%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Back */
.wednesday-back-sauce {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #064; /* darker green */
  color: white;
  font-size: 1.1rem;
  position: absolute;
  width: 100%;
  height: 75px;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  border-radius: 8px;
  text-align: center;
}
.dice-randomizer {
    position: absolute;
    width: 22px;
    height: 22px;
    bottom: 2px;
    right: 49px;
    cursor: pointer;
    opacity: 0.85;
    z-index: 2;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.dice-randomizer:hover {
  transform: scale(1.2);
  opacity: 1;
}
.randomizer-icon-atlas {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
  filter: drop-shadow(1px 1px 2px black);
}
.matchup-box.flashing {
  animation: backgroundFlash 0.2s infinite alternate;
  border: 2px solid white;
  border-radius: 12px;
}

@keyframes backgroundFlash {
  0% {
    background-color: #ff0040; /* Bright red */
  }
  50% {
    background-color: #00e5ff; /* Electric blue */
  }
  100% {
    background-color: #39ff14; /* Neon green */
  }
}
.matchup.flashing {
  animation: popupFlash 0.25s infinite alternate;
  border-radius: 14px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

@keyframes popupFlash {
  0%   { background-color: #ff0059; }   /* Hot pink */
  25%  { background-color: #00ffff; }   /* Cyan */
  50%  { background-color: #ff0; }      /* Yellow */
  75%  { background-color: #00ff00; }   /* Lime */
  100% { background-color: #ff6600; }   /* Orange */
}

#profileStatsPanel {
  margin-top: 20px;
  background-color: #1e1e1e;
  border: 2px solid #3fcf4f;
  border-radius: 12px;
  padding: 15px 20px;
  color: #f1f1f1;
  box-shadow: 0 0 12px #3fcf4f66;
  max-height: 400px;
  overflow-y: auto;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

#profileStatsContent p {
  margin: 6px 0;
  padding: 4px 0;
  border-bottom: 1px solid #333;
  font-size: 14.5px;
  line-height: 1.4em;
  word-break: break-word;
}

#profileStatsContent p strong {
  color: #44ff88;
}

#profileStatsContent label2 {
  font-weight: bold;
  color: #9df5c3;
  cursor: help;
}
@media screen and (max-width: 999px) {
  #MollieBar { display: none; }

#mobileMiniDock {
  position: sticky;
  top: 30px; /* or under your ticker */
  left: 0;
  width: 100%;
  background-color: #000;
  display: flex;
  flex-wrap: wrap; /* ✅ allow wrapping if needed */
  justify-content: center; /* ✅ center all buttons */
  gap: 8px; /* ✅ spacing between buttons */
  padding: 8px 0px;
  z-index: 1000;
  border-bottom: 2px dashed #fcb514;
}

.dock-btn {
  font-size: 22px;
  background: #111;
  color: #fcb514;
  border: 2px solid #107c10;
  border-radius: 8px;
  padding: 8px 12px;
  flex: 0 1 auto; /* ✅ shrink if needed */
  min-width: 40px;
}


  .dock-btn:active {
    transform: scale(1.3);
  }

  #mobileMenuPanel {
    background: #222;
    padding: 10px;
    text-align: center;
    display: none;
    z-index: 998;
  }

  #mobileMenuPanel button {
    background: #444;
    color: #fcb514;
    margin: 5px;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
  }

  #mobileMenuPanel button:hover {
    background: #666;
  }

  #mobileMenuPanel.show {
    display: block;
  }
}
@media (max-width: 400px) {
  .dock-btn {
    font-size: 18px;
    padding: 6px 10px;
  }
}
@media (max-width: 999px) {
  #week-selection {
    display: none;
  }
}
#mobileMainMenu {
    background: #000;
    padding: 20px 0px;
    border-top: 2px solid #fcb514;
    border-bottom: 2px solid #0f0;
    position: relative;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}
@media (max-width: 550px) {
  .helmet {
    width: 100%;
    height: auto;
    margin-right: 5px;
  }
}

#mobileMainMenu.hidden {
  display: none;
}

#mobileMainMenu.show {
  display: block;
}
@media (max-width: 550px) {
  .submission {
    flex: 1 1 150px;
    margin-bottom: 20px;
    padding: 0px;
    max-width: 125px;
    color: black;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}


.mobile-bar-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fcb514;
  font-size: 16px;
}

#weekControls {
  display: ruby-text;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

#weekControls select,
#weekControls button {
  padding: 6px 10px;
  font-size: 14px;
}

.profile-stats-button {
  background: #0f0; /* Xbox green */
  color: black;
  font-weight: bold;
  border: 2px solid #fcb514;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 6px #0f0;
}

.profile-stats-button:hover {
  background: #22ff22;
  box-shadow: 0 0 12px #0f0, 0 0 20px #fcb514 inset;
  transform: scale(1.05);

}
img.booyah2 {
    width: 60px;
}
@media (min-width: 999px) {
  #mobileMiniDock {
    display: none !important;
  }
}
.wickem-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.wickem-modal-content {
  background: #111;
  color: #fcb514;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 15px #0f0;
}


.wickem-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: #fcb514;
  cursor: pointer;
}

.wickem-modal.hidden {
  display: none;
}
.laurie-butterfly {
  position: fixed;
  width: 100px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  animation: fly-flutter 9s ease-in-out forwards, flutter-wobble 2s infinite ease-in-out;
}

@keyframes fly-flutter {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  20% {
    opacity: 1;
    transform: translate(20vw, -15vh) rotate(10deg) scale(1.05);
  }
  40% {
    transform: translate(40vw, 10vh) rotate(-5deg) scale(1);
  }
  60% {
    transform: translate(60vw, -20vh) rotate(12deg) scale(1.1);
  }
  80% {
    transform: translate(80vw, 10vh) rotate(-8deg) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translate(100vw, -40vh) rotate(0deg) scale(1);
  }
}

@keyframes flutter-wobble {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-3px) rotate(2deg); }
  50%  { transform: translateY(3px) rotate(-2deg); }
  75%  { transform: translateY(-2px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}


.butterfly-lingering {
  position: fixed;
  width: 80px;
  opacity: 1;
  z-index: 9999;
  pointer-events: none;
  animation: gentle-hover 5s ease-in-out infinite;
}

@keyframes gentle-hover {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
.falling-die {
    position: fixed;
    z-index: 99999;
    animation: diceFall 3s ease-in forwards;
    opacity: 1;
    pointer-events: none;
    transition: transform 0.2s;
}

@keyframes diceFall {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(120vh) rotate(720deg);
        opacity: 0;
    }
}
#welcome-modal canvas,
#welcome-modal #matrixWelcome {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25; /* Optional: control intensity */
}

#welcome-modal img {
  position: relative;
  z-index: 1;
}
#matrixWelcome {
    position: fixed;
    background: transparent !important;
    height: 100vh;
    top: 0px;
}
.claim-takeover-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  object-fit: contain;
  pointer-events: none;
  animation: takeoverFadeZoom 0.6s ease-out, takeoverFadeOut 1s 3.2s forwards;
}

@keyframes takeoverFadeZoom {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes takeoverFadeOut {
  to { opacity: 0; }
}
.claim-takeover-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black; /* black bg behind logo */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  border-radius: 12px;
  pointer-events: all;
  animation: glowZoomIn 0.4s ease-out;
  overflow: hidden;
}

.claim-takeover-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 0 25px white); /* default fallback glow */
}

@keyframes glowZoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
button#secretDockBtn {
    padding: 0px;
    background-color: red;
}
.live-toast {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ffcc;
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffcc;
  z-index: 9999;
  animation: fadeInOut 4s ease-in-out;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
  10% { opacity: 1; transform: translateX(-50%) translateY(0); }
  90% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}
.team-sound-row img {
    width: 90px;
}
#teamModal {
  display: none;
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0); /* Black w/ opacity */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.team-modal .modal-content {
  background-color: black;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
#teamInfoTable, #teamPlayoffs {
    width: 100%;
    border-collapse: collapse;
}

#teamInfoTable th, #teamPlayoffs th {
    background-color: #333;
    color: white;
    padding: 10px;
}

#teamInfoTable td, #teamPlayoffs td {
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
}
