/* TRWC Splash v3.2 styles (identical look to v3) */
html, body { height: 100%; margin: 0; }
.trwc-splash3-body {
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.trwc-splash3-container { position: relative; width: 100%; height: 100vh; }

.trwc-bg-video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; z-index: 1;
  opacity: 0; background-color: #000;
  transition: opacity 0.9s linear;
}
.trwc-bg-video.visible { opacity: 1; }

.trwc-overlay {
  position: relative; z-index: 2; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; background: rgba(0,0,0,0.2);
}

.trwc-title { font-size: clamp(28px, 5vw, 64px); letter-spacing: 0.08em; margin: 0 0 0.6rem; font-weight: 700; }
.trwc-tagline { max-width: 1100px; font-size: clamp(14px, 1.5vw, 22px); line-height: 1.5; margin: 0 0 2.2rem; }

.trwc-grid { display: grid; grid-template-columns: repeat(3, minmax(160px, 240px)); gap: 1rem; margin-bottom: 2rem; }
.trwc-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.2rem 1rem;
  border: 1px solid rgba(255,255,255,0.5); border-radius: 14px; text-decoration: none; color: #fff; background: rgba(0,0,0,0.25); }

.trwc-flag { font-size: clamp(24px, 3vw, 42px); margin-bottom: 0.4rem; }
.trwc-country { font-size: clamp(14px, 1.6vw, 18px); }

.trwc-social { display: flex; align-items: center; gap: 1rem; margin-top: 0.6rem; }
.trwc-social-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.5); border-radius: 999px; text-decoration: none; color: #fff; font-size: 14px; background: rgba(0,0,0,0.25); }
.trwc-social-link svg { display: block; }

@media (max-width: 720px) {
  .trwc-grid { grid-template-columns: 1fr; gap: 0.8rem; width: 90%; max-width: 400px; }
}
