* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Orbitron", "Courier New", monospace;
  background: linear-gradient(135deg, #0a0a1a 10%, #1e1e3a 50%, #2a2a4d 100%);
  color: #00ffcc;
  line-height: 1.6;
  overflow-x: hidden;
}
.tc-container {
  padding: 1vw 5vw 1vw 5vw;
  margin: 0 auto;
}
.tc-top-warning {
  background: linear-gradient(135deg, #0a0a1a 0%, #1e1e3a 50%, #2a2a4d 100%);
  color: #fff;
  font-size: 0.9vw;
  padding: 0.6vw 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 0, 128, 0.4);
  font-family: "Orbitron", sans-serif;
}
.tc-age-circle {
  background-color: #ff007f;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  padding: 0.3vw 0.7vw;
  margin-right: 1vw;
  font-size: 1.2vw;
  box-shadow: 0 0 5px #ff007f;
}
.tc-top-text a {
  color: #bbb;
  text-decoration: none;
  font-weight: bold;
}
.tc-top-text a:hover {
  color: #fff;
  text-shadow: 0 0 5px #ff007f;
}
header {
  background: linear-gradient(90deg, #0a0a1a 0%, #1e1e3a 50%, #0a0a1a 100%);
  border-bottom: 2px solid #00ffcc;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
  position: relative;
  overflow: hidden;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 255, 204, 0.1),
    transparent
  );
  animation: scan 4s infinite;
}
.tc-container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 3vw;
}
.tc-logo {
  font-size: 2.5vw;
  font-weight: bold;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
  letter-spacing: 0.3vw;
}
.tc-nav-links {
  display: flex;
  list-style: none;
  gap: 1.5vw;
}
.tc-nav-links a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}
.tc-nav-links a:hover {
  color: #ff00ff;
  text-shadow: 0 0 15px #ff00ff;
}
.tc-hero {
  background: linear-gradient(45deg, #0a0a1a, #1e1e3a, #0a0a1a);
  padding: 5vw 0;
  position: relative;
  border-bottom: 1px solid #00ffcc;
}
.tc-hero h1 {
  font-size: 4vw;
  color: #ff00ff;
  text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff;
  margin-bottom: 1.5vw;
  animation: pulse 2s infinite alternate;
}
.tc-hero p {
  font-size: 1.3vw;
  color: #00ffcc;
}
.tc-main-content {
  padding: 5vw 0;
}
.tc-section {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  background: rgba(10, 10, 26, 0.9);
  border: 1px solid #00ffcc;
  padding: 2vw 5vw;
  position: relative;
  overflow: hidden;
}
.tc-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00ffcc, #ff00ff, #00ffcc);
  animation: borderGlow 3s infinite;
}
.tc-section h2 {
  color: #ff00ff;
  font-size: 2.3vw;
  margin-bottom: 2vw;
  text-transform: uppercase;
  letter-spacing: 0.2vw;
  text-shadow: 0 0 10px #ff00ff;
}
.tc-section p {
  margin-bottom: 1.5rem;
  color: #99ffcc;
  font-size: 1.2rem;
}
.tc-casino-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
}
.tc-casino-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #1a1a2e, #2e2e4a);
  border: 2px solid #ff00ff;
  border-radius: 1vw;
  padding: 1.5vw;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.tc-casino-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}
.tc-casino-logo img {
  width: 12vw;
  height: auto;
  filter: drop-shadow(0 0 5px #ff00ff);
}
.tc-casino-info {
  margin: 1vw 0;
}
.tc-casino-rank {
  position: absolute;
  top: -1vw;
  left: -1vw;
  background: #ff00ff;
  color: #fff;
  padding: 0.5vw 1vw;
  border-radius: 50%;
  font-weight: bold;
  text-shadow: 0 0 5px #fff;
}
.tc-casino-rating {
  color: #ffd700;
  font-size: 1.2em;
}
.tc-casino-rating span {
  color: #99ffcc;
  font-size: 0.9em;
}
.tc-casino-offer {
  font-size: 1.1em;
  color: #fff;
  margin: 0.5vw 0;
}
.tc-casino-online {
  color: #00ffcc;
  font-size: 1em;
}
.tc-casino-cta {
  margin-top: 1vw;
}
.tc-casino-btn {
  background: #ff00ff;
  color: #fff;
  padding: 0.8vw 1.5vw;
  text-decoration: none;
  border-radius: 0.5vw;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.tc-casino-btn:hover {
  background: #cc00cc;
}
.tc-feature-tags {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.tc-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: 2px solid #ff00ff;
  border-radius: 50px;
  background: #1a1a2e;
  font-size: 1.1rem;
  color: #00ffcc;
  transition: all 0.3s ease;
}
.tc-tag:hover {
  background: #ff00ff;
  color: #fff;
  transform: scale(1.05);
}
.tc-tag-icon {
  font-size: 1.3rem;
}
.tc-reviews {
  margin-top: 5vw;
}
.tc-header-group {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  margin-bottom: 1.5vw;
}
.tc-subtitle {
  font-size: 1.5vw;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  margin: 0;
}
.tc-description {
  font-size: 1.1vw;
  color: #99ffcc;
  margin-bottom: 2vw;
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
}
.tc-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  margin-bottom: 2vw;
}
.tc-review-card {
  background: linear-gradient(135deg, #1a1a2e, #2e2e4a);
  border: 0.2vw solid #ff00ff;
  border-radius: 1vw;
  padding: 1.5vw;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tc-review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}
.tc-review-avatar img {
  width: 9vw;
  height: auto;
  max-height: 100%;
  border-radius: 10%;
}
.tc-review-author {
  font-size: 1.2vw;
  color: #ff00ff;
  margin-bottom: 0.5vw;
  text-shadow: 0 0 5px #ff00ff;
}
.tc-review-rating {
  font-size: 1.1vw;
  color: #ffd700;
  margin-bottom: 1vw;
}
.tc-review-text {
  font-size: 1vw;
  color: #99ffcc;
  line-height: 1.4;
}
.tc-view-all-btn {
  display: inline-block;
  background: #ff00ff;
  color: #fff;
  padding: 0.8vw 1.5vw;
  text-decoration: none;
  border-radius: 0.5vw;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.tc-view-all-btn:hover {
  background: #cc00cc;
}
.tc-faq {
  margin-top: 5vw;
}
.tc-header-group {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-bottom: 1.5vw;
}
.tc-subtitle {
  font-size: 1.5vw;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  margin: 0;
}
.tc-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.tc-faq-card {
  background: linear-gradient(135deg, #1a1a2e, #2e2e4a);
  border: 2px solid #ff00ff;
  border-radius: 1vw;
  padding: 1.5vw;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.tc-faq-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}
.tc-faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00ffcc, #ff00ff, #00ffcc);
  animation: borderGlow 3s infinite;
}
.tc-faq-question {
  font-size: 1.2vw;
  color: #ff00ff;
  margin: 0;
  text-shadow: 0 0 5px #ff00ff;
  cursor: pointer;
  list-style: none;
}
.tc-faq-question::-webkit-details-marker {
  display: none;
}
.tc-faq-question::before {
  content: "+";
  color: #ff00ff;
  font-size: 1.5vw;
  margin-right: 1vw;
  transition: transform 0.3s ease;
}
.tc-faq-card[open] .tc-faq-question::before {
  content: "−";
  color: #cc00cc;
}
.tc-faq-answer {
  font-size: 1vw;
  color: #99ffcc;
  margin-top: 1vw;
  line-height: 1.4;
  padding-top: 1vw;
  border-top: 1px dashed #00ffcc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.tc-faq-card[open] .tc-faq-answer {
  max-height: 300px;
  padding: 1vw 0;
}
.tc-view-all-btn {
  display: inline-block;
  background: #ff00ff;
  color: #fff;
  padding: 0.8vw 1.5vw;
  text-decoration: none;
  border-radius: 0.5vw;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.tc-view-all-btn:hover {
  background: #cc00cc;
}
.tc-testimonials {
  margin-top: 5vw;
}
.tc-header-group {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-bottom: 1.5vw;
}
.tc-subtitle {
  font-size: 1.5vw;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  margin: 0;
}
.tc-description {
  font-size: 1.1vw;
  color: #99ffcc;
  margin-bottom: 2vw;
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
}
.tc-testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.tc-testimonial-card {
  background: linear-gradient(135deg, #1a1a2e, #2e2e4a);
  border: 2px solid #ff00ff;
  border-radius: 1vw;
  padding: 1.5vw;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.tc-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}
.tc-testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00ffcc, #ff00ff, #00ffcc);
  animation: borderGlow 3s infinite;
}
.tc-testimonial-question {
  font-size: 1.2vw;
  color: #ff00ff;
  margin: 0;
  text-shadow: 0 0 5px #ff00ff;
  cursor: pointer;
  list-style: none;
}
.tc-testimonial-question::-webkit-details-marker {
  display: none;
}
.tc-testimonial-question::before {
  content: "+";
  color: #ff00ff;
  font-size: 1.5vw;
  margin-right: 1vw;
  transition: transform 0.3s ease;
}
.tc-testimonial-card[open] .tc-testimonial-question::before {
  content: "−";
  color: #cc00cc;
}
.tc-testimonial-answer {
  font-size: 1vw;
  color: #99ffcc;
  margin-top: 1vw;
  line-height: 1.4;
  padding-top: 1vw;
  border-top: 1px dashed #00ffcc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.tc-testimonial-card[open] .tc-testimonial-answer {
  max-height: 300px;
  padding: 1vw 0;
}
.tc-view-all-btn {
  display: inline-block;
  background: #ff00ff;
  color: #fff;
  padding: 0.8vw 1.5vw;
  text-decoration: none;
  border-radius: 0.5vw;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.tc-view-all-btn:hover {
  background: #cc00cc;
}
.tc-contact {
  margin-top: 5vw;
}
.tc-container {
  margin-left: auto;
  margin-right: auto;
}
.tc-contact h2 {
  font-size: 2vw;
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
  margin-bottom: 1.5vw;
}
.tc-contact p {
  font-size: 1.1vw;
  color: #99ffcc;
  margin-bottom: 2vw;
}
.tc-form-group {
  margin-bottom: 1.5vw;
}
.tc-form-group label {
  display: block;
  font-size: 1.1vw;
  color: #ff00ff;
  margin-bottom: 0.5vw;
}
.tc-form-group input,
.tc-form-group textarea {
  width: 100%;
  padding: 0.8vw;
  font-size: 1vw;
  border: 2px solid #ff00ff;
  border-radius: 0.5vw;
  background-color: #1a1a2e;
  color: #99ffcc;
  box-sizing: border-box;
}
.tc-form-group textarea {
  resize: vertical;
}
.tc-submit-btn {
  background-color: #ff00ff;
  color: #fff;
  padding: 0.8vw 1.5vw;
  border: none;
  border-radius: 0.5vw;
  font-size: 1.1vw;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.tc-submit-btn:hover {
  background-color: #cc00cc;
  text-decoration: none;
}
.tc-footer {
  background: linear-gradient(90deg, #0a0a1a 0%, #1e1e3a 50%, #0a0a1a 100%);
  padding: 3vw 2vw;
  border-top: 2px solid #ff00ff;
  box-shadow: 0 -5px 15px rgba(255, 0, 255, 0.2);
  font-size: 1vw;
  color: #ccc;
  font-family: Arial, sans-serif;
}
.tc-footer-links ul {
  display: flex;
  justify-content: center;
  gap: 2vw;
  padding: 0;
  margin: 0 0 2vw 0;
  list-style: none;
  flex-wrap: wrap;
}
.tc-footer-links ul li a {
  color: #99ffcc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.tc-footer-links ul li a:hover {
  color: #ff00ff;
}
.tc-footer-columns {
  display: flex;
  gap: 4vw;
  flex-wrap: wrap;
  margin-bottom: 2vw;
  padding: 1vw 6vw;
}
.tc-footer-columns > div {
  flex: 1 1 300px;
}
.tc-footer-columns h3 {
  color: #ff00ff;
  margin-bottom: 0.5vw;
  font-size: 1.2vw;
}
.tc-footer-columns p {
  line-height: 1.4;
  font-size: 1vw;
  color: #ccc;
}
.tc-footer-columns2 {
  text-align: center;
  margin-bottom: 2vw;
  font-size: 1vw;
  color: #ccc;
  padding: 1vw 6vw;
}
.tc-footer-columns2 strong {
  color: #ff00ff;
}
.tc-footer-warning {
  background-color: #1a1a2e;
  padding: 2vw;
  border-radius: 1vw;
  border: 2px solid #ff00ff;
  text-align: center;
  color: #ff00ff;
  font-size: 1.1vw;
  margin: 2vw 0;
  margin-left: 6vw;
  margin-right: 6vw;
}
.tc-footer-age {
  margin: 0 auto 1vw auto;
}
.tc-footer-logos {
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin-top: 2vw;
  flex-wrap: wrap;
}
.tc-footer-logos img {
  height: 40px;
  filter: drop-shadow(0 0 5px #ff00ff);
  object-fit: contain;
}
.tc-footer-legal {
  text-align: center;
  color: #99ffcc;
  font-size: 0.9vw;
  border-top: 1px solid #00ffcc;
  padding-top: 1vw;
  margin-top: 2vw;
  line-height: 1.4;
}
.tc-footer-copy {
  text-align: center;
  color: #666;
  font-size: 0.8vw;
  margin-top: 1vw;
  font-style: italic;
}
.tc-return-button {
  display: inline-block;
  margin-top: 2vw;
  padding: 1vw 2vw;
  background-color: #ff00ff;
  color: #000;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  text-decoration: none;
  border-radius: 0.6vw;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 0 1vw rgba(255, 106, 0, 0.4);
  font-size: 1vw;
}
.tc-return-button:hover {
  background-color: #f0f;
  transform: scale(1.05);
}
.tc-team {
  margin-top: 5vw;
}
.tc-header-group {
  display: flex;
  align-items: center;
  gap: 2vw;
  margin-bottom: 1.5vw;
}
.tc-subtitle {
  font-size: 1.5vw;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  margin: 0;
}
.tc-description {
  font-size: 1.1vw;
  color: #99ffcc;
  margin-bottom: 2vw;
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
}
.tc-team-grid {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.tc-team-card {
  background: linear-gradient(135deg, #1a1a2e, #2e2e4a);
  border: 2px solid #ff00ff;
  border-radius: 1vw;
  padding: 1.5vw;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.tc-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}
.tc-team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00ffcc, #ff00ff, #00ffcc);
  animation: borderGlow 3s infinite;
}
.tc-team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #ff00ff;
  object-fit: cover;
  margin-bottom: 1vw;
}
.tc-team-name {
  font-size: 1.3vw;
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
  margin: 0 0 0.5vw;
}
.tc-team-role {
  font-size: 1.1vw;
  color: #00ffcc;
  margin: 0 0 1vw;
  text-transform: uppercase;
}
.tc-team-desc {
  font-size: 1vw;
  color: #99ffcc;
  line-height: 1.4;
  margin: 0;
}
.tc-view-all-btn {
  display: inline-block;
  background: #ff00ff;
  color: #fff;
  padding: 0.8vw 1.5vw;
  text-decoration: none;
  border-radius: 0.5vw;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.tc-view-all-btn:hover {
  background: #cc00cc;
}
.tc-container-policy {
  padding: 1vw 10vw;
}
.tc-container-policy h2 {
  color: #ff00ff;
}
.tc-container-policy ul {
  padding-left: 3vw;
}
.tc-hero .tc-container-policy p {
  font-size: 1.3vw;
  color: #00ffcc;
}
.thanks-section {
  padding: 3vw;
  display: flex;
  justify-content: center;
}
.alpha-thank-card {
  background: radial-gradient(circle at center, #1a1a3d 0%, #0d0b1f 100%);
  border: 2px solid #ff00ff;
  border-radius: 1.5vw;
  padding: 3vw;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
}
.alpha-thank-title {
  font-size: 2vw;
  font-weight: bold;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  margin-bottom: 1.5vw;
}
.alpha-thank-message {
  font-size: 1.1vw;
  color: #b3ffe0;
  margin-bottom: 2vw;
}
.alpha-thank-button {
  display: inline-block;
  padding: 1vw 2vw;
  font-size: 1vw;
  color: #000;
  background-color: #ff00ff;
  border: none;
  border-radius: 0.7vw;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.alpha-thank-button:hover {
  background-color: #e600e6;
}
@media (max-width: 768px) {
  .tc-nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  .tc-hero h1 {
    font-size: 8vw;
  }
  .tc-casino-list {
    grid-template-columns: 1fr;
  }
  .tc-logo {
    font-size: 1.5rem;
  }
  .tc-review-grid {
    grid-template-columns: 1fr;
  }
  .tc-subtitle {
    font-size: 1.2rem;
  }
  .tc-description {
    font-size: 1rem;
  }
  .tc-review-author {
    font-size: 1rem;
  }
  .tc-review-rating {
    font-size: 1rem;
  }
  .tc-review-text {
    font-size: 0.9rem;
  }
  .tc-header-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1vw;
  }
  .tc-faq-grid {
    gap: 1.5vw;
  }
  .tc-subtitle {
    font-size: 1.2rem;
  }
  .tc-description {
    font-size: 1rem;
  }
  .tc-header-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1vw;
  }
  .tc-testimonial-grid {
    gap: 1.5vw;
  }
  .tc-subtitle {
    font-size: 1.2rem;
  }
  .tc-description {
    font-size: 1rem;
  }
  .tc-view-all-btn {
    font-size: 0.9rem;
    padding: 0.6vw 1.2vw;
  }
  .tc-header-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1vw;
  }
  .tc-team-grid {
    gap: 1.5vw;
  }
  .tc-subtitle {
    font-size: 1.2rem;
  }
  .tc-team-avatar {
    width: 120px;
    height: 120px;
  }
  .tc-view-all-btn {
    font-size: 0.9rem;
    padding: 0.6vw 1.2vw;
  }
  .thanks-section {
    padding: 5vw 2vw;
  }
  .alpha-thank-card {
    padding: 6vw 4vw;
    border-radius: 3vw;
    max-width: 90vw;
  }
  .alpha-thank-title {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
  .alpha-thank-message {
    font-size: 4.2vw;
    margin-bottom: 6vw;
  }
  .alpha-thank-button {
    font-size: 4vw;
    padding: 3vw 6vw;
    border-radius: 2vw;
  }
  .tc-feature-tags {
    gap: 2vw;
    margin: 2.5vw 0;
  }
  .tc-tag {
    gap: 0.5vw;
    padding: 0.8vw 1vw;
    font-size: 3vw;
  }
  .tc-container p {
    font-size: 4vw;
  }
  .tc-top-warning {
    font-size: 3.1vw;
    padding: 0.6vw 2vw;
    gap: 2vw;
  }
  .tc-section h2 {
    font-size: 6.5vw;
  }
  .tc-faq-card {
    border: 2px solid #ff00ff;
    border-radius: 1vw;
    padding: 1.5vw;
  }
  .tc-faq-question {
    font-size: 4.4vw;
  }
  .tc-faq-card[open] .tc-faq-answer {
    font-size: 4vw;
  }
  .tc-form-group label {
    font-size: 4.4vw;
  }
  .tc-form-group input,
  .tc-form-group textarea {
    font-size: 5vw;
  }
  .tc-submit-btn {
    font-size: 5vw;
    padding: 1.5vw 4vw;
  }
  .tc-footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3vw;
    font-size: 4.4vw;
    padding-left: 0;
  }
  .tc-footer-links ul li {
    width: 100%;
  }
  .tc-footer-links ul li a {
    display: inline-block;
    width: 100%;
  }
  .tc-footer-columns h3 {
    font-size: 5vw;
  }
  .tc-footer-columns p {
    font-size: 3vw;
  }
  .tc-footer-warning {
    font-size: 3vw;
    margin: 2vw 0;
    margin-left: 6vw;
    margin-right: 6vw;
  }
  .tc-age-circle {
    font-size: 4vw;
  }
  .tc-footer-legal {
    font-size: 3vw;
  }
  .tc-footer-copy {
    font-size: 3vw;
  }
  .tc-footer-columns2 {
    text-align: center;
    margin-bottom: 2vw;
    font-size: 3vw;
    color: #ccc;
    padding: 1vw 6vw;
  }
  .tc-hero .tc-container-policy p {
    font-size: 4vw;
  }
  .tc-return-button {
    margin-top: 2vw;
    padding: 1.5vw 4vw;
    font-size: 4vw;
  }
}
.tc-burger-toggle {
  display: none;
}
.tc-burger-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 8vw;
  height: 6vw;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.tc-burger-label span {
  display: block;
  height: 0.8vw;
  background-color: #fff;
  border-radius: 1vw;
}
.tc-mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: #0a0a1a;
  z-index: 1000;
  padding: 10vw;
}
.tc-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.tc-mobile-menu ul li {
  margin: 4vw 0;
}
.tc-mobile-menu ul li a {
  font-size: 6vw;
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}
.tc-burger-toggle:checked + .tc-burger-label + .tc-mobile-menu {
  display: flex;
}
.tc-team-section {
  padding: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4vw;
}
.tc-team-member {
  text-align: center;
  color: #fff;
}
.tc-team-member img {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1vw;
}
.tc-team-member p {
  margin: 5px 0;
  font-size: 14px;
}
.tc-team-member .role {
  font-size: 12px;
  color: #ccc;
}
@media (max-width: 768px) {
  .tc-burger-label {
    display: flex;
  }
  .tc-nav-links {
    display: none !important;
  }
  .tc-team-member img {
    width: 20vw;
    height: 20vw;
  }
}
