@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
}

body {
  background: radial-gradient(circle at top, #0b0f1a, #05070d);
  color: #00f7ff;
  overflow-x: hidden;
}

.content {
    max-width: 1220px;
    margin: 0 auto;
    padding: 10px;
}

.content h1,h2,h3 {
    color: #00ffcc;
    margin: 20px 0px;
    text-align: center;
    letter-spacing: 0.5px;
}

.content p {
    color: #ccc;
    text-align: justify;
    margin: 10px 0px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.content ul, ol {
    margin-left: 20px;
    font-size: 16px;
}

.content a {
    text-decoration: none;
    color: #00f7ff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  background: #111827;
  top: 0;
  border-bottom: 2px solid #00ffcc;
  box-shadow: 0 -5px 20px rgba(0, 255, 204, 0.2);
}

.logo {
  width: 200px;
  font-weight: bold;
}


nav a {
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 300px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
}

.hero h1 {
    color: #00ffcc;
    margin-bottom: 5PX;
    text-shadow: 0 0 5px #00ffcc;
}

.hero p {
    color: #ccc;
    line-height: 1.5;
}

.auth-buttons {
    display: flex;
    padding: 10px 0px;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

/* BASE BUTTON */
.auth-buttons a {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
    font-family: Arial, sans-serif;
    border: 2px solid transparent;
}

/* LOGIN BUTTON */
.btn-login {
    color: #00ffcc;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 5px rgba(0,255,204,0.4);
    cursor: pointer;
}

.btn-login:hover {
    background: #00ffcc;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ffcc;
}

/* REGISTER BUTTON */
.btn-register {
    color: #ff00ff;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid #ff00ff;
    box-shadow: 0 0 5px rgba(255,0,255,0.4);
    cursor: pointer;
}

.btn-register:hover {
    background: #ff00ff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff00ff;
}

.provider-wrapper {
    display: grid;
    justify-items: center;
    width: 100%;
    padding: 12px 0;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 auto

}

.provider-wrapper::-webkit-scrollbar {
    height: 8px;
}

.provider-wrapper::-webkit-scrollbar-track {
    background: #ddd;
}

.provider-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.provider-list {
    display: flex;
    align-items: center;
    min-width: max-content;
    gap: 10px;
}

.provider-item {
    width: 90px;
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.provider-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 8px;
}

.provider-item span {
    display: block;
    font-size: 10px;
    color: #fff;
    white-space: nowrap;
}

.provider-item a {
  text-decoration: none;
}

.provider-item:hover {
    transform: translateY(-3px);
}

.provider-item.active {
    position: relative;
}

.provider-item.active::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 10px;
}

.rtp {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-items: center;
    gap: 5px;
    padding: 5px;
    max-width: 100px;
    margin: 0 auto;
    justify-content: center;
}

.game-footer {
    background: #111827;
    color: #fff;
    padding: 10px;
    font-family: Arial, sans-serif;
    border-top: 2px solid #00ffcc;
    box-shadow: 0 -5px 20px rgba(0,255,204,0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-brand h2 {
    color: #00ffcc;
    text-align: left;
    font-size: 26px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ffcc;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.5;
}

.footer-links h3,
.footer-social h3 {
    text-align: left;
    color: #ff00ff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #ff00ff;
}

.footer-links a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00ffcc;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    font-size: 20px;
    background: #111;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid #00ffcc;
    text-decoration: none;
}

.social-icons a:hover {
    background: #00ffcc;
    color: #000;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 14px;
}

@media (max-width: 1024px) {
  .rtp {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .rtp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
.content {
    max-width: 1220px;
    margin: 0 auto;
    padding: 10px;
}

.content h1,h2,h3 {
    color: #00ffcc;
    margin: 20px 0px;
    text-align: center;
    letter-spacing: 0.5px;
}

.content p {
    color: #ccc;
    text-align: justify;
    margin: 10px 0px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.content ul, ol {
    margin-left: 20px;
    font-size: 12px;
}
}

@media (max-width: 425px) {
  .rtp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 400px) {
  .rtp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}