body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #111;
	color: #eee;
	opacity: 1;
}
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('logos/Color/Meninx_Logo_v1_orange-01.png') center center no-repeat;
	background-size: 80%;
	opacity: 0.09;
	z-index: 0;
	pointer-events: none;
}
header {
	background-color: #1a1a1a;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
}
header h1 {
	margin: 0;
	font-size: 1.8rem;
}
nav a {
	color: #eee;
	margin-left: 1.5rem;
	text-decoration: none;
	cursor: pointer;
}
.tab-content {
	display: none;
	padding: 2rem;
	max-width: 1000px;
	margin: auto;
	position: relative;
	z-index: 1;
}
.tab-content.active {
	display: block;
}
.hero {
	background: url('images/landing/going-viral-hero.png') center/contain no-repeat;
	height: 60vh;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}
.hero h2 {
	font-size: 3rem;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.btn {
	display: inline-block;
	margin-top: 1.5rem;
	background: #ff5555;
	color: #fff;
	padding: 0.8rem 1.2rem;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: transform 0.2s ease;
}
.btn:hover {
	transform: scale(1.1);
}
footer {
	background: #1a1a1a;
	text-align: center;
	padding: 1rem;
	font-size: 0.9rem;
	color: #aaa;
}
.team-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 2rem;
}

.team-container > div {
	background-color: #1f1f1f;
	border: 1px solid #333;
	border-radius: 8px;
	padding: 1.5rem;
	width: 220px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	text-align: center;
	transition: transform 0.2s ease;
	display: flex;
	flex-direction: column;
}

.team-container > div:hover {
	transform: translateY(-5px);
}

.team-container h3 {
	margin-top: 0;
	color: #ff5555;
}

.team-container p {
	font-size: 0.95rem;
}

.team-container a {
	display: inline-block;
	margin-top: 1.5rem;
	background: #88c0ff;
	color: #fff;
	padding: 0.8rem 1.2rem;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
}

.team-container a:hover {
	text-decoration: underline;
}
.team-container .spacer {
	flex-grow: 1;
}
.social-icons {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.social-icons a i {
	font-size: 1.5rem;
	color: #ccc;
	transition: color 0.3s, transform 0.2s;
}

.social-icons a:hover i {
	color: #ff5555;
	transform: scale(1.2);
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.trailer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.3s ease-out;
}

.trailer-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background-color: #000;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
  animation: fadeInModal 0.3s ease-out;
}

.trailer-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
  transition: color 0.2s;
}

.trailer-close-btn:hover {
  color: #ccc;
}

.subscription-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.3s ease-out;
}

.subscription-modal-content {
  background: white;
  padding: 2em 1.5em;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  animation: fadeInModal 0.3s ease-out;
}

.subscription-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}

.subscription-close-btn:hover {
  color: #000;
}

.subscription-message {
  font-size: 1.1em;
  margin: 0;
  color: #333;
}

.site-affiliation-banner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem; 
  background-color: #111;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  flex-wrap: wrap; 
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

.site-affiliation-banner a {
  color: #6cf;
  text-decoration: underline;
}

.site-affiliation-banner a:hover {
  color: #fff;
}

.affiliation-banner-image {
  max-height: 40px;
  height: auto;
  width: auto;
  margin: 0 auto;
  display: block;
}
