/*
Theme Name: TG Landing
Theme URI: https://tigers-group.com
Author: TIGERS GROUP
Version: 1.2.0
Text Domain: tg-landing
*/

:root{
  --bg:#070707;
  --bg2:#0b0b0b;
  --text:#eaeaea;
  --muted:#a9a9a9;
  --line:#1a1a1a;
  --card:#0a0a0a;
  --card2:#070707;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;height:auto;display:block;}

.tg-landing{width:100%;}

/* Main section */
.tg-main{
  padding:56px 20px 18px 20px;
  display:flex;
  justify-content:center;
  background:linear-gradient(180deg, var(--bg), var(--bg2));
  border-bottom:1px solid var(--line);
}
.tg-main-inner{
  max-width:1100px;
  width:100%;
  text-align:center;
}

/* Video */
.tg-youtube-wrapper{display:flex;justify-content:center;}
.tg-youtube-iframe{
  position:relative;
  width:100%;
  max-width:760px; /* smaller to leave room for cards */
  aspect-ratio:16/9;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 22px 70px rgba(0,0,0,.60);
  background:#0a0a0a;
}
.tg-youtube-iframe iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* Entities grid */
.tg-entities{
  padding:22px 0 10px 0;
}
.tg-entities-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  justify-content:center;
}
.tg-entity-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.07);
  background:radial-gradient(120% 140% at 20% 10%, rgba(255,255,255,.05), rgba(255,255,255,.01) 55%, rgba(0,0,0,.2));
  box-shadow:0 14px 40px rgba(0,0,0,.45);
  transition:transform .12s ease, border-color .12s ease, background .12s ease;
  min-height:78px;
}
.tg-entity-card:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.12);
  background:radial-gradient(120% 140% at 20% 10%, rgba(255,255,255,.07), rgba(255,255,255,.02) 55%, rgba(0,0,0,.2));
}
.tg-entity-logo{
  width:52px;
  height:52px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.tg-entity-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.95;
}
.tg-entity-title{
  text-align:left;
  font-size:12px;
  letter-spacing:.6px;
  color:rgba(255,255,255,.92);
  text-transform:uppercase;
  line-height:1.2;
}

/* Social line (text links, cleaner) */
.tg-social-line{
  padding:18px 0 8px 0;
  border-top:1px solid var(--line);
  margin-top:16px;
}
.tg-social-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.78);
  font-size:12px;
  letter-spacing:.2px;
}
.tg-social-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 6px;
  border-radius:10px;
  transition:background .12s ease;
}
.tg-social-link:hover{
  background:rgba(255,255,255,.05);
}
.tg-social-sep{
  color:rgba(255,255,255,.25);
  user-select:none;
}

/* Footer */
.tg-footer{
  width:100%;
  border-top:1px solid var(--line);
  background:#050505;
  padding:16px 20px 18px 20px;
}
.tg-footer-inner{
  max-width:1100px;
  margin:0 auto;
  color:rgba(255,255,255,.65);
  font-size:12px;
  letter-spacing:.2px;
  text-align:center;
}

/* Responsive */
@media (max-width:980px){
  .tg-youtube-iframe{max-width:720px;}
  .tg-entities-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
}
@media (max-width:520px){
  .tg-main{padding:36px 14px 14px 14px;}
  .tg-entities-grid{grid-template-columns:1fr;}
  .tg-entity-card{min-height:74px;}
}
