* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Prompt", sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}
header {
  position: relative;
  z-index: 1000;
}
.banner {
  background: linear-gradient(90deg, #8b0000 0%, #ff4500 50%, #8b0000 100%);
  padding: 0.5vw 1.5vw;
  text-align: center;
  font-size: 0.8vw;
  border-bottom: 0.15vw solid #ff6600;
}
.age-symbol {
  background: #ffffff;
  color: #8b0000;
  padding: 0.15vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 0.7vw;
  font-size: 0.7vw;
}
.age-text a {
  color: #ffdd44;
  text-decoration: underline;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(0.7vw);
  border-bottom: 0.07vw solid #333;
}
.domain {
  font-size: 1.8vw;
  font-weight: bold;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2.2vw;
}
nav a {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
nav a:hover {
  color: #ff6600;
  text-shadow: 0 0 0.6vw rgba(255, 102, 0, 0.6);
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -0.35vw;
  left: 0;
  width: 0;
  height: 0.15vw;
  background: linear-gradient(90deg, #ff6600, #ffaa00);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.hero {
  padding: 6vw 1.5vw;
  text-align: center;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 102, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 70% 30%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.05) 0.07vw,
    transparent 0.07vw
  );
  background-size: 3.7vw 3.7vw;
  animation: sparkle 20s linear infinite;
  pointer-events: none;
}
@keyframes sparkle {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
.hero-content {
  max-width: 60vw;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 2.6vw;
  font-weight: bold;
  margin-bottom: 2.2vw;
  background: linear-gradient(135deg, #ffffff 0%, #ff6600 50%, #ffaa00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 2.2vw rgba(255, 102, 0, 0.3);
  line-height: 1.2;
}
.hero p {
  font-size: 0.9vw;
  color: #cccccc;
  margin-bottom: 3vw;
  line-height: 1.8;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
}
.tspp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
  margin-top: 3vw;
  padding: 0 1.5vw;
}
.tspp-item {
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  padding: 1vw;
  text-align: center;
  border: 0.1vw solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tspp-item:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 0 1vw rgba(255, 102, 0, 0.5);
}
.tspp-item img {
  width: 100%;
  height: auto;
  border-radius: 0.3vw;
}
.tspp-item p {
  font-size: 0.9vw;
  color: #cccccc;
  margin: 1vw 0;
  line-height: 1.4;
}
.tspp-item p span {
  color: #ffd700;
}
.btn-obtenir {
  display: inline-block;
  padding: 0.8vw 1.5vw;
  background: linear-gradient(135deg, #ff4500, #ff8800);
  color: #fff;
  text-decoration: none;
  border-radius: 0.5vw;
  font-size: 1vw;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-obtenir:hover {
  background: linear-gradient(135deg, #ff6600, #ffaa00);
  transform: scale(1.05);
}
.comments-section {
  margin-top: 3vw;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
}
.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5vw;
}
.comments-header h2 {
  font-size: 1.8vw;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
.btn-more-reviews {
  display: inline-block;
  padding: 0.8vw 1.5vw;
  background: linear-gradient(135deg, #ff4500, #ff8800);
  color: #fff;
  text-decoration: none;
  border-radius: 0.5vw;
  font-size: 1vw;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-more-reviews:hover {
  background: linear-gradient(135deg, #ff6600, #ffaa00);
  transform: scale(1.05);
}
.comments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
}
.tspp-item {
  margin-bottom: 1.5vw;
  padding: 1vw;
  background: rgba(40, 40, 40, 0.9);
  border-radius: 0.5vw;
  border: 0.1vw solid #444;
  transition: transform 0.3s ease;
}
.tspp-item:hover {
  transform: translateY(-0.3vw);
}
.tspp-item p {
  font-size: 0.9vw;
  color: #cccccc;
  line-height: 1.4;
}
.tspp-item p strong {
  color: #ff9999;
}
.faq-section {
  margin-top: 3vw;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5vw;
}
.faq-header h2 {
  font-size: 1.8vw;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
.faq-item {
  margin-bottom: 1vw;
}
.faq-question {
  font-size: 1vw;
  color: #cccccc;
  padding: 1vw;
  background: rgba(40, 40, 40, 0.9);
  border-radius: 0.5vw;
  border: 0.1vw solid #444;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: rgba(50, 50, 50, 0.9);
}
.faq-question.open {
  background: rgba(50, 50, 50, 0.9);
}
.faq-question::after {
  content: "➕";
  position: absolute;
  right: 1vw;
  transition: transform 0.3s ease;
}
.faq-question.open::after {
  content: "➖";
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  font-size: 0.9vw;
  color: #cccccc;
  padding: 1vw 1vw 1vw 2vw;
  background: rgba(30, 30, 30, 0.9);
  border-radius: 0 0 0.5vw 0.5vw;
  border: 0.1vw solid #444;
  border-top: none;
  margin-top: -0.1vw;
}
.additional-info {
  margin-top: 3vw;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
}
.additional-info h2 {
  font-size: 1.8vw;
  color: #ff6600;
  margin-bottom: 1.5vw;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
.additional-info p {
  font-size: 0.9vw;
  color: #cccccc;
  line-height: 1.8;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
}
.market-info {
  margin-top: 3vw;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
}
.market-info h2 {
  font-size: 1.8vw;
  color: #ff6600;
  margin-bottom: 1.5vw;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
.market-info p {
  font-size: 0.9vw;
  color: #cccccc;
  line-height: 1.8;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5vw;
}
.market-info p:last-child {
  margin-bottom: 0;
}
.market-info.tspp-safety {
  margin-top: 3vw;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
}
.market-info.tspp-safety h2 {
  font-size: 1.8vw;
  color: #ff6600;
  margin-bottom: 1.5vw;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
.market-info.tspp-safety p {
  font-size: 0.9vw;
  color: #cccccc;
  line-height: 1.8;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5vw;
}
.market-info.tspp-safety p:last-child {
  margin-bottom: 0;
}
.tspp-form {
  margin-top: 3vw;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
}
.tspp-form h2 {
  font-size: 1.8vw;
  color: #ff6600;
  margin-bottom: 1.5vw;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
.tspp-form p {
  font-size: 0.9vw;
  color: #cccccc;
  margin-bottom: 1.5vw;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
}
.tspp-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.form-row {
  display: flex;
  gap: 1.5vw;
  width: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.left {
  flex: 1;
}
.form-group.right {
  flex: 2;
}
.form-group label {
  font-size: 0.9vw;
  color: #cccccc;
  margin-bottom: 0.5vw;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
}
.form-group input,
.form-group textarea {
  background: rgba(40, 40, 40, 0.9);
  border: 0.1vw solid #444;
  border-radius: 0.5vw;
  padding: 0.8vw;
  color: #ffffff;
  font-size: 0.9vw;
  transition: border-color 0.3s ease;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6600;
  outline: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 8vw;
}
.btn-envoyer {
  display: inline-block;
  padding: 0.8vw 1.5vw;
  background: linear-gradient(135deg, #ff4500, #ff8800);
  color: #fff;
  text-decoration: none;
  border-radius: 0.5vw;
  font-size: 1vw;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}
.btn-envoyer:hover {
  background: linear-gradient(135deg, #ff6600, #ffaa00);
  transform: scale(1.05);
}
.reviews-section {
  padding: 6vw 1.5vw;
  text-align: center;
}
.reviews-section h2 {
  font-size: 2.6vw;
  color: #ff6600;
  margin-bottom: 2.2vw;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .tspp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comments-header {
    flex-direction: column;
    text-align: center;
  }
  .comments-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1vw;
  }
  .btn-more-reviews {
    font-size: 1rem;
  }
  .comments-grid {
    grid-template-columns: 1fr;
  }
  .tspp-item p {
    font-size: 1rem;
  }
  .faq-header {
    flex-direction: column;
    text-align: center;
  }
  .faq-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1vw;
  }
  .btn-all-questions {
    font-size: 1rem;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
  .additional-info h2 {
    font-size: 1.5rem;
  }
  .additional-info p {
    font-size: 1rem;
  }
  .market-info h2,
  .market-info.tspp-safety h2 {
    font-size: 1.5rem;
  }
  .market-info p,
  .market-info.tspp-safety p {
    font-size: 1rem;
  }
  .tspp-form h2 {
    font-size: 1.5rem;
  }
  .tspp-form p {
    font-size: 1rem;
  }
  .form-row {
    flex-direction: column;
  }
  .form-group.left,
  .form-group.right {
    flex: auto;
    width: 100%;
  }
  .form-group label {
    font-size: 1rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 1rem;
  }
  .btn-envoyer {
    font-size: 1rem;
    align-self: center;
  }
  .reviews-section h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 40px 15px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .age-text {
    font-size: 10px;
  }
  .header-content {
    padding: 15px;
  }
  .tspp-grid {
    grid-template-columns: 1fr;
  }
  .comments-header h2 {
    font-size: 1.2rem;
  }
  .btn-more-reviews {
    font-size: 0.9rem;
  }
  .faq-header h2 {
    font-size: 1.2rem;
  }
  .btn-all-questions {
    font-size: 0.9rem;
  }
  .faq-question {
    font-size: 0.9rem;
  }
  .faq-answer {
    font-size: 0.85rem;
  }
  .additional-info h2 {
    font-size: 1.2rem;
  }
  .additional-info p {
    font-size: 0.9rem;
  }
  .market-info h2,
  .market-info.tspp-safety h2 {
    font-size: 1.2rem;
  }
  .market-info p,
  .market-info.tspp-safety p {
    font-size: 0.9rem;
  }
  .tspp-form h2 {
    font-size: 1.2rem;
  }
  .tspp-form p {
    font-size: 0.9rem;
  }
  .form-group label {
    font-size: 0.9rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
  }
  .btn-envoyer {
    font-size: 0.9rem;
    align-self: center;
  }
  .reviews-section h2 {
    font-size: 1.5rem;
  }
}
.tspp-casino {
  background: linear-gradient(90deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  padding: 2vw 1.5vw;
  color: #cccccc;
  font-size: 0.85vw;
  border-top: 0.2vw solid #ff6600;
  box-shadow: 0 -0.3vw 0.8vw rgba(255, 102, 0, 0.2);
}
.tspp-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  justify-content: center;
  margin-bottom: 1.5vw;
}
.tspp-top a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 0.9vw;
}
.tspp-top a:hover {
  color: #ffaa00;
  text-shadow: 0 0 0.4vw rgba(255, 170, 0, 0.5);
}
.tspp-warning {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
  gap: 1.5vw;
  background: rgba(30, 30, 30, 0.9);
  padding: 1.5vw;
  border-radius: 0.7vw;
  border: 0.1vw solid #333;
  margin-bottom: 1.5vw;
}
.tspp-warning h3 {
  color: #ff6600;
  font-size: 1vw;
  margin-bottom: 0.8vw;
  text-shadow: 0 0 0.4vw rgba(255, 102, 0, 0.5);
}
.tspp-warning p {
  line-height: 1.5;
  font-size: 0.85vw;
}
.tspp-legal {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.8vw;
  color: #bbbbbb;
  padding: 0 1vw;
}
.tspp-18plus {
  background: #fff;
  color: #8b0000;
  display: inline-block;
  padding: 0.25vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.7vw;
  margin-bottom: 0.5vw;
}
.tspp-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 1.5vw;
}
.tspp-logos img {
  max-height: 2vw;
  filter: brightness(1.1);
  transition: transform 0.3s;
}
.tspp-logos img:hover {
  transform: scale(1.1);
}
.tspp-contact {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.85vw;
}
.tspp-contact a {
  color: #ffcc66;
  text-decoration: underline;
}
.tspp-bottom {
  text-align: center;
  font-size: 0.75vw;
  color: #999999;
  border-top: 0.1vw solid #333;
  padding-top: 0.8vw;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}
.banner {
  background: linear-gradient(90deg, #8b0000 0%, #ff4500 50%, #8b0000 100%);
  padding: 0.5vw 1.5vw;
  text-align: center;
  font-size: 0.8vw;
  border-bottom: 0.15vw solid #ff6600;
}
.age-symbol {
  background: #ffffff;
  color: #8b0000;
  padding: 0.15vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 0.7vw;
  font-size: 0.7vw;
}
.age-text a {
  color: #ffdd44;
  text-decoration: underline;
}
header {
  position: relative;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(0.7vw);
  border-bottom: 0.07vw solid #333;
}
.domain {
  font-size: 1.8vw;
  font-weight: bold;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2.2vw;
}
nav a {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
nav a:hover {
  color: #ff6600;
  text-shadow: 0 0 0.6vw rgba(255, 102, 0, 0.6);
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -0.35vw;
  left: 0;
  width: 0;
  height: 0.15vw;
  background: linear-gradient(90deg, #ff6600, #ffaa00);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.faq-section {
  margin-top: 3vw;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5vw;
}
.faq-header h2 {
  font-size: 1.8vw;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
.btn-all-questions {
  display: inline-block;
  padding: 0.8vw 1.5vw;
  background: linear-gradient(135deg, #ff4500, #ff8800);
  color: #fff;
  text-decoration: none;
  border-radius: 0.5vw;
  font-size: 1vw;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-all-questions:hover {
  background: linear-gradient(135deg, #ff6600, #ffaa00);
  transform: scale(1.05);
}
.faq-item {
  margin-bottom: 1vw;
}
.faq-question {
  font-size: 1vw;
  color: #cccccc;
  padding: 1vw;
  background: rgba(40, 40, 40, 0.9);
  border-radius: 0.5vw;
  border: 0.1vw solid #444;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: rgba(50, 50, 50, 0.9);
}
.faq-question.open {
  background: rgba(50, 50, 50, 0.9);
}
.faq-question::after {
  content: "➕";
  position: absolute;
  right: 1vw;
  transition: transform 0.3s ease;
}
.faq-question.open::after {
  content: "➖";
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  font-size: 0.9vw;
  color: #cccccc;
  padding: 1vw 1vw 1vw 2vw;
  background: rgba(30, 30, 30, 0.9);
  border-radius: 0 0 0.5vw 0.5vw;
  border: 0.1vw solid #444;
  border-top: none;
  margin-top: -0.1vw;
}
.tspp-casino {
  background: linear-gradient(90deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  padding: 2vw 1.5vw;
  color: #cccccc;
  font-size: 0.85vw;
  border-top: 0.2vw solid #ff6600;
  box-shadow: 0 -0.3vw 0.8vw rgba(255, 102, 0, 0.2);
  margin-top: 3vw;
}
.tspp-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  justify-content: center;
  margin-bottom: 1.5vw;
}
.tspp-top a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 0.9vw;
}
.tspp-top a:hover {
  color: #ffaa00;
  text-shadow: 0 0 0.4vw rgba(255, 170, 0, 0.5);
}
.tspp-warning {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
  gap: 1.5vw;
  background: rgba(30, 30, 30, 0.9);
  padding: 1.5vw;
  border-radius: 0.7vw;
  border: 0.1vw solid #333;
  margin-bottom: 1.5vw;
}
.tspp-warning h3 {
  color: #ff6600;
  font-size: 1vw;
  margin-bottom: 0.8vw;
  text-shadow: 0 0 0.4vw rgba(255, 102, 0, 0.5);
}
.tspp-warning p {
  line-height: 1.5;
  font-size: 0.85vw;
}
.tspp-legal {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.8vw;
  color: #bbbbbb;
  padding: 0 1vw;
}
.tspp-18plus {
  background: #fff;
  color: #8b0000;
  display: inline-block;
  padding: 0.25vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.7vw;
  margin-bottom: 0.5vw;
}
.tspp-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 1.5vw;
}
.tspp-logos img {
  max-height: 2vw;
  filter: brightness(1.1);
  transition: transform 0.3s;
}
.tspp-logos img:hover {
  transform: scale(1.1);
}
.tspp-contact {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.85vw;
}
.tspp-contact a {
  color: #ffcc66;
  text-decoration: underline;
}
.tspp-bottom {
  text-align: center;
  font-size: 0.75vw;
  color: #999999;
  border-top: 0.1vw solid #333;
  padding-top: 0.8vw;
}

@media (max-width: 480px) {
  .banner {
    font-size: 10px;
  }
  .age-symbol {
    font-size: 0.6rem;
  }
  .header-content {
    padding: 15px;
  }
  .domain {
    font-size: 1.5rem;
  }
  .faq-header h2 {
    font-size: 1.2rem;
  }
  .btn-all-questions {
    font-size: 0.9rem;
  }
  .faq-question {
    font-size: 0.9rem;
  }
  .faq-answer {
    font-size: 0.85rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}
.banner {
  background: linear-gradient(90deg, #8b0000 0%, #ff4500 50%, #8b0000 100%);
  padding: 0.5vw 1.5vw;
  text-align: center;
  font-size: 0.8vw;
  border-bottom: 0.15vw solid #ff6600;
}
.age-symbol {
  background: #ffffff;
  color: #8b0000;
  padding: 0.15vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 0.7vw;
  font-size: 0.7vw;
}
.age-text a {
  color: #ffdd44;
  text-decoration: underline;
}
header {
  position: relative;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(0.7vw);
  border-bottom: 0.07vw solid #333;
}
.domain {
  font-size: 1.8vw;
  font-weight: bold;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2.2vw;
}
nav a {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
nav a:hover {
  color: #ff6600;
  text-shadow: 0 0 0.6vw rgba(255, 102, 0, 0.6);
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -0.35vw;
  left: 0;
  width: 0;
  height: 0.15vw;
  background: linear-gradient(90deg, #ff6600, #ffaa00);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.comments-section {
  margin-top: 3vw;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}
.comments-header {
  margin-bottom: 1.5vw;
}
.comments-header h2 {
  font-size: 2.6vw;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
  margin-bottom: 1vw;
}
.comments-section p {
  font-size: 0.9vw;
  color: #cccccc;
  margin-bottom: 2vw;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
}
.comments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
}
.tspp-item {
  background: rgba(40, 40, 40, 0.9);
  border-radius: 0.5vw;
  border: 0.1vw solid #444;
  padding: 1vw;
  transition: transform 0.3s ease;
}
.tspp-item:hover {
  transform: translateY(-0.3vw);
}
.tspp-item p {
  font-size: 0.9vw;
  color: #cccccc;
  line-height: 1.4;
}
.tspp-item p strong {
  color: #ff9999;
}
.tspp-item .rating {
  color: #ffd700;
  margin-bottom: 0.5vw;
}
.tspp-casino {
  background: linear-gradient(90deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  padding: 2vw 1.5vw;
  color: #cccccc;
  font-size: 0.85vw;
  border-top: 0.2vw solid #ff6600;
  box-shadow: 0 -0.3vw 0.8vw rgba(255, 102, 0, 0.2);
  margin-top: 3vw;
}
.tspp-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  justify-content: center;
  margin-bottom: 1.5vw;
}
.tspp-top a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 0.9vw;
}
.tspp-top a:hover {
  color: #ffaa00;
  text-shadow: 0 0 0.4vw rgba(255, 170, 0, 0.5);
}
.tspp-warning {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
  gap: 1.5vw;
  background: rgba(30, 30, 30, 0.9);
  padding: 1.5vw;
  border-radius: 0.7vw;
  border: 0.1vw solid #333;
  margin-bottom: 1.5vw;
}
.tspp-warning h3 {
  color: #ff6600;
  font-size: 1vw;
  margin-bottom: 0.8vw;
  text-shadow: 0 0 0.4vw rgba(255, 102, 0, 0.5);
}
.tspp-warning p {
  line-height: 1.5;
  font-size: 0.85vw;
}
.tspp-legal {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.8vw;
  color: #bbbbbb;
  padding: 0 1vw;
}
.tspp-18plus {
  background: #fff;
  color: #8b0000;
  display: inline-block;
  padding: 0.25vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.7vw;
  margin-bottom: 0.5vw;
}
.tspp-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 1.5vw;
}
.tspp-logos img {
  max-height: 2vw;
  filter: brightness(1.1);
  transition: transform 0.3s;
}
.tspp-logos img:hover {
  transform: scale(1.1);
}
.tspp-contact {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.85vw;
}
.tspp-contact a {
  color: #ffcc66;
  text-decoration: underline;
}
.tspp-bottom {
  text-align: center;
  font-size: 0.75vw;
  color: #999999;
  border-top: 0.1vw solid #333;
  padding-top: 0.8vw;
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .comments-section {
    max-width: 90vw;
  }
  .comments-header h2 {
    font-size: 2rem;
  }
  .comments-section p {
    font-size: 1rem;
  }
  .comments-grid {
    grid-template-columns: 1fr;
  }
  .tspp-item p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .comments-header h2 {
    font-size: 1.5rem;
  }
  .comments-section p {
    font-size: 0.9rem;
  }
  .tspp-item p {
    font-size: 0.9rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}
.banner {
  background: linear-gradient(90deg, #8b0000 0%, #ff4500 50%, #8b0000 100%);
  padding: 0.5vw 1.5vw;
  text-align: center;
  font-size: 0.8vw;
  border-bottom: 0.15vw solid #ff6600;
}
.age-symbol {
  background: #ffffff;
  color: #8b0000;
  padding: 0.15vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 0.7vw;
  font-size: 0.7vw;
}
.age-text a {
  color: #ffdd44;
  text-decoration: underline;
}
header {
  position: relative;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(0.7vw);
  border-bottom: 0.07vw solid #333;
}
.domain {
  font-size: 1.8vw;
  font-weight: bold;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2.2vw;
}
nav a {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
nav a:hover {
  color: #ff6600;
  text-shadow: 0 0 0.6vw rgba(255, 102, 0, 0.6);
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -0.35vw;
  left: 0;
  width: 0;
  height: 0.15vw;
  background: linear-gradient(90deg, #ff6600, #ffaa00);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.disclosure-section {
  margin-top: 3vw;
  padding: 2vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.disclosure-section h2 {
  font-size: 2.6vw;
  color: #ffffff;
  margin-bottom: 1.5vw;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
.disclosure-section p {
  font-size: 0.9vw;
  color: #cccccc;
  margin-bottom: 2vw;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
}
.btn-revenir {
  display: inline-block;
  padding: 0.8vw 2vw;
  background: #ff6600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.5vw;
  font-size: 1vw;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
}
.btn-revenir:hover {
  background: #ff8800;
  transform: scale(1.05);
}
.tspp-casino {
  background: linear-gradient(90deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  padding: 2vw 1.5vw;
  color: #cccccc;
  font-size: 0.85vw;
  border-top: 0.2vw solid #ff6600;
  box-shadow: 0 -0.3vw 0.8vw rgba(255, 102, 0, 0.2);
  margin-top: 3vw;
}
.tspp-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  justify-content: center;
  margin-bottom: 1.5vw;
}
.tspp-top a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 0.9vw;
}
.tspp-top a:hover {
  color: #ffaa00;
  text-shadow: 0 0 0.4vw rgba(255, 170, 0, 0.5);
}
.tspp-warning {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
  gap: 1.5vw;
  background: rgba(30, 30, 30, 0.9);
  padding: 1.5vw;
  border-radius: 0.7vw;
  border: 0.1vw solid #333;
  margin-bottom: 1.5vw;
}
.tspp-warning h3 {
  color: #ff6600;
  font-size: 1vw;
  margin-bottom: 0.8vw;
  text-shadow: 0 0 0.4vw rgba(255, 102, 0, 0.5);
}
.tspp-warning p {
  line-height: 1.5;
  font-size: 0.85vw;
}
.tspp-legal {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.8vw;
  color: #bbbbbb;
  padding: 0 1vw;
}
.tspp-18plus {
  background: #fff;
  color: #8b0000;
  display: inline-block;
  padding: 0.25vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.7vw;
  margin-bottom: 0.5vw;
}
.tspp-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 1.5vw;
}
.tspp-logos img {
  max-height: 2vw;
  filter: brightness(1.1);
  transition: transform 0.3s;
}
.tspp-logos img:hover {
  transform: scale(1.1);
}
.tspp-contact {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.85vw;
}
.tspp-contact a {
  color: #ffcc66;
  text-decoration: underline;
}
.tspp-bottom {
  text-align: center;
  font-size: 0.75vw;
  color: #999999;
  border-top: 0.1vw solid #333;
  padding-top: 0.8vw;
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .disclosure-section {
    max-width: 90vw;
  }
  .disclosure-section h2 {
    font-size: 2rem;
  }
  .disclosure-section p {
    font-size: 1rem;
  }
  .btn-revenir {
    font-size: 1rem;
    padding: 1vw 2vw;
  }
}
@media (max-width: 480px) {
  .banner {
    font-size: 12px;
    padding: 6px 10px;
  }
  .age-symbol {
    font-size: 10px;
    padding: 2px 6px;
  }
}
@media (max-width: 480px) {
  .banner {
    font-size: 10px;
  }
  .age-symbol {
    font-size: 0.6rem;
  }
  .header-content {
    padding: 15px;
  }
  .domain {
    font-size: 1.5rem;
  }
  .disclosure-section h2 {
    font-size: 1.5rem;
  }
  .disclosure-section p {
    font-size: 0.9rem;
  }
  .btn-revenir {
    font-size: 0.9rem;
    padding: 0.8vw 1.5vw;
  }
}
.disclosure-section {
  max-width: 50vw;
  margin: 4vw auto;
  background: rgba(26, 26, 26, 0.95);
  padding: 2.5vw;
  border-radius: 1vw;
  border: 0.15vw solid #333;
  text-align: center;
  box-shadow: 0 0 2vw rgba(255, 102, 0, 0.1);
}
.disclosure-section h2 {
  font-size: 1.8vw;
  color: #fff;
  margin-bottom: 1.5vw;
  text-shadow: 0 0 1vw rgba(255, 102, 0, 0.4);
}
.disclosure-section p {
  font-size: 0.95vw;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 2vw;
}
.btn-revenir {
  display: inline-block;
  padding: 0.9vw 2vw;
  background: linear-gradient(135deg, #ff4500, #ff8800);
  color: #fff;
  text-decoration: none;
  border-radius: 0.5vw;
  font-size: 0.95vw;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0.2vw 0.5vw rgba(255, 102, 0, 0.3);
}
.btn-revenir:hover {
  background: linear-gradient(135deg, #ff6600, #ffaa00);
  transform: scale(1.05);
}
.about-section {
  max-width: 70vw;
  margin: 4vw auto;
  padding: 2vw;
  background: rgba(26, 26, 26, 0.95);
  border: 0.1vw solid #333;
  border-radius: 1vw;
  box-shadow: 0 0 1.5vw rgba(255, 102, 0, 0.2);
}
.about-text {
  text-align: center;
  margin-bottom: 3vw;
}
.about-text h1 {
  font-size: 2.2vw;
  color: #ff6600;
  margin-bottom: 1.5vw;
  text-shadow: 0 0 0.6vw rgba(255, 102, 0, 0.4);
}
.about-text p {
  font-size: 0.95vw;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5vw;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.4);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12vw, 1fr));
  gap: 2vw;
  justify-content: center;
}
.team-member {
  text-align: center;
  background: rgba(40, 40, 40, 0.9);
  border-radius: 0.8vw;
  padding: 1.5vw 1vw;
  border: 0.1vw solid #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 0 1vw rgba(255, 102, 0, 0.3);
}
.team-member img {
  width: 100%;
  max-height: 14vw;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1vw;
}
.team-member h3 {
  color: #ffaa00;
  font-size: 1.2vw;
  margin-bottom: 0.5vw;
}
.team-member p {
  color: #cccccc;
  font-size: 0.9vw;
  margin: 0;
}
.about-section {
  max-width: 60vw;
  margin: 4vw auto;
  padding: 2vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.7vw;
  border: 0.1vw solid #333;
  box-shadow: 0 0 1.2vw rgba(255, 102, 0, 0.1);
}
.about-text {
  text-align: left;
}
.about-text h1 {
  font-size: 1.2vw;
  color: #ffaa00;
  margin-bottom: 1.5vw;
  text-shadow: 0 0 0.5vw rgba(255, 102, 0, 0.4);
}
.about-text h2 {
  font-size: 1.4vw;
  color: #ff6600;
  margin: 2vw 0 1vw;
  text-shadow: 0 0 0.4vw rgba(255, 102, 0, 0.3);
}
.about-text p {
  font-size: 0.9vw;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1vw;
  text-shadow: 0 0.1vw 0.2vw rgba(0, 0, 0, 0.4);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}
.banner {
  background: linear-gradient(90deg, #8b0000 0%, #ff4500 50%, #8b0000 100%);
  padding: 0.5vw 1.5vw;
  text-align: center;
  font-size: 0.8vw;
  border-bottom: 0.15vw solid #ff6600;
}
.age-symbol {
  background: #ffffff;
  color: #8b0000;
  padding: 0.15vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 0.7vw;
  font-size: 0.7vw;
}
.age-text a {
  color: #ffdd44;
  text-decoration: underline;
}
header {
  position: relative;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(0.7vw);
  border-bottom: 0.07vw solid #333;
}
.domain {
  font-size: 1.8vw;
  font-weight: bold;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2.2vw;
}
nav a {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
nav a:hover {
  color: #ff6600;
  text-shadow: 0 0 0.6vw rgba(255, 102, 0, 0.6);
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -0.35vw;
  left: 0;
  width: 0;
  height: 0.15vw;
  background: linear-gradient(90deg, #ff6600, #ffaa00);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.terms-section {
  margin-top: 3vw;
  padding: 2vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}
.terms-section h2 {
  font-size: 2.2vw;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
  margin-bottom: 1.5vw;
  text-align: center;
}
.terms-section h3 {
  font-size: 1.5vw;
  color: #ff6600;
  text-shadow: 0 0 0.4vw rgba(255, 102, 0, 0.5);
  margin-top: 1.5vw;
  margin-bottom: 1vw;
}
.terms-section h4 {
  font-size: 1.2vw;
  color: #ff8800;
  text-shadow: 0 0 0.3vw rgba(255, 136, 0, 0.5);
  margin-top: 1vw;
  margin-bottom: 0.5vw;
}
.terms-section p {
  font-size: 0.9vw;
  color: #cccccc;
  margin-bottom: 1vw;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
}
.terms-section p strong {
  color: #ff9999;
}
.terms-section ul {
  list-style-type: disc;
  margin-left: 2vw;
  margin-bottom: 1vw;
}
.terms-section ul li {
  font-size: 0.9vw;
  color: #cccccc;
  margin-bottom: 0.5vw;
}
.terms-section a {
  color: #ffcc66;
  text-decoration: underline;
  transition: color 0.3s;
}
.terms-section a:hover {
  color: #ffaa00;
  text-shadow: 0 0 0.4vw rgba(255, 170, 0, 0.5);
}
.tspp-casino {
  background: linear-gradient(90deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
  padding: 2vw 1.5vw;
  color: #cccccc;
  font-size: 0.85vw;
  border-top: 0.2vw solid #ff6600;
  box-shadow: 0 -0.3vw 0.8vw rgba(255, 102, 0, 0.2);
  margin-top: 3vw;
}
.tspp-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  justify-content: center;
  margin-bottom: 1.5vw;
}
.tspp-top a {
  color: #ffcc66;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 0.9vw;
}
.tspp-top a:hover {
  color: #ffaa00;
  text-shadow: 0 0 0.4vw rgba(255, 170, 0, 0.5);
}
.tspp-warning {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
  gap: 1.5vw;
  background: rgba(30, 30, 30, 0.9);
  padding: 1.5vw;
  border-radius: 0.7vw;
  border: 0.1vw solid #333;
  margin-bottom: 1.5vw;
}
.tspp-responsible,
.tspp-dependence,
.tspp-aide {
  padding: 0.5vw;
}
.tspp-warning h3 {
  color: #ff6600;
  font-size: 1vw;
  margin-bottom: 0.8vw;
  text-shadow: 0 0 0.4vw rgba(255, 102, 0, 0.5);
}
.tspp-warning p {
  line-height: 1.5;
  font-size: 0.85vw;
}
.tspp-legal {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.8vw;
  color: #bbbbbb;
  padding: 0 1vw;
}
.tspp-18plus {
  background: #fff;
  color: #8b0000;
  display: inline-block;
  padding: 0.25vw 0.6vw;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.7vw;
  margin-bottom: 0.5vw;
}
.tspp-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 1.5vw;
}
.tspp-logos a {
  text-decoration: none;
}
.tspp-logos img {
  max-height: 2vw;
  filter: brightness(1.1);
  transition: transform 0.3s;
}
.tspp-logos img:hover {
  transform: scale(1.1);
}
.tspp-contact {
  text-align: center;
  margin-bottom: 1.5vw;
  font-size: 0.85vw;
}
.tspp-contact a {
  color: #ffcc66;
  text-decoration: underline;
}
.tspp-bottom {
  text-align: center;
  font-size: 0.75vw;
  color: #999999;
  border-top: 0.1vw solid #333;
  padding-top: 0.8vw;
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .terms-section {
    max-width: 90vw;
  }
  .terms-section h2 {
    font-size: 2rem;
  }
  .terms-section h3 {
    font-size: 1.2rem;
  }
  .terms-section h4 {
    font-size: 1rem;
  }
  .terms-section p,
  .terms-section ul li {
    font-size: 1rem;
  }
  .tspp-warning {
    grid-template-columns: 1fr;
  }
  .tspp-warning h3 {
    font-size: 0.9rem;
  }
  .tspp-warning p {
    font-size: 0.8rem;
  }
  .tspp-logos img {
    max-height: 1.5rem;
  }
}
@media (max-width: 480px) {
  .banner {
    font-size: 10px;
  }
  .age-symbol {
    font-size: 0.6rem;
  }
  .header-content {
    padding: 15px;
  }
  .domain {
    font-size: 1.5rem;
  }
  .terms-section h2 {
    font-size: 1.5rem;
  }
  .terms-section h3 {
    font-size: 1rem;
  }
  .terms-section h4 {
    font-size: 0.9rem;
  }
  .terms-section p,
  .terms-section ul li {
    font-size: 0.9rem;
  }
  .tspp-top a {
    font-size: 0.8rem;
  }
  .tspp-warning h3 {
    font-size: 0.7rem;
  }
  .tspp-warning p {
    font-size: 0.65rem;
  }
  .tspp-logos img {
    max-height: 1.2rem;
  }
  .tspp-contact {
    font-size: 0.7rem;
  }
}
.responsible-section {
  margin-top: 3vw;
  padding: 2vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}
.responsible-section h2 {
  font-size: 2.6vw;
  color: #ff6600;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
  margin-bottom: 1.5vw;
  text-align: center;
}
.responsible-section h3 {
  font-size: 1.5vw;
  color: #ff6600;
  text-shadow: 0 0 0.4vw rgba(255, 102, 0, 0.5);
  margin-top: 1.5vw;
  margin-bottom: 1vw;
}
.responsible-section p {
  font-size: 0.9vw;
  color: #cccccc;
  margin-bottom: 1vw;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
}
.responsible-section p strong {
  color: #ff9999;
}
@media (max-width: 768px) {
  .responsible-section {
    max-width: 90vw;
  }
  .responsible-section h2 {
    font-size: 2rem;
  }
  .responsible-section h3 {
    font-size: 1.2rem;
  }
  .responsible-section p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .responsible-section h2 {
    font-size: 1.5rem;
  }
  .responsible-section p {
    font-size: 0.9rem;
  }
}
.tspp-form {
  margin-top: 2vw;
  padding: 1vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.4vw;
  border: 0.1vw solid #333;
  max-width: 50vw;
  margin-left: auto;
  margin-right: auto;
}
.tspp-form h2 {
  font-size: 1.4vw;
  color: #ff6600;
  margin-bottom: 1vw;
  text-shadow: 0 0 0.5vw rgba(255, 102, 0, 0.5);
}
.tspp-form p {
  font-size: 0.8vw;
  color: #cccccc;
  margin-bottom: 1vw;
  text-shadow: 0 0.1vw 0.2vw rgba(0, 0, 0, 0.5);
}
.tspp-form form {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.form-row {
  display: flex;
  gap: 1vw;
  width: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.left {
  flex: 1;
}
.form-group.right {
  flex: 2;
}
.form-group label {
  font-size: 0.8vw;
  color: #cccccc;
  margin-bottom: 0.3vw;
  text-shadow: 0 0.1vw 0.2vw rgba(0, 0, 0, 0.5);
}
.form-group input,
.form-group textarea {
  background: rgba(40, 40, 40, 0.9);
  border: 0.1vw solid #444;
  border-radius: 0.4vw;
  padding: 0.6vw;
  color: #ffffff;
  font-size: 0.8vw;
  transition: border-color 0.3s ease;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6600;
  outline: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 6vw;
}
.btn-envoyer {
  padding: 0.6vw 1.2vw;
  background: linear-gradient(135deg, #ff4500, #ff8800);
  color: #fff;
  text-decoration: none;
  border-radius: 0.4vw;
  font-size: 0.9vw;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}
.btn-envoyer:hover {
  background: linear-gradient(135deg, #ff6600, #ffaa00);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .tspp-form {
    max-width: 80vw;
    margin-top: 3vw;
  }
  .tspp-form h2 {
    font-size: 1.2rem;
  }
  .tspp-form p {
    font-size: 0.9rem;
  }
  .form-row {
    flex-direction: column;
  }
  .form-group.left,
  .form-group.right {
    flex: auto;
    width: 100%;
  }
  .form-group label {
    font-size: 0.9rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
  .btn-envoyer {
    font-size: 0.9rem;
    align-self: center;
    padding: 0.8rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .tspp-form {
    max-width: 90vw;
  }
  .tspp-form h2 {
    font-size: 1rem;
  }
  .tspp-form p {
    font-size: 0.8rem;
  }
  .form-group label {
    font-size: 0.8rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 0.8rem;
    padding: 0.6rem;
  }
  .btn-envoyer {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
}
.thank-you-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #0c0101;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.thank-you-section h2 {
  color: #222;
  margin-bottom: 15px;
}
.thank-you-section p {
  font-size: 1.1em;
  color: #555;
}
.thank-you-section {
  margin-top: 3vw;
  padding: 2vw;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 0.5vw;
  border: 0.1vw solid #333;
  max-width: 50vw;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow: 0 0 1vw rgba(255, 102, 0, 0.1);
  transition: transform 0.3s ease;
}
.thank-you-section:hover {
  transform: translateY(-0.5vw);
  box-shadow: 0 0 1.5vw rgba(255, 102, 0, 0.2);
}
.thank-you-section h2 {
  font-size: 1.8vw;
  color: #ff6600;
  margin-bottom: 1.5vw;
  text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
}
.thank-you-section p {
  font-size: 0.9vw;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5vw;
  text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
}
.alpha-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vw 4vw;
  position: relative;
}
.alpha-logo {
  font-size: 3vw;
  font-weight: bold;
  color: white;
}
#alpha-burger-toggle {
  display: none;
}
.alpha-burger-icon {
  font-size: 8vw;
  cursor: pointer;
  display: none;
  color: white;
}
.alpha-nav {
  display: flex;
  gap: 2vw;
}
.alpha-nav ul {
  display: flex;
  gap: 4vw;
  list-style: none;
}
.alpha-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2vw;
}
@media (max-width: 768px) {
  .alpha-burger-icon {
    display: block;
    z-index: 1500;
    position: fixed;
    right: 2vw;
  }

  .about-section {
    max-width: 90vw;
  }
  .about-text p {
    font-size: 4vw;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1vw;
    text-shadow: 0 0.1vw 0.2vw rgba(0, 0, 0, 0.4);
  }
  .about-text h1 {
    font-size: 5vw;
    color: #ffaa00;
    margin-bottom: 1.5vw;
    text-shadow: 0 0 0.5vw rgba(255, 102, 0, 0.4);
  }
  .about-text h2 {
    font-size: 5vw;
  }
  .hero-content {
    max-width: 90vw;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .btn-obtenir {
    display: inline-block;
    padding: 0.8vw 1.5vw;
    background: linear-gradient(135deg, #ff4500, #ff8800);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5vw;
    font-size: 4vw;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-bottom: 1vw;
  }
  .tspp-warning h3 {
    font-size: 5vw;
  }
  .tspp-warning p {
    font-size: 4vw;
  }
  .tspp-18plus {
    background: #fff;
    color: #8b0000;
    display: inline-block;
    padding: 0.25vw 0.6vw;
    border-radius: 50%;
    font-weight: bold;
    font-size: 5.7vw;
    margin-bottom: 0.5vw;
  }
  .tspp-logos img {
    max-height: 14vw;
  }
  .tspp-bottom {
    text-align: center;
    font-size: 2.75vw;
    color: #999999;
    border-top: 0.1vw solid #333;
    padding-top: 0.8vw;
  }
  .form-group input,
  .form-group textarea {
    font-size: 5vw;
    padding: 1vw 2vw;
  }
  .tspp-item img {
    width: 45%;
    height: auto;
    border-radius: 0.3vw;
  }
  .disclosure-section {
    max-width: 75vw;
    margin: 4vw auto;
    background: rgba(26, 26, 26, 0.95);
    padding: 2.5vw;
    border-radius: 1vw;
    border: 0.15vw solid #333;
    text-align: center;
    box-shadow: 0 0 2vw rgba(255, 102, 0, 0.1);
  }
  .disclosure-section h2 {
    font-size: 5.8vw;
    color: #fff;
    margin-bottom: 1.5vw;
    text-shadow: 0 0 1vw rgba(255, 102, 0, 0.4);
  }
  .disclosure-section p {
    font-size: 3.95vw;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2vw;
  }
  .btn-revenir {
    display: inline-block;
    padding: 0.9vw 2vw;
    background: linear-gradient(135deg, #ff4500, #ff8800);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5vw;
    font-size: 2.95vw;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0.2vw 0.5vw rgba(255, 102, 0, 0.3);
  }
  .tspp-legal {
    text-align: center;
    margin-bottom: 1.5vw;
    font-size: 3.8vw;
    color: #bbbbbb;
    padding: 0 1vw;
  }
  .terms-section ul {
    list-style-type: disc;
    margin-left: 5vw;
    margin-bottom: 1vw;
  }
  .thank-you-section {
    margin-top: 3vw;
    padding: 2vw;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 0.5vw;
    border: 0.1vw solid #333;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 0 1vw rgba(255, 102, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .thank-you-section h2 {
    font-size: 5.8vw;
    color: #ff6600;
    margin-bottom: 1.5vw;
    text-shadow: 0 0 0.7vw rgba(255, 102, 0, 0.5);
  }
  .thank-you-section p {
    font-size: 3.9vw;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5vw;
    text-shadow: 0 0.15vw 0.3vw rgba(0, 0, 0, 0.5);
  }
  .tspp-item {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 0.5vw;
    padding: 1vw;
    text-align: center;
    border: 0.1vw solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .alpha-nav {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0a0a0a;
    width: 100vw;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  #alpha-burger-toggle:checked ~ .alpha-nav {
    transform: translateX(0);
  }
  .alpha-nav ul {
    flex-direction: column;
    gap: 6vw;
  }
  .alpha-nav a {
    font-size: 6vw;
  }
  .alpha-logo {
    font-size: 5vw;
    font-weight: bold;
    color: white;
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(46vw, 1fr));
    gap: 2vw;
    justify-content: center;
  }
  .team-member img {
    width: 53%;
    max-height: 48vw;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1vw;
  }
  .team-member h3 {
    color: #ffaa00;
    font-size: 5.2vw;
    margin-bottom: 0.5vw;
  }
  .team-member p {
    color: #cccccc;
    font-size: 4.9vw;
    margin: 0;
  }
}
