body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: white;
  margin-left: 220px;
  margin-top: 80px;
}
html {
  scroll-behavior: smooth;
}
header {
  background-color: #111;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #ff6600;
}

/* sidebar */

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 240px;
  height: 100%;
  background-color: #111;
  padding: 20px;
  box-shadow: 4px 0 20px rgba(255, 102, 0, 0.3);
  z-index: 1000;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-right: 3px solid #ff6600;
  justify-items: center;
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.sidebar-title {
  background: linear-gradient(45deg, #ff6600, #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  padding: 20px 15px;
  margin: 0 0 20px 0;
  position: relative;
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
  letter-spacing: 1px;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6600, transparent);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
}

.sidebar-btn {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  color: #ecf0f1;
  padding: 15px 20px;
  margin: 8px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.4), transparent);
  transition: left 0.6s;
}

.sidebar-btn:hover::before {
  left: 100%;
}

.sidebar-btn:hover {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  border-color: #ffaa66;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
  color: #fff;
}

.sidebar-btn:active {
  transform: translateY(-1px) scale(0.98);
}

body {
  margin-left: 260px; /* offset content for sidebar */
}

.top-nav {
 background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #3b82c4 50%, #2a5298 75%, #1e3c72 100%);
 border-bottom: 4px solid #ff6600;
 box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.2);
 position: relative;
 overflow: hidden;
 backdrop-filter: blur(10px);
 height: 100px;
 display: flex;                /* ✅ Make it flex */
  justify-content: center;     /* ✅ Center horizontally */
  align-items: center;   
}

.top-nav::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, 
   transparent 0%, 
   rgba(255, 102, 0, 0.3) 50%, 
   transparent 100%);
 animation: navShimmer 4s infinite;
 pointer-events: none;
}

.top-nav::after {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(90deg, 
   rgba(255, 102, 0, 0.05) 0%, 
   transparent 20%, 
   transparent 80%, 
   rgba(255, 102, 0, 0.05) 100%);
 pointer-events: none;
}

.top-nav ul {
 display: flex;
 list-style: none;
 margin: 0;
 padding: 2;
 gap: 12px;
 justify-content: center;
 flex-wrap: wrap;
 position: center;
 z-index: 3;
}

.top-nav li {
 margin: 0 3px;
 position: center;
}

.top-nav a {
 display: block;
 padding: 20px 28px;
 color: #ecf0f1;
 text-decoration: none;
 font-weight: 700;
 font-size: 13px;
 text-transform: uppercase;
 letter-spacing: 1px;
 transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 position: relative;
 border-radius: 12px;
 overflow: hidden;
 background: rgba(255, 255, 255, 0.05);
 backdrop-filter: blur(5px);
 border: 1px solid rgba(255, 102, 0, 0.2);
}

.top-nav a::before {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 width: 0;
 height: 4px;
 background: linear-gradient(90deg, #ff6600, #ffaa66, #ff6600);
 transition: all 0.5s ease;
 transform: translateX(-50%);
 border-radius: 2px;
 box-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
}

.top-nav a::after {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
 transition: left 0.6s;
}

.top-nav a:hover {
 background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(255, 170, 102, 0.2));
 color: #fff;
 transform: translateY(-4px) scale(1.05);
 box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.3);
 border-color: rgba(255, 102, 0, 0.6);
 text-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
}

.top-nav a:hover::before {
 width: 90%;
}

.top-nav a:hover::after {
 left: 100%;
}

.top-nav a:active {
 transform: translateY(-2px) scale(1.02);
}

@keyframes navShimmer {
 0% { left: -100%; }
 50% { left: 100%; }
 100% { left: 100%; }
}

/* Enhanced responsive design */
@media (max-width: 768px) {
 .top-nav ul {
   flex-direction: column;
   align-items: center;
 }
 
 .top-nav li {
   margin: 3px 0;
   width: 90%;
   max-width: 300px;
 }
 
 .top-nav a {
   padding: 16px 24px;
   text-align: center;
   font-size: 12px;
 }
}

/* Push content down to make room for navbar */
body {
  margin-top: 0;
}

.poker-site-card {
  width: 300px;
  background: linear-gradient(145deg, #2a2a3e, #1e1e2e);
  border-radius: 12px;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px;
  text-align: center;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.poker-site-card:hover {
  transform: scale(1.03);
}

.poker-logo {
  max-width: 200px;
  max-height: 80px;
  margin-bottom: 15px;
}

.poker-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.poker-description {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #dcdcdc;
}

.poker-rating {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ffe600;
  font-weight: bold;
}

.poker-button {
  background-color: orange;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
}
#pokerSitesGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

h1 {
  margin: 30px 0 10px 20px;
  color: #ffcc00;
}

p {
  margin-left: 20px;
  color: #ccc;
}

.main-content {
  padding: 20px;
}

/* Enhanced Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  animation: modalFadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.modal-content {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 16px;
  padding: 35px;
  max-width: 850px;
  width: 100%;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
  transform: translateY(-50px) scale(0.9);
  opacity: 0;
  animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 102, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Animated border effect */
.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #ff6600, #ffaa66, #ff6600, #ff3300);
  background-size: 400% 400%;
  border-radius: 16px;
  z-index: -1;
  padding: 2px;
  animation: borderGlow 3s ease-in-out infinite;
}

.modal-content::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 14px;
  z-index: -1;
}

/* Enhanced close button */
.close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #ff6600;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
}

.close:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff6600, #ff3300);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
}

/* Enhanced form elements */
.modal input, 
.modal textarea, 
.modal select {
  width: 100%;
  padding: 14px 18px;
  margin: 12px 0;
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 102, 0, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal input:focus, 
.modal textarea:focus, 
.modal select:focus {
  outline: none;
  border-color: #ff6600;
  background: rgba(42, 42, 42, 0.95);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(255, 102, 0, 0.3);
  transform: translateY(-2px);
}

/* Enhanced submit button */
.modal button[type="submit"] {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: white;
  padding: 16px 60px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin: 30px auto 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.modal button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.modal button[type="submit"]:hover {
  background: linear-gradient(135deg, #ff8533 0%, #ffaa66 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.5);
}

.modal button[type="submit"]:hover::before {
  left: 100%;
}

.modal button[type="submit"]:active {
  transform: translateY(-1px) scale(1.02);
}

/* Animations */
@keyframes modalFadeIn {
  from { 
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to { 
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

@keyframes modalSlideIn {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes borderGlow {
  0%, 100% { 
    background-position: 0% 50%; 
  }
  50% { 
    background-position: 100% 50%; 
  }
}

/* Modal fade out */
.modal.fadeOut {
  animation: modalFadeOut 0.3s ease forwards;
}

@keyframes modalFadeOut {
  to { 
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}

/* Enhanced responsive design */
@media screen and (max-width: 600px) {
  .modal-content {
    padding: 25px 20px;
    width: 95%;
    margin: 20px auto;
    border-radius: 12px;
  }
  
  .modal button[type="submit"] {
    padding: 14px 40px;
    width: 90%;
  }
}
/* ADD THESE FIXES TO YOUR CSS */

/* Fix form field widths */
.modal input, 
.modal textarea, 
.modal select {
  width: calc(100% - 36px); /* Account for padding */
  box-sizing: border-box;
}

/* Fix button container */
.modal .button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Style the Delete button properly */
.modal .delete-style {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.modal .delete-style:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

/* Fix Save Changes button */
.modal button[type="submit"],
.modal .submit-btn {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  padding: 16px 40px;
  margin: 0; /* Remove auto margin */
  width: auto;
  flex: 1;
  max-width: 200px;
}

/* Style file input */
.modal input[type="file"] {
  background: rgba(42, 42, 42, 0.8);
  border: 2px dashed rgba(255, 102, 0, 0.3);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal input[type="file"]:hover {
  border-color: #ff6600;
  background: rgba(255, 102, 0, 0.1);
}

/* Form labels */
.modal label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-size: 15px;
}

/* Fix responsive */
@media screen and (max-width: 600px) {
  .modal .button-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .modal button[type="submit"],
  .modal .delete-style {
    width: 100%;
    max-width: none;
  }
}

#responseMessage {
  text-align: center;
  margin-top: 10px;
}

select[multiple], select {
  background: #2a2a2a;
  color: white;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 10px;
  border: none;
}
#country {
  background-color: #1c1c1c;
  color: white;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #555;
  width: 100%;
  font-weight: bold;
  margin-top: 10px;
}

#ranking {
  background-color: #1c1c1c;
  color: white;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #555;
  width: 100%;
  font-weight: bold;
  margin-top: 10px;
  
}
.dropdown-icon {
  margin-left: 10px;
  font-size: 14px;
  color: #888;
}


.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.preview-card {
  background: #2a2a2a;
  border: 1px solid #444;
  padding: 20px;
  border-radius: 10px;
  color: #eee;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
select {
  background-color: #2a2a2a;
  color: white;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  margin-top: 40px;
}

.preview-btn {
  background-color: #007bff;
  color: white;
  padding: 15px 170px;
  border: none;
  border-radius: 6px;
  margin-left: -30px;    /* Add this */
  margin-right: -30px;
  margin-top: 35px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}
.preview-btn:hover {
  background-color: #0056b3;
}

/* Trigger Box Styling */
.custom-multiselect {
  background-color: #1c1c1c;
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #555;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

/* Dropdown Menu Styling */
.checkboxes {
  display: none;
  background-color: #1a1a1a;
  border: 1px solid #444;
  padding: 10px;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 6px;
  margin-top: 5px;
  position: relative; /* Keep this if dropdown stays inside layout */
  z-index: 10;
}

/* Each Payment Method Option */
.checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  margin-bottom: 8px;
  font-size: 15px;
}

/* Checkbox Sizing */
.checkboxes input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ff6600;
}

/* Font Awesome Icon Style (next to payment name) */
.checkboxes label i {
  font-size: 22px;
  color: #ffcc00;
}

/* Payment logos (if using images instead of icons) */
.payment-icon {
  width: 22px;
  height: auto;
  margin-right: 5px;
}
.checkboxes label:hover {
  background-color: #2a2a2a;
  border-radius: 4px;
  padding-left: 5px;
}

.payment-search {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 10px;
  background-color: #2a2a2a;
  color: white;
  border: 1px solid #555;
  border-radius: 6px;
  font-size: 14px;
}

.payment-group-title {
  font-weight: bold;
  margin-top: 12px;
  margin-bottom: 6px;
  color: #ffcc00;
  font-size: 14px;
  padding-left: 4px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  margin-bottom: 6px;
  font-size: 15px;
}



/* Example selectors */
.update-casino-content {
  padding: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.button-group {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.submit-btn {
  background-color: #28a745;
  padding: 12px 50px;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #218838;
}
.country-dropdown {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.country-search {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  background-color: #2a2a2a;
  border: 1px solid #444;
  color: white;
  font-size: 16px;
}

.country-options {
  display: none;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  display: block;
  background: #1a1a1a;
  z-index: 10;
  position: absolute;
  width: 100%;
}

.country-search:focus + .country-options {
  display: block;
}

.country-item {
  padding: 8px 10px;
  cursor: pointer;
  color: white;
  border-radius: 4px;
}

.country-item:hover {
  background-color: #2a2a2a;
}
@media screen and (max-width: 600px) {
  .modal-content {
    padding: 20px;
    width: 95%;
    margin: 30px auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .preview-btn,
  .submit-btn {
    padding: 12px 20px;
    width: 100%;
  }

  .custom-btn,
  .post-btn {
    position: static;
    margin: 10px;
    width: 100%;
  }

  .country-search,
  .payment-search,
  select,
  input,
  textarea {
    font-size: 14px;
  }
}


#previewModal .modal-content {
  background: linear-gradient(145deg, #1c1c1c, #111);
  border: 2px solid #ff6600;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(240, 156, 2, 0.4);
  padding: 40px;
  max-width: 700px;
  height: 700px;
  color: #00ffe7;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  animation: futuristicFadeIn 0.4s ease-out forwards;
}

.preview-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px dashed #ff6600;
  padding: 50px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  color: #d1f7ff;
}

#previewModal button {
  background-color: #ff6600;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#previewModal button:hover {
  background-color: #ff2600;
  transform: scale(1.05);
}

@keyframes futuristicFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.casino-updates {
  
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
   align-items: center;
  
}

.casino-updates .preview-card {
  width: 300px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #e0f7ff;
  font-family: 'Orbitron', sans-serif; /* Optional: futuristic font */
}

.casino-updates .preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 72, 0, 0.808);
}


.casino-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #121121;
  border-radius: 12px;
  padding: 16px;
  max-width: 1000px;
  width: 100%;
  
  margin: 20px 0;
  color: #e0f7ff;
  position: relative;
  border: 1px solid #00ffe7;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  font-family: 'Orbitron', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  
}

.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.8);
}

.rank-circle {
  position: absolute;
  left: -10px;
  top: -10px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 50%;
  line-height: 32px;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}

.casino-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.casino-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #ffcc00;
  object-fit: cover;
  margin-bottom: 10px;
}

.casino-name {
  font-weight: bold;
  color: #ffcc00;
  font-size: 18px;
}

.launch-year {
  font-size: 12px;
  color: #bbb;
}

.casino-card-middle {
  flex: 2;
  text-align: center;
}

.flag {
  width: 40px;
  height: auto;
  margin-bottom: 5px;
}

.regulator {
  font-size: 14px;
  color: #ccc;
}

.authority {
  color: #888;
  font-size: 12px;
  display: block;
}

.casino-card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visit-site-btn {
  background: #ff2600;
  color: white;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.visit-site-btn:hover {
  background-color: #e62800;
}

.payment-icon {
  width: 36px;
  height: auto;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}

.rating {
  font-size: 14px;
  color: gold;
  margin-top: 6px;
}


.delete-style {
  background-color: #e74c3c;
  border: none;
  color: white;
  padding: 12px 150px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 5px; /* ✅ This adds space between the two buttons */
}

.delete-style:hover {
  background-color: #c0392b; /* darker red on hover */
}


#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}


.news-card {
  background: #111;
  border: 1px solid #333;
  padding: 15px;
  margin: 15px 20px;
  border-radius: 10px;
  color: #eee;
}

.news-card img {
  max-width: 100%;
  border-radius: 5px;
}

.news-card h3 {
  color: #ffcc00;
  margin: 10px 0;
}

.news-card a {
  color: #00ccff;
  text-decoration: underline;
}

.news-updates {
  padding: 20px;
  margin-top: 30px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.news-card {
  background: #121212;
  border-radius: 12px;
  overflow: hidden;
  color: #eee;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.news-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 2px solid #1a1a1a;
}

.news-title {
  font-size: 16px;
  font-weight: bold;
  color: #ffcc00;
  padding: 10px;
  margin: 0;
}

.news-content {
  padding: 0 10px;
  font-size: 14px;
  flex-grow: 1;
}

.news-link {
  padding: 10px;
  color: #00ccff;
  text-decoration: underline;
  font-size: 14px;
  align-self: flex-start;
}


/* Enhanced Section Headings */
.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 30px 0;
  padding: 20px;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 102, 0, 0.3) 50%, 
    transparent 100%);
  animation: shimmer 3s infinite;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #ff6600 20%, 
    #ffaa66 50%, 
    #ff6600 80%, 
    transparent 100%);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.8);
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Add glow effect on hover */
.section-heading:hover {
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 102, 0, 0.3);
  transform: translateY(-3px);
  transition: all 0.4s ease;
}



#editNewsContent {
  resize: both;
  min-height: 150px;
  min-width: 100%;
}


#editNewsModal .modal-content {
  background-image: url('lv33horse.png'); /* adjust if path differs */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.85); /* dark overlay for contrast */
  color: white;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
.modal-content .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

/* Global Lucky Slot Section Styling */
#globalSlotsView {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

#globalSlotsView .section-heading {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Grid container for global slots */
#globalSlotsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

/* Individual global slot card */
.global-slot-card {
  background: linear-gradient(145deg, #2a2a3e, #1e1e2e);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: white;
}

.global-slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700);
  border-radius: 15px 15px 0 0;
}

.global-slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Casino header section */
.global-slot-card .casino-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.global-slot-card .casino-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
}

.global-slot-card .casino-info h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: bold;
}

.global-slot-card .casino-promo {
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Rating section */
.global-slot-card .rating-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.global-slot-card .score-display {
  text-align: center;
}

.global-slot-card .score-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd700;
}

.global-slot-card .score-text {
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 2px;
}

.global-slot-card .stars-display {
  text-align: center;
}

.global-slot-card .stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 3px;
}

.global-slot-card .rating-text {
  font-size: 0.8rem;
  color: #ccc;
}

/* Payment methods section */
.global-slot-card .payment-methods {
  margin: 15px 0;
}

.global-slot-card .payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.global-slot-card .payment-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.global-slot-card .payment-icon:hover {
  background: rgba(255, 107, 53, 0.3);
  transform: scale(1.1);
}

.global-slot-card .payment-count {
  color: #ccc;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Play button */
.global-slot-card .play-button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 25px;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
}

.global-slot-card .play-button:hover {
  background: linear-gradient(45deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Payment method specific colors */
.global-slot-card .payment-icon.visa { color: #1a1f71; background: rgba(26, 31, 113, 0.2); }
.global-slot-card .payment-icon.mastercard { color: #eb001b; background: rgba(235, 0, 27, 0.2); }
.global-slot-card .payment-icon.bitcoin { color: #f7931a; background: rgba(247, 147, 26, 0.2); }
.global-slot-card .payment-icon.paypal { color: #003087; background: rgba(0, 48, 135, 0.2); }
.global-slot-card .payment-icon.googlepay { color: #4285f4; background: rgba(66, 133, 244, 0.2); }

/* Responsive design */
@media (max-width: 768px) {
  #globalSlotsGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .global-slot-card .casino-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .global-slot-card .rating-section {
    flex-direction: column;
    gap: 10px;
  }
}


.admin-footer {
  background-color: #111;
  color: #ccc;
  padding: 40px 20px 20px;
  font-family: 'Orbitron', sans-serif;
  border-top: 1px solid #333;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  color: #ffcc00;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-section ul li a:hover,
.footer-section a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 13px;
  color: #888;
}

.casino-card {
            background: linear-gradient(145deg, #2a2a4a 0%, #1e1e3a 100%);
            border-radius: 15px;
            padding: 25px;
            width: 100%;
            max-width: 580px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .casino-rank {
            position: absolute;
            top: -15px;
            left: 25px;
            background: linear-gradient(145deg, #d4af37, #b8941f);
            color: #000;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .casino-left {
            flex-shrink: 0;
        }

        .casino-left img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff4444;
            font-weight: bold;
            font-size: 12px;
            text-align: center;
            line-height: 1.2;
        }

        .casino-right {
            flex: 1;
        }

        .casino-right h2 {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #ffd700;
        }

        .safety-index {
            font-size: 12px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .safety-icon {
            color: #ffd700;
        }

        .safety-index .high {
            color: #4CAF50;
            font-weight: bold;
            text-transform: uppercase;
        }

        .casino-features {
            list-style: none;
            margin-bottom: 15px;
        }

        .casino-features li {
            font-size: 13px;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .casino-features li::before {
            content: "✓";
            color: #4CAF50;
            font-weight: bold;
            font-size: 14px;
        }

        .bonus {
            background: rgba(255, 193, 7, 0.1);
            border-left: 3px solid #ffc107;
            padding: 8px 12px;
            margin-bottom: 8px;
            font-size: 13px;
            border-radius: 4px;
        }

        .bonus-icon {
            margin-right: 5px;
        }

        .terms {
            font-size: 11px;
            margin-bottom: 15px;
            opacity: 0.7;
        }

        .terms a {
            color: #64b5f6;
            text-decoration: none;
        }

        .casino-buttons {
            display: flex;
            gap: 10px;
        }

        .visit {
            background: linear-gradient(145deg, #4CAF50, #388E3C);
            color: white;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .visit:hover {
            background: linear-gradient(145deg, #388E3C, #2E7D32);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
        }

        .review {
            background: linear-gradient(145deg, #6c757d, #495057);
            color: white;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .review:hover {
            background: linear-gradient(145deg, #495057, #343a40);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
        }

        @media (max-width: 600px) {
            .casino-card {
                flex-direction: column;
                text-align: center;
            }
            
            .casino-left {
                align-self: center;
            }
            
            .casino-buttons {
                justify-content: center;
            }
        }

        .best-casino-card {
  display: flex;
  background: #0e0d11;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  color: #d6b55f;
  border: 1px solid #d6b55f22;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.editor-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #d9381e;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 15px;
  font-weight: bold;
}

.card-left .casino-avatar {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.card-middle {
  flex-grow: 1;
}

.casino-title {
  margin: 0 0 8px;
  font-weight: bold;
  font-size: 1.2rem;
}

.rating {
  margin-top: 8px;
  color: #ffd700;
  font-size: 14px;
}

.bonus-btn {
  background-color: #bfa14b;
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.bonus-btn:hover {
  background-color: #d6b55f;
}
