body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f3f3;
}

.header {
    background: #000;
    padding: 15px;
    text-align: center;
}

.content-wrapper {
    background: #fff;
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 20px;
}

.casino-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.logo-box {
    aspect-ratio: 16 / 9;
    background: #000;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
}

.stars {
    font-size: 32px;
    margin-top: 10px;
}

.stars.green { color: #27ae60; }
.stars.orange { color: #f39c12; }
.stars.red { color: #e74c3c; }

.btn {
    display: inline-block;
    padding: 14px 22px;
    background: #00a86b;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    margin-top: 15px;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,168,107,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0,168,107,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,168,107,0); }
}

.warning-box {
    border: 2px solid #e74c3c;
    border-radius: 12px;
    padding: 15px;
    background: #fdecea;
    color: #c0392b;
    margin: 20px 0;
    display: block;
    gap: 10px;
    text-align:center;
}

.warning-box::before {
    content: "⚠️";
    font-size: 22px;
}

.timer {
    margin: 15px 0;
    font-size: 18px;
    animation: fade 1s infinite alternate;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.center { text-align: center; }

.about-home {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}



.casino-title {
    text-align: center;
    margin-bottom: 20px;
}

.casino-title a {
    text-decoration: none;
    color: inherit;
}

.casino-title img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.casino-title a:hover img {
    transform: scale(1.03);
}

.casino-title a:hover {
    opacity: 0.9;
}



/* ===== Buttons ===== */

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #1ed760;
    color: #000;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 40px;
}

.btn:hover {
    opacity: .9;
}

.alt-table th,
.alt-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alt-table th {
  background: #1c2247;
  color: #00c6ff;
  font-weight: 600;
  text-transform: uppercase;
}

.alt-table img {
  max-height: 120px;
}

.alt-table a.small {
  display: inline-block;
  background: var(--green);
  color: #000;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.alt-table a.small:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.alt-table a.small {
display: inline-block;
background-color: #00ff99;

color: #000;

padding: 8px 18px;
border-radius: 25px;
font-weight: 700;
text-decoration: none;
transition: 0.3s;
}