:root
{
	--tc-bg-main: #0B0D0F;       /* Rich Black */
	--tc-bg-sub: #161A1F;        /* Charcoal Gray */
	--tc-panel: #1F252C;         /* Gunmetal */
	--tc-text-main: #F5F7FA;     /* Soft White */
	--tc-text-sub: #A7B0BA;      /* Cool Gray */
	--tc-border: #39424C;        /* Slate Gray */
	--tc-divider: #2A3138;       /* Dark Slate */

	--tc-blue: #00A3FF;
	--tc-red: #FF4655;
}

*
{
	box-sizing: border-box;
}

body
{
	margin: 0;
	background: var(--tc-bg-main);
	color: var(--tc-text-main);
	font-family: Arial, Helvetica, sans-serif;
}

.tc_header
{
	padding: 20px 6vw;

	display: flex;
	align-items: center;
	justify-content: space-between;

	border-bottom: 1px solid var(--tc-divider);
}

.tc_header_logo
{
	display: inline-flex;
	align-items: flex-end;
	gap: 10px;
}

.tc_brand_main
{
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: -0.04em;
}

.tc_brand_sub
{
	padding-bottom: 2px;

	font-size: 11px;
	letter-spacing: 0.14em;

	color: var(--tc-text-sub);
}

.tc_nav
{
	display: flex;
	gap: 20px;
}

.tc_nav a
{
	color: var(--tc-text-sub);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-decoration: none;
}

.tc_page
{
	width: 100%;
	overflow: hidden;
}

.tc_hero
{
	min-height: 70vh;
	padding: 96px 6vw;

	display: flex;
	flex-direction: column;
	justify-content: center;

	background:
		linear-gradient(
			90deg,
			rgba(11,13,15,0.95),
			rgba(11,13,15,0.55)
		),
		var(--tc-bg-sub);

	border-bottom: 1px solid var(--tc-divider);
}

.tc_logo
{
	margin-top: 28px;
}

.tc_logo img
{
	width: 180px;
	max-width: 48vw;

	height: auto;
	display: block;

	opacity: 0.88;
}

.tc_label
{
	width: fit-content;

	margin-bottom: 24px;
	padding: 6px 12px;

	border: 1px solid var(--tc-border);

	color: var(--tc-text-sub);

	font-size: 12px;
	letter-spacing: 0.16em;
}

h1
{
	margin: 0;

	font-size: clamp(48px, 10vw, 120px);
	line-height: 0.9;
	letter-spacing: -0.05em;
}
.tc_hero_inner

{

	width: fit-content;

}

.tc_hero_byline

{

	text-align: right;
	padding-right: 0.18em;

}

.tc_lead
{
	max-width: 680px;

	margin: 28px 0 0;

	color: var(--tc-text-sub);

	font-size: clamp(18px, 2vw, 28px);
	line-height: 1.6;
}

.tc_section
{
	padding: 72px 6vw;

	border-bottom: 1px solid var(--tc-divider);
}

.tc_section h2
{
	margin: 0 0 28px;

	font-size: 14px;
	letter-spacing: 0.18em;

	color: var(--tc-text-sub);
}

.tc_section p
{
	max-width: 760px;

	margin: 0;

	font-size: 17px;
	line-height: 1.9;

	color: var(--tc-text-main);
}

.tc_grid
{
	display: grid;
	gap: 20px;
}

.tc_grid_3
{
	grid-template-columns: repeat(3, 1fr);
}

.tc_card
{
	padding: 28px;

	background: var(--tc-panel);
	border: 1px solid var(--tc-border);
}

.tc_card h3
{
	margin: 0 0 16px;

	font-size: 24px;
	letter-spacing: -0.03em;
}

.tc_card p
{
	font-size: 15px;
	color: var(--tc-text-sub);
}


/*CHAMPIONS*/
.tc_champions
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.tc_champion

{

	padding: 22px;
	background: var(--tc-panel);
	border: 1px solid var(--tc-border);
	display: flex;
	flex-direction: column;

}

.tc_champion_info

{

	min-height: 0;

}
.tc_champion span
{
	display: block;

	margin-bottom: 12px;

	color: var(--tc-text-sub);

	font-size: 13px;
}

.tc_champion_logo
{
	height: 84px;

	display: flex;
	align-items: center;
	justify-content: center;

	margin: 16px 0 14px;
}

.tc_champion_logo img
{
	max-width: 100%;
	max-height: 100%;

	object-fit: contain;
}

.tc_champion_label
{
	font-size: 10px;
	letter-spacing: 0.18em;

	color: var(--tc-text-sub);
}

.tc_champion_team
{
	margin-top: 6px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.15;
}

.tc_champion_support
{
	margin-top: 6px;
	font-size: 11px;
	line-height: 1.5;
	color: var(--tc-text-sub);
}

.tc_champion_members
{
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--tc-divider);
}

.tc_member
{
	font-size: 11px;
	line-height: 1.7;
	color: var(--tc-text-sub);
}

.tc_member_coach
{
	margin-top: 6px;
	color: var(--tc-text-main);
	font-size: 10px;
	letter-spacing: 0.12em;
}

.tc_team_match
{
	display: grid;
	grid-template-columns: 1fr auto 1fr;

	align-items: stretch;

	gap: 16px;
}

.tc_team
{
	min-height: 180px;

	padding: 28px;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	border: 1px solid var(--tc-border);

	background: var(--tc-panel);
}

.tc_team span
{
	color: var(--tc-text-sub);

	font-size: 13px;
	letter-spacing: 0.16em;
}

.tc_team strong
{
	margin-top: 8px;

	font-size: 42px;
	line-height: 1;
}

.tc_team_blue
{
	border-left: 6px solid var(--tc-blue);
}

.tc_team_red
{
	border-left: 6px solid var(--tc-red);
}

.tc_vs
{
	padding: 0 20px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: var(--tc-text-sub);

	font-size: 24px;
	font-weight: bold;
}

.tc_challenge_logo
{
	display: flex;
	flex-wrap: wrap;

	gap: 24px;

	align-items: center;
	justify-content: center;

	margin-top: 40px;
}

.tc_challenge_logo img
{
	height: 120px;
	width: auto;

	max-width: 220px;

	object-fit: contain;
}

.tc_logo_archive
{
	text-align: center;
}

.tc_logo_archive span
{
	display: block;

	margin-top: 4px;

	font-size: 12px;
	letter-spacing: 0.14em;

	color: var(--tc-text-sub);
}

.tc_teams_group
{
	margin-top: 48px;
}

.tc_teams_group h3
{
	margin: 0 0 18px 0;

	font-size: 1.5rem;
	font-weight: 700;
}

.tc_teams_list
{
	margin: 0;
}

.tc_team_row
{
	display: flex;
	align-items: baseline;
	gap: 24px;

	padding: 6px 0;
}

.tc_team_name
{
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.03em;
}

.tc_team_since
{
	font-size: 0.85rem;
	color: #777;
	letter-spacing: 0.08em;
}

@media (max-width: 800px)
{
	.tc_hero
	{
		min-height: 60vh;
		padding: 72px 24px;
	}

	.tc_section
	{
		padding: 56px 24px;
	}

	.tc_grid_3,
	.tc_champions,
	.tc_team_match
	{
		grid-template-columns: 1fr;
	}

	.tc_vs
	{
		padding: 8px 0;
	}

	.tc_challenge_logo
	{
		gap: 18px;
	}

	.tc_challenge_logo img
	{
		height: 90px;
		max-width: 180px;
	}

	.tc_champion_logo
	{
		height: 72px;
	}
}
