diff --git a/index.html b/index.html
index 51edc32..f236e43 100644
--- a/index.html
+++ b/index.html
@@ -38,7 +38,7 @@
padding: 20px;
border-radius: 10px;
background: rgba(20, 20, 20, 0.8);
- border: 1px solid #fff;
+ border: 1px solid #fff; /* Added white thin border */
box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
margin-top: 20px;
}
@@ -74,8 +74,8 @@
background-color: #222;
color: #fff;
margin-top: 10px;
- font-weight: 300;
- line-height: 1.5;
+ font-weight: 300; /* Lighter font */
+ line-height: 1.5; /* Taller text */
}
.avatars img {
width: 60px;
@@ -96,8 +96,8 @@
max-width: 600px;
height: 300px;
border-radius: 10px;
- margin: 0 auto;
- overflow: hidden;
+ margin: 0 auto; /* Centers the video frame */
+ overflow: hidden; /* Ensures no overflow from the video */
}
.live-indicator {
position: absolute;
@@ -110,7 +110,7 @@
padding: 5px 10px;
border-radius: 5px;
animation: flash 1s infinite;
- z-index: 20;
+ z-index: 20; /* Ensures it is above the video */
}
.countdown {
position: absolute;
@@ -120,7 +120,7 @@
font-size: 48px;
font-weight: 700;
z-index: 10;
- color: #FFF;
+ color: #FFF; /* Ensures visibility on top of any background */
}
.bet-buttons {
display: flex;
@@ -196,7 +196,7 @@
cursor: pointer;
display: flex;
align-items: center;
- z-index: 30;
+ z-index: 30; /* Ensures it is above other elements */
}
.live-chat-btn:hover {
background-color: #0056b3;
@@ -210,12 +210,12 @@
height: 50%;
max-height: 400px;
background: rgba(0, 0, 0, 0.8);
- border: 1px solid #fff;
+ border: 1px solid #fff; /* Added white thin border */
border-radius: 10px;
padding: 10px;
display: none;
flex-direction: column;
- z-index: 40;
+ z-index: 40; /* Ensures it is above the chat button */
}
.live-chat-popup.active {
display: flex;
@@ -313,7 +313,7 @@