/* ---------------------- */
/*     ANIMAÇÕES          */
/* ---------------------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

@keyframes lithuaniaShake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-3px);
  }
  40%, 80% {
    transform: translateX(3px);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}

@keyframes rotateLogo {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---------------------- */
/*  ESTILOS BÁSICOS       */
/* ---------------------- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #0D1B2A; /* Głęboki granat dla tekstu */
    background: linear-gradient(to bottom, #FFF8E1, #0D1B2A); /* Gradient złoto-granat */
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    width: 100%;
}

/* Estilos de títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 0;
}

/* Alterando tamanhos e cores dos títulos */
h1 { 
    font-size: 38px; 
    color: #FFD700; /* Złoty */
    background: linear-gradient(to right, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: shine 3s linear infinite;
}
h2 { 
    font-size: 32px; 
    color: #FFD700;
    background: linear-gradient(to right, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    animation: shine 4s linear infinite;
}
h3 { 
    font-size: 26px; 
    color: #0D1B2A; /* Głęboki granat */
}
h4 { 
    font-size: 22px; 
    color: #0D1B2A;
}

/* Links */
a {
    color: #FFD700; /* Jasne złoto dla linków */
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #DAA520; /* Ciemniejsze złoto na hover */
    text-decoration: underline;
}

/* Botões */
.button, 
.casino-btn {
    background: linear-gradient(to right, #0D1B2A, #FFD700); /* Gradient granat-złoto */
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.button:hover, 
.casino-btn:hover {
    background: linear-gradient(to right, #1B263B, #DAA520); /* Gradient ciemniejszy na hover */
    color: #fff;
    animation: pulse 1s infinite;
}

/* Tabela de cassinos */
.casino-table {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease forwards;
    background: #FFFFFF;
}

.casino-table th,
.casino-table td {
    padding: 20px;
    text-align: left;
    vertical-align: middle;
}

.casino-table th {
    background: linear-gradient(to right, #0D1B2A, #1B263B); /* Gradient granatowy dla nagłówka tabeli */
    color: #FFD700; /* Złoty tekst w nagłówku */
    font-weight: 700;
}

.casino-table td {
    border-bottom: 1px solid #ddd;
}

.casino-table tr:last-child td {
    border-bottom: none;
}

/* Logotipo do cassino */
.casino-logo {
    display: flex;
    align-items: center;
}

.casino-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 8px;
    padding: 5px;
    background-color: #FFF8E1; /* Jasne złoto dla tła logo */
    transition: transform 0.5s ease-in-out;
}

.casino-logo img:hover {
    transform: scale(1.1) rotate(360deg);
    animation: rotateLogo 0.5s ease-in-out;
}

/* Container principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease forwards;
}

/* Cabeçalho (header) */
header {
    background: linear-gradient(to right, #0D1B2A, #FFD700); /* Gradient granat-złoto dla nagłówka */
    padding: 25px;
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    min-width: 100%;
}

/* Rodapé (footer) */
footer {
    background: linear-gradient(to right, #0D1B2A, #FFD700, #DAA520); /* Gradient granat-złoto dla stopki */
    color: #fff;
    padding: 20px 20px;
    box-sizing: border-box;
    text-align: center;
    width: 100%;
    font-size: 14px;
    position: relative;
    bottom: 0;
    left: 0;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
}

/* Container do rodapé */
.footer-container {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Ícones sociais no rodapé */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #FFF8E1; /* Jasne złoto na hover */
    transform: scale(1.2);
}

/* Navegação do rodapé */
.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0;
}

.footer-nav a {
    color: #FFF8E1; /* Jasne złoto dla linków w stopce */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

/* Seção FAQ */
.faq-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease forwards;
    text-align: left;
}

.faq-container h2 {
    text-align: center;
    font-size: 34px;
    color: #FFD700; /* Złoty dla nagłówka FAQ */
    margin-bottom: 20px;
    border-bottom: 2px solid #DAA520; /* Ciemne złoto dla linii pod nagłówkiem */
    padding-bottom: 10px;
    animation: shine 4s linear infinite;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 5px solid #FFD700; /* Jasne złoto dla akcentu */
    background: #FFF8E1; /* Jasne złoto dla tła FAQ */
    border-radius: 8px;
    animation: slideInLeft 0.5s ease forwards;
}

.faq-item h3 {
    font-size: 20px;
    color: #0D1B2A; /* Głęboki granat dla podtytułów FAQ */
    margin-top: 0;
}

.faq-item p {
    font-size: 18px; /* Większa czcionka dla lepszej czytelności */
    color: #0D1B2A; /* Głęboki granat dla tekstu FAQ */
    line-height: 1.8; /* Zwiększony odstęp między liniami */
    margin: 8px 0 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtelny cień tekstu */
}

/* Dodatkowe style dla tekstu */
p {
    font-size: 18px;
    line-height: 1.8;
    color: #0D1B2A;
    animation: slideInLeft 0.5s ease forwards;
}

ul {
    padding-left: 20px;
    list-style-type: none;
}

ul li {
    position: relative;
    padding-left: 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #0D1B2A;
    animation: slideInLeft 0.5s ease forwards;
}

ul li:before {
    content: "★"; /* Gwiazdka jako punkt listy */
    color: #FFD700;
    position: absolute;
    left: 0;
}
@media (max-width: 768px) {
    .casino-table{
        display: flex;
    flex-direction: column;
    }
    thead{
        display:none;
    }
    thead tr, tbody tr{
        display: flex;
    flex-direction: column;
    }
    .text-box img{
        width:100%;
    }
    footer{
        padding: 5% 5% 5% 10%;
    box-sizing: border-box;
    }
}