/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  margin: 5px;
  Padding-left: 25px;
  Padding-right: 25px;
  background: linear-gradient(135deg, #1c1c1c, #2c2c2c);
  color: #ffffff;
  line-height: 1.6;
}

/* Navigation */

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}



/* Header */



.header {
    display: flex;
	font-family: 'Roboto', sans-serif;
    justify-content: space-between;
    align-items: left;
    padding: 5px;
	Padding-right:40px;
    background-color: dark grey;
	text-align: left;
}
.logo {
    width: auto;        
    height: 100px;      
    max-width: 100%;    
    object-fit: contain; 
}

h1 {
    margin: 0;
    font-size: 32px;
}

.header h1 {
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
}

.header h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    -webkit-text-stroke: 0px;
    text-stroke: 0px;
    transform: translateX(-8px) translateY(-8px);
    opacity: 0.2;
}

.header h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    text-stroke: 1px rgba(255, 255, 255, 0.3);
    transform: translateX(8px) translateY(8px);
}

/* Main Content */
main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 0;
}

section {
  flex-basis: calc(50% - 1rem);
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Quote */
blockquote {
  font-style: italic;
  border-left: 4px solid #ffffff;
  padding-left: 1rem;
  margin: 2rem 0;
  position: relative;
}

blockquote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  left: -1rem;
  top: -1rem;
  opacity: 0.5;
}

/* Lists */
ul, ol {
  padding-left: 2rem;
}

ul li, ol li {
  margin-bottom: 0.5rem;
}

ul {
  list-style-type: none;
}


ul li::before {
  content: '•';
  color: #ffcc00;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

ol {
  counter-reset: item;
  list-style-type: none;
}

ol li {
  counter-increment: item;
  position: relative;
}

ol li::before {
  content: counter(item) ".";
  color: #ffcc00;
  font-weight: bold;
  position: absolute;
  left: -2rem;
  width: 1.5em;
  text-align: right;
}


.table-wrapper {
   max-width: 100%;
   margin: 2rem auto;
   padding: 0 1rem;
   box-sizing: border-box;
}

.table-container {
   width: 100%;
   overflow-x: auto;
   -webkit-overflow-scrolling: touch;
   margin-bottom: 1rem;
   border-radius: 10px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   background-color: rgba(255, 255, 255, 0.1);
}

table {
   width: 100%;
   min-width: 800px;
   border-collapse: collapse;
   background-color: transparent;
   margin: 0;
   table-layout: fixed;
}

th, td {
   padding: 1rem;
   text-align: left;
   border-bottom: 1px solid rgba(255, 255, 255, 0.2);
   white-space: normal;
   word-wrap: break-word;
   overflow: hidden;
   text-overflow: ellipsis;
}

th {
   background-color: rgba(255, 255, 255, 0.2);
   font-weight: bold;
   position: sticky;
   top: 0;
   z-index: 1;
}

tr:last-child td {
   border-bottom: none;
}

@media screen and (max-width: 1024px) {
   table {
       min-width: 600px;
   }
   
   th, td {
       padding: 0.75rem;
       font-size: 15px;
   }
}

@media screen and (max-width: 768px) {
   table {
       min-width: 400px;
       font-size: 14px;
   }
   
   th, td {
       padding: 0.5rem;
   }
}

@media screen and (max-width: 480px) {
   .table-wrapper {
       padding: 0 0.5rem;
       margin: 1rem auto;
   }
   
   table {
       min-width: 300px;
   }
   
   th, td {
       padding: 0.5rem;
       font-size: 13px;
   }
   
   .table-container {
       border-radius: 6px;
       margin-bottom: 0.5rem;
   }
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    margin: 2rem auto;
    max-width: 1200px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    max-width: 100%;
    object-fit: cover;
}
.author-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.author-name {
    font-size: 22px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}

.author-title {
    font-size: 16px;
    color: #666;
    font-weight: normal;
    margin-top: 5px;
}

.email-link {
    color: #ff8c00;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ffa500;
}

.email-icon {
    width: 24px;
    height: 24px;
}

/* Existing author styles */
.author-bio {
    overflow: auto; 
    margin-bottom: 20px; 
}

.author-image {
    float: left;
    margin-right: 20px; 
    margin-bottom: 10px; 
    max-width: 200px; 
    height: auto;
}

.author-text p {
    margin-top: 0; 
    padding: 5px;
}

.frame-1 {
            border: 2px solid white;
        }
		
.frame-2 {
    border: 8px outset #ff8c00;
}

/* Responsive styles */
@media (max-width: 768px) {
    .author-image {
        float: none;
        display: block;
        margin: 0 auto 20px;
        max-width: 100%;
    }
    
    .author-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .author-name {
        align-items: center;
    }
}

/* Existing responsive image styles */
@media (max-width: 1024px) {
    .image-container {
        padding: 0 1.5rem;
        margin: 1.5rem auto;
    }
}

@media (max-width: 768px) {
    .image-container {
        padding: 0 1rem;
        margin: 1rem auto;
    }
    
    .image-container img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 3px 4px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 480px) {
    .image-container {
        padding: 0 0.5rem;
        margin: 0.8rem auto;
    }
}

        .style1 {
            border-left: 5px solid #4a90e2;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
		
		
 .frame-0 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-0::before {
            content: "♣";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-0::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }
		
		
		
		
		
.frame-3 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-3::before {
            content: "♥";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-3::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }
				
		
		
	.frame-4 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-4::before {
            content: "♦";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-4::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }
			
		
		
		.frame-5 {
            position: relative;
            border-left: 5px solid white;
            margin: 1.5em 0;
            padding: 20px 30px 20px 75px;
            font-size: 18px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .frame-5::before {
            content: "♠";
            font-size: 45px;
            font-weight: bold;
            color: white;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
        .frame-5::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }
		
		
mark {
    text-decoration: underline wavy #3366cc;
    text-decoration-thickness: 2px;
	background-color: #f1f1f1
}


.hr-shadow {
    height: 10px;
    border: 0;
    box-shadow: 0 10px 10px -10px #8c8c8c inset;
}

/* Button */
.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffcc00;
    color: #1c1c1c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0;
}

.cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

a {
   color: white;
   text-decoration: none;
   border-bottom: 4px solid transparent;
   transition: border-bottom 0.3s ease;
}

a:hover {
   border-bottom: 4px solid orange;
}


p a {
    background-color: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    padding: 0 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: none;
}

p a:hover {
    background-color: rgba(255, 140, 0, 0.2);
    border-bottom: none;
}

.ads-container {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.game-image {
    display: block;
    max-width: 100%;
    height: auto;
}


.promo-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px; 
    font-size: 20px; 
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px; 
    cursor: pointer;
    border: none;
    border-radius: 25px; 
    color: white;
    background: linear-gradient(45deg, #eb7a00, #fc8403);
}

/* Core pulsing effect ring */
.promo-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 30px; 
    background: linear-gradient(45deg, #ff3e9d, #c239b3);
    opacity: 0.5;
    z-index: -1;
    animation: pulse-ring-anim 2s infinite;
}

/* Border animation effect */
.promo-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 27px; 
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: border-pulse-anim 2s infinite;
}

@media (max-width: 768px) {
    .promo-btn {
        padding: 10px 20px; 
        font-size: 16px; 
        border-radius: 20px;
    }

    .promo-btn::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 22px;
    }

    .promo-btn::after {
        border-radius: 21px;
    }
}

@media (max-width: 480px) {
    .promo-btn {
        padding: 8px 16px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}

.neon-pulse-effect {
    animation: neon-pulse-anim 2s infinite,
               scale-pulse-anim 2s infinite,
               glow-pulse-anim 3s infinite;
}

/* 2. Rainbow Shine Effect */
.rainbow-shine-effect {
    background: linear-gradient(-45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    animation: rainbow-shift-anim 20s linear infinite;
}

/* 3. Electric Spark Effect */
.electric-spark-effect {
    animation: electric-spark-anim 0.5s infinite;
}

/* 4. 3D Rotation Effect */
.rotation-3d-effect {
    transform-style: preserve-3d;
    animation: rotate-3d-anim 4s infinite;
}

/* 5. Explosive Pulse Effect */
.explosive-pulse-effect {
    animation: explosive-pulse-anim 2s infinite;
}

/* 6. Portal Swirl Effect */
.portal-swirl-effect {
    animation: portal-swirl-anim 3s infinite;
}

/* 7. Hologram Shine Effect */
.hologram-shine-effect {
    backdrop-filter: blur(10px);
    animation: hologram-shine-anim 3s infinite;
}

/* 8. Magic Gateway Effect */
.magic-gateway-effect {
    animation: magic-gateway-anim 3s infinite;
}

/* 9. Cosmic Glow Effect */
.cosmic-glow-effect {
    animation: cosmic-glow-anim 4s infinite;
}

/* 10. Hypnotic Spiral Effect */
.hypnotic-spiral-effect {
    animation: hypnotic-spiral-anim 3s infinite;
}

/* Hover interaction */
.promo-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 62, 157, 0.6);
}

/* Animation Keyframes */
@keyframes pulse-ring-anim {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes border-pulse-anim {
    0% { border-color: rgba(255, 255, 255, 0.6); }
    50% { border-color: rgba(255, 255, 255, 1); }
    100% { border-color: rgba(255, 255, 255, 0.6); }
}

@keyframes scale-pulse-anim { 6    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes glow-pulse-anim {
    0% { box-shadow: 0 4px 25px rgba(255, 62, 157, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(255, 62, 157, 0.7); }
    100% { box-shadow: 0 4px 25px rgba(255, 62, 157, 0.4); }
}

@keyframes neon-pulse-anim {
    0%, 100% {
        box-shadow: 0 0 20px #2d00ff,
                   0 0 40px #2d00ff,
                   0 0 80px #2d00ff;
    }
    50% {
        box-shadow: 0 0 40px #2d00ff,
                   0 0 80px #2d00ff,
                   0 0 120px #2d00ff;
    }
}

@keyframes rainbow-shift-anim {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

@keyframes electric-spark-anim {
    0% { transform: translate(-50%, -50%) translate(0, 0); }
    25% { transform: translate(-50%, -50%) translate(2px, 2px); }
    50% { transform: translate(-50%, -50%) translate(-2px, -2px); }
    75% { transform: translate(-50%, -50%) translate(-2px, 2px); }
    100% { transform: translate(-50%, -50%) translate(0, 0); }
}

@keyframes rotate-3d-anim {
    0% { transform: translate(-50%, -50%) perspective(1000px) rotateY(0deg); }
    50% { transform: translate(-50%, -50%) perspective(1000px) rotateY(180deg); }
    100% { transform: translate(-50%, -50%) perspective(1000px) rotateY(360deg); }
}

@keyframes explosive-pulse-anim {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
    60% { transform: translate(-50%, -50%) scale(0.9); opacity: 1; }
    70% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
    80% { transform: translate(-50%, -50%) scale(0.95); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes portal-swirl-anim {
    0% { transform: translate(-50%, -50%) rotate(0deg); box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.7); }
    50% { transform: translate(-50%, -50%) rotate(180deg); box-shadow: 0 0 50px 20px rgba(156, 39, 176, 0); }
    100% { transform: translate(-50%, -50%) rotate(360deg); box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.7); }
}

@keyframes hologram-shine-anim {
    0% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(180deg) brightness(1.2); }
    100% { filter: hue-rotate(360deg) brightness(1); }
}

@keyframes magic-gateway-anim {
    0% { transform: translate(-50%, -50%) scale(1); background: #1a237e; }
    50% { transform: translate(-50%, -50%) scale(1.1); background: #311b92; }
    100% { transform: translate(-50%, -50%) scale(1); background: #1a237e; }
}

@keyframes cosmic-glow-anim {
    0% { box-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff; }
    50% { box-shadow: 0 0 30px #00f, 0 0 40px #00f, 0 0 50px #00f, 0 0 60px #00f; }
    100% { box-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff; }
}

@keyframes hypnotic-spiral-anim {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}


.popup {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.5s;
   z-index: 1000;
   padding-top: 140px;
}

.background-image {
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 300px;
   height: 171px;
   pointer-events: none;
   z-index: 1;
}

.popup-content {
   position: relative;
   background: linear-gradient(90deg, #ff8800, #ff6600, #ff4400, #ff6600, #ff8800);
   background-size: 200% 100%;
   padding: 15px 30px;
   border-radius: 8px;
   z-index: 2;
   animation: 
       orangeGlow 2s linear infinite,
       orangeNeonPulse 1.5s ease-in-out infinite alternate;
   cursor: pointer;
   transition: transform 0.2s;
}

.content-wrapper {
   position: relative;
   z-index: 2;
}

.popup-content:hover {
   transform: scale(1.05);
   animation: 
       orangeGlow 2s linear infinite,
       orangeNeonPulse 0.75s ease-in-out infinite alternate;
}

.popup-text {
   font-family: Arial, sans-serif;
   font-weight: bold;
   font-size: 24px;
   text-transform: uppercase;
   margin: 0;
   color: white;
   position: relative;
   z-index: 2;
   text-shadow: 
       0 0 4px rgba(255, 136, 0, 0.8),
       0 0 8px rgba(255, 136, 0, 0.8),
       0 0 12px rgba(255, 136, 0, 0.8);
   line-height: 1.2;
}

.close-button {
   position: absolute;
   top: -10px;
   right: -10px;
   width: 30px;
   height: 30px;
   background: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   font-size: 18px;
   font-weight: bold;
   color: #333;
   z-index: 3;
   border: 2px solid #ccc;
   transition: all 0.2s;
   box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}

.close-button:hover {
   background: #f0f0f0;
   transform: scale(1.1);
}

.shine {
   position: absolute;
   top: 0;
   left: -100%;
   width: 50%;
   height: 100%;
   background: linear-gradient(
       90deg,
       transparent,
       rgba(255, 136, 0, 0.4),
       transparent
   );
   animation: shine 3s infinite;
   z-index: 2;
}

@keyframes orangeGlow {
   0% { background-position: 0% 50%; }
   100% { background-position: 200% 50%; }
}

@keyframes orangeNeonPulse {
   from {
       box-shadow: 
           0 0 5px rgba(255, 136, 0, 0.8),
           0 0 10px rgba(255, 136, 0, 0.8),
           0 0 15px rgba(255, 136, 0, 0.8),
           0 0 20px #ff8800,
           0 0 35px #ff8800,
           0 0 40px #ff8800,
           0 0 50px #ff8800;
   }
   to {
       box-shadow: 
           0 0 2px rgba(255, 136, 0, 0.8),
           0 0 4px rgba(255, 136, 0, 0.8),
           0 0 6px rgba(255, 136, 0, 0.8),
           0 0 8px #ff8800,
           0 0 16px #ff8800,
           0 0 20px #ff8800,
           0 0 25px #ff8800;
   }
}

@keyframes shine {
   0% { left: -100%; }
   20% { left: 100%; }
   100% { left: 100%; }
}

@keyframes show-popup {
   to {
       opacity: 1;
       visibility: visible;
   }
}
/*
.show {
   animation: show-popup 0.5s forwards;
   animation-delay: 20s;
}
*/
.hidden {
   display: none;
}


@media screen and (max-width: 768px) {
   .popup {
       bottom: 10px;
       right: 10px;
       left: 10px;
       padding-top: 100px;
       width: auto; 
       transform: translate(0, 0); 
       margin: 0 auto; 
       top: 50%; 
   }

   .background-image {
       width: 200px;
       height: 114px;
	   transform: translateX(-50%);
   }

   .popup-content {
       padding: 10px 20px;
       text-align: center;
       max-width: 100%; 
       margin: 0 auto; 
       box-sizing: border-box;
   }

   .popup-text {
       font-size: 18px;
	   word-wrap: break-word;
   }

   .close-button {
       width: 24px;
       height: 24px;
       font-size: 16px;
       top: -8px;
       right: -8px;
   }
}


@media screen and (max-width: 360px) {
   .popup {
       padding-top: 80px;
   }

   .background-image {
       width: 160px;
       height: 91px;
   }

   .popup-text {
       font-size: 16px;
   }

   .popup-content {
       padding: 8px 15px;
	   margin: 0 10px;
   }
}


@media screen and (max-height: 500px) {
   .popup {
       padding-top: 60px;
   }

   .background-image {
       width: 140px;
       height: 80px;
   }
}


.video-container {
    position: relative;
    width: 100%;
    max-width: 1376px; 
    margin: 2rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 53.48%; /* (736/1376) * 100% */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .video-container {
        margin: 1rem auto;
        border-radius: 8px;
    }
    
    .video-container video {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .video-container {
        margin: 0.5rem auto;
        padding: 0 0.5rem;
    }
}


.game-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.game-container::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}


.game-toggle {
    display: none;
}


.game-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #1a1a1a;
    z-index: 2;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.game-placeholder:hover .preview-image {
    filter: brightness(0.7);
}


.play-button {
    position: absolute;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #ff8c00; 
    color: #1c1c1c;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.game-placeholder:hover .play-button {
    transform: scale(1.05);
    background: #ff9f2a; 
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.game-toggle:checked ~ .iframe-wrapper {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

.game-toggle:checked ~ .game-placeholder {
    display: none;
}

.fullscreen-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 4;
}

.iframe-wrapper:hover .fullscreen-button {
    opacity: 1;
}

.fullscreen-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .game-container {
        margin: 1rem auto;
        border-radius: 8px;
    }

    .play-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }

    .fullscreen-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        opacity: 1; 
    }
}

.game-container:fullscreen {
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: #000;
}

.game-container:fullscreen::before {
    padding-top: 0;
}

.game-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: #000;
}

.game-container:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: #000;
}

.game-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.game-container::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.rating-container {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.stars {
    display: flex;
    gap: 0.2rem;
    cursor: pointer;
}

.star {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
}

.star.filled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700' stroke='%23FFD700' stroke-width='2'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'%3E%3C/path%3E%3C/svg%3E");
}

.star:hover {
    transform: scale(1.2);
}

.rating-text {
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
}

.rating-message {
    color: #4CAF50;
    font-size: 0.8rem;
    opacity: 0;
    height: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.rating-message.show {
    opacity: 1;
    height: 1.2em;
}

.game-toggle {
    display: none;
}

.game-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #1a1a1a;
    z-index: 2;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.game-placeholder:hover .preview-image {
    filter: brightness(0.7);
}

.play-button {
    position: absolute;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #ff8c00;
    color: #1c1c1c;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.game-placeholder:hover .play-button {
    transform: scale(1.05);
    background: #ff9f2a;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.game-toggle:checked ~ .iframe-wrapper {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

.game-toggle:checked ~ .game-placeholder {
    display: none;
}

.fullscreen-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 4;
}

.iframe-wrapper:hover .fullscreen-button {
    opacity: 1;
}

.fullscreen-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .game-container {
        margin: 1rem auto;
        border-radius: 8px;
    }

    .rating-container {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.3rem 0.7rem;
    }

    .star {
        width: 16px;
        height: 16px;
    }

    .rating-text {
        font-size: 0.8rem;
    }

    .rating-message {
        font-size: 0.7rem;
    }

    .play-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }

    .fullscreen-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        opacity: 1;
    }
}

.game-container:fullscreen {
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: #000;
}

.game-container:fullscreen::before {
    padding-top: 0;
}

.game-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: #000;
}

.game-container:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: #000;
}

.game-container:fullscreen .rating-container,
.game-container:-webkit-full-screen .rating-container,
.game-container:-ms-fullscreen .rating-container {
    top: 1.5rem;
    left: 1.5rem;
}

h2, h3, h4, h5, h6 {
    background: linear-gradient(to right, #000000, #333333, #666666);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.article-meta {
   display: flex;
   align-items: flex-start;
   gap: 20px;
   padding: 15px 0;
   font-family: Arial, sans-serif;
   max-width: 800px;
   overflow: hidden;
}

.author-avatar {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   object-fit: cover;
   flex-shrink: 0;
}

.meta-info {
   display: flex;
   align-items: center;
   flex-wrap: nowrap;
   gap: 10px;
   min-width: 0;
   width: 100%;
}

.author-group, .fact-check-group, .update-group {
   display: flex;
   align-items: center;
   gap: 5px;
   flex-wrap: wrap;
   white-space: normal;
}

.divider {
   width: 1px;
   height: 20px;
   background-color: #e0e0e0;
   margin: 0 10px;
   flex-shrink: 0;
}

.label {
   color: #666;
   font-size: 14px;
}

.name {
   color: #0066cc;
   text-decoration: none;
   font-weight: 500;
   font-size: 14px;
}

.hisname {
   color: #0066cc;
   text-decoration: none;
   font-weight: 500;
   font-size: 14px;
}

.name:hover {
   text-decoration: underline;
}

.role {
   color: #666;
   font-size: 14px;
}

.check-icon {
   color: #00b300;
   font-size: 16px;
}

.update-date {
   color: #666;
   font-size: 14px;
}

@media (max-width: 768px) {
   .meta-info {
       flex-wrap: wrap;
       flex-direction: column;
       align-items: flex-start;
       gap: 15px;
   }
   
   .divider {
       display: none;
   }
   
   .author-group, .fact-check-group, .update-group {
       width: 100%;
       flex-wrap: wrap;
   }
   
   .label, .name, .hisname, .role, .update-date {
       font-size: 12px;
   }
}

@media (max-width: 360px) {
   .article-meta {
       gap: 10px;
       padding: 10px 0;
   }
   
   .author-avatar {
       width: 30px;
       height: 30px;
   }
}

.review-card {
    max-width: 800px;
    background: #d3d3d3;
    border-radius: 8px;
    padding: 20px;
    font-family: Arial, sans-serif;
    margin: 20px auto;
    border: 10px solid #FFA500;
	color: black;
}

.review-content {
    margin-bottom: 20px;
}

.review-layout {
    display: flex;
    gap: 30px;
}

.text-column {
    flex: 1;
    min-width: 0; 
}

.metrics-column {
    width: 45%;
    min-width: 300px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.metrics-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.metric-label {
    min-width: 150px;
    color: #333;
    font-size: 14px;
}

.progress-bar {
    flex-grow: 1;
    height: 35px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #FFA500;
    transition: width 0.3s ease;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.score-number {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.score-text {
    color: #4CAF50;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .review-layout {
        flex-direction: column;
    }
    
    .metrics-column {
        width: 100%;
    }
    
    .metric-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .metric-label {
        min-width: auto;
    }
    
    .progress-bar {
        width: 100%;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .score {
        align-items: flex-start;
    }
}

.game-header {
    display: flex;
    gap: 40px;
    padding: 20px;
    background-color: #1a1a1a;
    color: white;
    border-radius: 8px;
}

.game-poster {
    flex-shrink: 0;
}

.game-image img {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

.game-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-info h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: bold;
}

.provider-badge {
    display: inline-block;
    background-color: #ff8c00;
    color: #000;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    width: fit-content;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.all-stars {
    display: flex;
    gap: 2px;
}

.one-star {
    color: #808080;
    font-size: 24px;
}

.one-star.filled {
    color: #ffd700;
}

.ratings-text {
    color: #808080;
    font-size: 14px;
}

.game-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-real {
    background-color: #ff4500;
    color: white;
    gap: 8px;
}

.btn-real:hover {
    background-color: #ff5722;
}

.btn-fun {
    background-color: #1e88e5;
    color: white;
}

.btn-fun:hover {
    background-color: #2196f3;
}

.arrow {
    width: 20px;
    height: 20px;
}

.terms {
    color: #808080;
    font-size: 12px;
    margin-top: auto;
}

.comments-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.comments-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.comments-title {
    font-size: 1rem;
    color: #ffffff;
    font-weight: normal;
}

.comment-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #333;
    font-size: 0.9rem;
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 24px;
    height: 24px;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comment:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: bold;
    color: #ff8c00;
}

.comment-date {
    color: #808080;
    font-size: 0.8rem;
}

.comment-text {
    color: #ffffff;
    line-height: 1.5;
    font-size: 0.95rem;
}

.comment-form {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.comment-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    resize: none;
}

.login-submit {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: default;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.login-submit:hover {
    background-color: #444;
}




/* Responsive design */
@media (max-width: 768px) {
    .game-header {
        flex-direction: column;
        gap: 20px;
    }
.game-header .game-info .game-title {
     font-size: 32px !important;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}
    .game-poster {
        width: 100%;
    }

    .game-poster img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }


    .game-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

.footer {
    border-top: 4px solid #a85e00;
	padding: 20px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.icons-container {
	display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
    padding: 0 10px;
    box-sizing: border-box;
}

.icon {
    height: 40px;
}

.copyright {
	color: #666;
    font-size: 14px;
    padding: 0 10px;
}


.header-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}

.title-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.title-container {
    width: 100%; 
}

h1 {
    text-align: right;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding-top: 5px;
    justify-content: flex-end;
}

	.social-icon {
    width: 30px;  
    height: 30px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .title-social {
        width: 100%;
        align-items: center;
    }

    .title-container {
        width: 100%;
    }

    h1 {
        width: 100%;
        text-align: center !important;
    }
    
    .social-icons {
        width: 100%;
        justify-content: center;
    }
	

    .social-icon {
        width: 24px;  
        height: 24px;
    }
}





.gallery-container {
   max-width: 800px;
   margin: 0 auto;
   position: relative;
   overflow: hidden;
}

.gallery-wrapper {
   display: flex;
   overflow: hidden;
   scroll-snap-type: x mandatory;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: none;
   -ms-overflow-style: none;
}

.gallery-wrapper::-webkit-scrollbar {
   display: none;
}

.gallery-item {
   flex: 0 0 100%;
   width: 100%;
   scroll-snap-align: start;
   scroll-snap-stop: always;
   padding: 20px;
   background: #222222;
}

.gallery-item img {
   width: 100%;
   height: auto;
   object-fit: contain;
   border-radius: 8px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   display: block;
   background-color: white;
}

.gallery-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: rgba(255, 140, 0, 0.7);
   color: white;
   border: none;
   padding: 15px 20px;
   cursor: pointer;
   font-size: 20px;
   transition: all 0.3s ease;
   z-index: 10;
   border-radius: 4px;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
   background: rgba(255, 140, 0, 0.9);
   transform: translateY(-50%) scale(1.1);
}

.prev {
   left: 10px;
}

.next {
   right: 10px;
}

@media (min-width: 1025px) {
   .gallery-container {
       max-width: 800px;
   }
   
   .gallery-item {
       padding: 30px;
   }
   
   .gallery-item img {
       max-height: 600px;
   }
}

@media (max-width: 1024px) {
   .gallery-container {
       max-width: 480px;
   }
   
   .gallery-item {
       padding: 15px;
   }
   
   .gallery-item img {
       max-height: 400px;
   }
}

@media (max-width: 480px) {
   .gallery-container {
       max-width: 100%;
       margin: 0;
   }
   
   .gallery-item {
       padding: 8px;
   }
   
   .gallery-item img {
       height: auto;
       max-height: none;
       width: 100vw;
       margin-left: -8px;
       border-radius: 0;
   }
   
   .gallery-nav {
       display: none;
   }
}

@media (max-width: 320px) {
   .gallery-item {
       padding: 0;
   }
   
   .gallery-item img {
       margin-left: 0;
       width: 100%;
       max-height: 85vh;
   }
}

/* Game Statistics Module Styles */
.stats-outer-wrapper {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background: transparent;
}

.stats-inner-wrapper {
  width: 100%;
  max-width: 1200px;
}

.stats-main-card {
  background: transparent;
  border-radius: 12px;
  padding: 30px;
}

.stats-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.stats-item-card {
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border: 1px solid #ff6b00;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.stats-item-card:hover {
  transform: translateY(-2px);
}

.stats-value {
  font-size: 28px;
  font-weight: bold;
  color: #00bd3f;
  margin: 16px 0;
}

.stats-number {
  display: inline-block;
}

.stats-label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.stats-heading {
  background: transparent !important;
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 24px;
  padding: 0 !important;
  border-radius: 0 !important;
}

.stats-game-name {
  color: #ff6b00;
  font-weight: 700;
}

.stats-currency {
  margin-right: 4px;
}















/* Main container */
.winners-container {
    width: 400px;
    background-color: #111827;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    overflow: hidden;
    margin: 0 auto; /* Added for centering */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Header */
.winners-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #374151;
    text-align: center;
}

.winners-header h2 {
    color: white;
    font-size: 20px;
    margin: 0;
}

.game-name {
    color: #4ade80;
}

/* LIVE indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-text {
    color: #ef4444;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5); /* Added glow effect */
}

.pulse-container {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    width: 16px;
    height: 16px;
    background-color: #ef4444;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 8px #ef4444; /* Added glow effect */
}

.pulse-ring {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: enhanced-pulse 1.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    opacity: 0;
}

/* Multiple pulse rings with different delays */
.pulse-ring:nth-child(1) {
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.4s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 0.8s;
}

/* Winner rows */
.winner-row {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(31, 41, 55, 0.5);
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
}

.winner-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #374151;
}

.amount {
    color: #4ade80;
    font-size: 24px;
    font-weight: bold;
}

.winner-details {
    display: flex;
    align-items: center;
    gap: 24px;
}

.time-ago {
    color: #d1d5db;
    font-size: 18px;
}

.flag {
    font-size: 24px;
}

/* Bottom button */
.play-button2 {
    width: 100%;
    padding: 24px;
    background-color: #eb7a00;
    color: white;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.play-button2:hover {
    background-color: #22c55e;
}

/* Animations */
@keyframes enhanced-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.7); /* Reduced from 2 */
        opacity: 0.3; /* Reduced from 0.4 */
    }
    100% {
        transform: scale(2.4); /* Reduced from 3 */
        opacity: 0;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .winners-container {
        width: 90%;
        margin: 0 auto;
    }

    .time-ago {
        font-size: 14px;
    }

    .amount {
        font-size: 20px;
    }

    .flag {
        font-size: 20px;
    }
}

.country-flag {
    width: 40px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .country-flag {
        width: 30px;
    }
}







/* Wheel of Fortune specific styles */
/* Card container */
.card {
    background: linear-gradient(135deg, #1c1c1c, #2c2c2c);
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 28rem;
    box-sizing: border-box;
    margin: 2rem auto;
    border: 2px solid #ff8c00;
    overflow: hidden;
}

.card-title {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Wheel container */
.wheel-container {
    position: relative;
    width: 100%;
    max-width: 20rem;
    aspect-ratio: 1 / 1;
    margin: 0 auto 1.5rem;
}

/* Wheel SVG */
.wheel-svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    will-change: transform;
    transition: transform 0.3s;
}

/* Wheel sectors */
.sector-win {
    fill: #4338ca;
    stroke: white;
    stroke-width: 0.1;
}

.sector-lose {
    fill: #312e81;
    stroke: white;
    stroke-width: 0.1;
}

.sector-text {
    fill: white;
    font-size: 4px;
    text-anchor: middle;
}

.center-circle {
    fill: white;
}

/* Pointer styles */
.pointer {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 1.5rem;
    height: 1.5rem;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Button styles */
.spin-button {
    display: block;
    margin: 0 auto 1rem;
    background-color: #f97316;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
    animation: pulse 2s infinite;
}

.spin-button:hover {
    background-color: #ea580c;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.8);
    animation: none;
}

.spin-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Result styles */
.result {
    text-align: center;
}

.prize-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.result-message {
    font-size: 1.125rem;
    color: #d1d5db;
}

.result-message a {
    color: #f97316;
    text-decoration: underline;
}

.result-message a:hover {
    color: #ea580c;
}

/* Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(249, 115, 22, 0.5); }
    50% { box-shadow: 0 0 25px rgba(249, 115, 22, 0.8); }
    100% { box-shadow: 0 0 15px rgba(249, 115, 22, 0.5); }
}

/* Responsive styles */
@media (max-width: 640px) {
    .card {
        padding: 1rem;
        margin: 1rem auto;
    }

    .card-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .wheel-container {
        max-width: 16rem;
    }

    .pointer {
        width: 1.2rem;
        height: 1.2rem;
    }

    .spin-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .prize-amount {
        font-size: 1.25rem;
    }

    .result-message {
        font-size: 1rem;
    }
}

@media (max-width: 380px) {
    .card {
        padding: 0.75rem;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .wheel-container {
        max-width: 14rem;
    }

    .pointer {
        width: 1rem;
        height: 1rem;
    }

    .spin-button {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}











.winner-notification {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 380px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    padding: 16px;
    display: none;
    animation: slideIn 0.5s ease-out;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.notification-content {
    display: flex;
    gap: 14px;
    position: relative;
}

.notification-close {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.notification-avatar {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.notification-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-info {
    flex: 1;
}

.notification-info p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.winner-name {
    font-weight: 700;
}

.winner-amount {
    font-size: 20px;
    font-weight: bold;
    color: #00bd3f;
}

.notification-time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 6px;
}

.notification-cta {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.play-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    color: #00bd3f;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.play-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

@keyframes slideIn {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-120%);
        opacity: 0;
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

.slide-out {
    animation: slideOut 0.5s ease-in forwards;
}

@media (max-width: 480px) {
    .winner-notification {
        width: calc(100% - 40px);
        max-width: 380px;
        font-size: 14px;
    }

    .notification-avatar {
        width: 48px;
        height: 48px;
    }

    .winner-amount {
        font-size: 18px;
    }
}



.game-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.responsive-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.image-link {
    display: block;
    width: 100%;
}

.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .game-image-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .game-image-container {
        padding: 0 5px;
    }
}