/* Reset and base styles */
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

:active, :focus { outline: 0; }
a:active, a:focus { outline: 0; }

aside, footer, header, nav { display: block; }

body, html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

button, input, textarea { font-family: inherit; }
input::-ms-clear { display: none; }
input, textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input::placeholder, textarea::placeholder { color: inherit; }

button {
  cursor: pointer;
  background-color: transparent;
}
button::-moz-focus-inner { padding: 0; border: 0; }

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }

ul li { list-style: none; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* CSS Variables */
:root {
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-width: 1240px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  
  --background-page: #0a0f1c;
  --main: #ffffff;
  --black: #000000;
  --white: #ffffff;
  --header: #1a202c;
  --box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
  --background: #0f1a2e;
  --primary: #3498db;
  --gold: #e67e22;
  --box-shadow-card: 0 0 25px rgba(52, 152, 219, 0.25);
  --background-card: #1e2733;
  --hover: #2980b9;
  --active: #2471a3;
  --accent: #f39c12;
  --success: #27ae60;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-card: linear-gradient(145deg, #1e2733 0%, #2a3441 100%);
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
}

@media (max-width: 991px) {
  .container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 var(--container-step-mobile);
  }
}

/* Base page */
.page {
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background: var(--background-page);
}

.poppins {
  font-family: "Poppins", var(--font-main);
}

.main {
  flex: 1 1 auto;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .main {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .main {
    margin-bottom: 30px;
  }
}

/* Typography */
.tx-main {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .tx-main {
    font-size: 14px;
  }
}

.tx-18 {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

.tx-16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}

.tx-32-26 {
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
}

@media (max-width: 991px) {
  .tx-32-26 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .tx-32-26 {
    font-size: 26px;
  }
}

.tx-24-20 {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
}

@media (max-width: 991px) {
  .tx-24-20 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .tx-24-20 {
    font-size: 20px;
  }
}

.color-primary {
  color: var(--primary);
}

/* Common elements */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--primary);
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .logo {
    font-size: 14px;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .logo {
    font-size: 12px;
    gap: 8px;
  }
}

.logo:hover {
  color: var(--hover);
  transform: scale(1.05);
}

.logo span {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 991px) {
  .logo span {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 600px) {
  .logo span {
    width: 24px;
    height: 24px;
  }
}

/* Margins */
.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50-25 {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .mb-50-25 {
    margin-bottom: 35px;
  }
}

@media (max-width: 600px) {
  .mb-50-25 {
    margin-bottom: 25px;
  }
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.fw-700 {
  font-weight: 700;
}

.fw-500 {
  font-weight: 500;
}

/* Header */
.casino-header {
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, var(--header) 0%, #2a3441 100%);
  border-bottom: 3px solid var(--primary);
}

.casino-header__container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .casino-header__container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .casino-header__container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* Background */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 15, 28, 0.7) 0%, rgba(10, 15, 28, 0.95) 100%);
  z-index: 1;
}

/* Page content */
.page-content {
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

@media (max-width: 991px) {
  .page-content {
    padding: 35px 0;
  }
}

@media (max-width: 600px) {
  .page-content {
    padding: 25px 0;
  }
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--primary), var(--hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .page-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .page-title {
    margin-bottom: 20px;
  }
}

.content-card {
  background: var(--gradient-card);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(52, 152, 219, 0.2);
  box-shadow: var(--box-shadow-card);
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .content-card {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .content-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

.content-section {
  margin-bottom: 30px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.section-title {
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-text {
  line-height: 1.6;
  margin-bottom: 15px;
}

.section-text:last-child {
  margin-bottom: 0;
}

.section-list {
  margin: 15px 0;
}

.section-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.section-list li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.contact-info {
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.2);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary), var(--hover));
  color: white;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.back-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Footer simplificado para páginas adicionais */
.simple-footer {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--header) 0%, #0f1419 100%);
  border-top: 3px solid var(--primary);
  padding: 40px 0;
  text-align: center;
}

@media (max-width: 991px) {
  .simple-footer {
    padding: 30px 0;
  }
}

@media (max-width: 600px) {
  .simple-footer {
    padding: 20px 0;
  }
}

.simple-footer__text {
  color: var(--main);
  font-size: 14px;
  line-height: 1.4;
}

/* Links destacados */
.highlight-link {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.highlight-link:hover {
  color: var(--hover);
}

/* Responsive table */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(52, 152, 219, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.responsive-table th,
.responsive-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.responsive-table th {
  background: rgba(52, 152, 219, 0.1);
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 600px) {
  .responsive-table {
    font-size: 14px;
  }
  
  .responsive-table th,
  .responsive-table td {
    padding: 8px;
  }
}

/* Important notice box */
.notice-box {
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(230, 126, 34, 0.1));
  border: 2px solid rgba(243, 156, 18, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
}

.notice-box h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}