@import url("css2.css");

*:not(i) {
  font-family: "Inter", sans-serif;
}

.navbarim {
  background: rgba(45, 45, 45, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

input:active {
  background-color: none;
  background: none !important;
}

.ul-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.ul-links li {
  list-style: none;
}

.ul-links li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.ul-links li a.active-my {
  color: #FF6B6B;
  background: rgba(255, 107, 107, 0.1);
}

.ul-links li a:hover {
  color: #FF6B6B;
  background: rgba(255, 107, 107, 0.1);
  transform: translateY(-2px);
}

.logom {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
}

.hero-cont-in {
  background: rgba(45, 45, 45, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.style-1 {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.style-2 {
  color: #CCCCCC;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.link-main {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
  display: inline-block;
  text-decoration: none;
  padding: 16px 32px;
  color: #FFFFFF;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  border: none;
}

.link-main:hover {
  background: linear-gradient(135deg, #FF5252 0%, #FF1744 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  color: #FFFFFF;
}

.hero img {
  border-radius: 12px;
}

.about {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  margin: 40px 0;
  padding: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about img {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

/* Fix for all images to prevent overflow */
img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Specific fix for game section images */
.game img {
  max-height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.about img:hover {
  transform: scale(1.02);
}

.game {
  background: linear-gradient(135deg, 
    #1a1a2e 0%, 
    #16213e 25%, 
    #0f3460 50%, 
    #533483 75%, 
    #e94560 100%);
  backdrop-filter: blur(15px);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: end;
  justify-content: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}



.game::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: floatingLights 6s ease-in-out infinite;
}

.game::after {
  content: '⚽';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  opacity: 0.3;
  animation: bounce 3s ease-in-out infinite;
}

.game-inner {
  position: relative;
  z-index: 2;
}

.game-inner::before {
  content: '🏆';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 2rem;
  opacity: 0.2;
  animation: rotate 4s linear infinite;
}

.game-inner::after {
  content: '⚡';
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: flash 2s ease-in-out infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes flash {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatingLights {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

.game:hover {
  transform: translateY(-5px);
}

.why-us {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  margin: 40px 0;
  padding: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item {
  background: rgba(45, 45, 45, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 107, 0.3);
}

.why-item img {
  margin-bottom: 20px;
}

.style-3 {
  color: #CCCCCC;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 20px;
}

.faq-item {
  background: rgba(45, 45, 45, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.accordion-button {
  background: transparent;
  font-weight: 600;
  color: #CCCCCC;
  font-size: 20px;
  padding: 20px 24px;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
  border: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.accordion-body {
  background: rgba(45, 45, 45, 0.9);
  color: #CCCCCC;
  padding: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.glass-input {
  background: rgba(45, 45, 45, 0.8);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 12px;
  color: #f5f5f5;
  padding: 0.75rem 1rem;
}

.glass-input::placeholder {
  color: #c0c0c0; 
}

.glass-input:focus {
  border-color: #d72638; /* Casino Red */
  box-shadow: 0 0 10px rgba(215, 38, 56, 0.7);
}

.btn-casino {
  background-color: #d72638; /* Casino Red */
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.btn-casino:hover {
  background-color: #ffd700; /* Gold hover */
  color: #0b0f2c;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.free-warning {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: 3px solid #fff;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
  position: relative;
  overflow: hidden;
}

.free-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.free-warning h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.free-warning p {
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

footer {
  background: rgba(45, 45, 45, 0.8);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
}

footer p a {
  color: #FF6B6B;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

footer p a:hover {
  color: #FF5252;
  text-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

@media (max-width: 992px) {
  .game {
    height: auto;
    min-height: 50vh;
  }
  
  .game img {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .about img {
    max-height: 300px;
  }
  
  .game {
    height: auto;
    min-height: 40vh;
    padding: 20px;
  }
  
  .game img {
    max-height: 250px;
  }
  
  .why-item {
    min-height: 200px;
    padding: 30px 20px;
  }
}

body {
  background: #1A1A1A;
}

/* Policy Content Blocks */
.policy-section {
  background: rgba(45, 45, 45, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.policy-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.policy-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.policy-icon {
  font-size: 2.5rem;
  margin-right: 20px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.policy-content {
  color: #CCCCCC;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.policy-list li {
  background: rgba(45, 45, 45, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px 20px;
  margin: 10px 0;
  border-left: 4px solid #FF6B6B;
  transition: all 0.3s ease;
  position: relative;
}

.policy-list li:hover {
  transform: translateX(5px);
  background: rgba(45, 45, 45, 0.8);
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.2);
}

.policy-list li::before {
  content: '▶';
  color: #FF6B6B;
  font-weight: bold;
  margin-right: 10px;
  font-size: 12px;
}

.policy-highlight {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 82, 82, 0.1) 100%);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.policy-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B6B 0%, #FF5252 100%);
}

.policy-contact {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 82, 82, 0.15) 100%);
  border: 2px solid rgba(255, 107, 107, 0.4);
  border-radius: 16px;
  padding: 25px;
  margin: 25px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.policy-contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.policy-contact a {
  color: #FF6B6B;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.policy-contact a:hover {
  color: #FF5252;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .policy-section {
    padding: 25px 20px;
    margin: 20px 0;
  }
  
  .policy-header {
    flex-direction: column;
    text-align: center;
  }
  
  .policy-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .policy-title {
    font-size: 24px;
  }
  
  .policy-list li {
    padding: 12px 15px;
  }
}