﻿:root {
	--retry-guild-color-left: #FF0000;
	--retry-guild-color-center: #CF0000;
	--retry-guild-color-right: #960000;
	--retry-guild-bg-gradient: linear-gradient(90deg, #FF0000 0%, #CF0000 50%, #960000 100%);
}

/* Retry Guild Gradient Title */
.retry-guild-title {
	background: var(--retry-guild-bg-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

/* Retry Guild Gradient Border */
.retry-guild-border {
	position: relative;
	z-index: 1;
}

	.retry-guild-border::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: -1;
		padding: 2px;
		border-radius: 8px;
		background: var(--retry-guild-bg-gradient);
		-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
		-webkit-mask-composite: xor;
		mask-composite: exclude;
	}

/* Retry Guild Action Button */
.retry-guild-action-button {
	background: var(--retry-guild-bg-gradient);
	color: white !important;
	border: none;
	border-radius: 999px;
	transition: box-shadow 0.2s, transform 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.retry-guild-action-button:hover {
		box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.16), 0 4px 18px rgba(150, 0, 0, 0.16);
		background: linear-gradient(90deg, #960000 0%, #CF0000 50%, #FF0000 100%);
	}

/* Retry Guild Secondary Action Button */
.retry-guild-secondary-action-button {
	background: transparent;
	color: white;
	border: 2px solid transparent;
	border-radius: 999px;
	background-image: linear-gradient(#181821, #181821), var(--retry-guild-bg-gradient);
	background-origin: padding-box, border-box;
	background-clip: padding-box, border-box;
}

	.retry-guild-secondary-action-button:hover {
		background-image: linear-gradient(#181821, #181821), linear-gradient(90deg, #960000 0%, #CF0000 50%, #FF0000 100%);
		color: #FF0000;
	}

/* Retry Guild Colors */
.retry-guild-color-left {
	color: var(--retry-guild-color-left);
	border-color: var(--retry-guild-color-left);
}

.retry-guild-color-center {
	color: var(--retry-guild-color-center);
	border-color: var(--retry-guild-color-center);
}

.retry-guild-color-right {
	color: var(--retry-guild-color-right);
	border-color: var(--retry-guild-color-right);
}

/* Retry Guild Gradient bg */
.retry-guild-bg-gradient {
	background: var(--retry-guild-bg-gradient);
}

/* Retry Guild Gradient text */
.retry-guild-text-gradient {
	background: var(--retry-guild-bg-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}
