@font-face {
	font-family: Montserrat;
	src: url('./font/Montserrat-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: Montserrat;
	src: url('./font/Montserrat-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: Montserrat;
	src: url('./font/Montserrat-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

:root {
	--background: linear-gradient(45deg, #201223 0%, #05022c 45%, #431a4d 100%);
	--header: linear-gradient(90deg, #06022ce0, #5e065f, #24022c);
	--btn-accent: linear-gradient(135deg, #a916f9, #3f48f4);
	--btn-inherit: #ffffff;
	--accent: linear-gradient(135deg, #e464f2, #358be6);
	--gift: #ecfdf5;
	--gift-btn: linear-gradient(135deg, #16135a, #3d0f47);
	--border-radius: 12px;
	--table: linear-gradient(180deg, #022c22, #064e3b);
	--minus: #fb7185;
	--shadow: #41065f;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	text-overflow: clip;
}

ul {
	list-style: square;
	list-style-position: inside;
}

ul li,
ol li {
	margin: 8px 0;
}

ul li::marker {
	color: #e464f2;
}

ol {
	list-style-position: inside;
}

a {
	text-decoration: none;
	color: inherit;
}

img,
video {
	width: 80%;
	height: auto;
	display: block;
	border-radius: var(--border-radius);
}

button {
	all: unset;
	cursor: pointer;
	box-sizing: border-box;
}

input,
textarea,
button,
select {
	font: inherit;
	border: none;
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	color: var(--btn-inherit);
}

h1 {
	font-weight: 700;
	font-size: 2.4rem;
}

h2 {
	font-size: 1.8rem;
	font-weight: 700;
}

h3 {
	font-size: 1.5rem;
	font-weight: 500;
	margin: 10px 0;
}

.txt {
	font-size: 1rem;
	margin: 10px 0;
}

.txt-small {
	font-size: 0.85rem;
	margin: 6px 0;
	opacity: 0.85;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	background: var(--background);
	color: var(--btn-inherit);
	box-sizing: border-box;
}

main {
	width: 100%;
	margin: 0 auto;
}

header {
	padding: 10px 200px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--header);
	box-shadow: 0 3px 3px var(--shadow);
	max-width: 100%;
	margin: 0 auto;
	position: sticky;
	top: 0;
	z-index: 100;
}

header img {
	width: 120px;
	height: auto;
	border-radius: 10px;
}

.header-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.h-violet-btn {
	padding: 10px 20px;
	font-size: 1rem;
	border: 1px solid var(--btn-inherit);
	border-radius: 10px;
	margin-right: 50px;
	font-weight: 700;
	transition: all 0.4s ease-in-out;
}

.h-accent-btn {
	padding: 12px 20px;
	font-size: 1rem;
	background: var(--btn-accent);
	box-shadow: 3px 3px 3px var(--gift);
	border-radius: 10px;
	text-align: center;
	font-weight: 700;
	transition: all 0.4s ease;
}

.h-app-link {
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.5s ease;
}

.h-violet-btn:hover,
.h-accent-btn:hover {
	transform: scale(0.9);
	box-shadow: 1px 1px 5px var(--gift);
}

.h-app-link:hover {
	font-size: 1.2rem;
}

.wrapper {
	max-width: 80%;
	margin: 0 auto;
}

.promo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px 200px;
	gap: 50px;
	background-image:
		linear-gradient(90deg, rgba(17, 22, 65, 0.89) 30%, rgba(255, 255, 255, 0) 100%), url(img/goldenmistermain.webp);
	background-repeat: no-repeat;
	background-size: cover;
}

.promo-l {
	width: 70%;
	z-index: 10;
}

.blob {
	position: absolute;
	width: 100px;
	height: 100px;
	background: var(--btn-accent);
	box-shadow:
		0 0 50px rgba(250, 204, 21, 0.4),
		inset 10px -10px 20px rgba(0, 0, 0, 0.1);
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	animation:
		morph 8s ease-in-out infinite,
		float 12s ease-in-out infinite;

	filter: blur(1px);
	z-index: -1;
}

@keyframes morph {
	0% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
	25% {
		border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
	}
	50% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	}
	75% {
		border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
	}
	100% {
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	}
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, -50px) rotate(5deg);
	}
	66% {
		transform: translate(-20px, 20px) rotate(-5deg);
	}
}

.promo-gift {
	background: var(--gift);
	width: 30%;
	height: auto;
	padding: 20px 40px;
	text-align: center;
	border-radius: 20px;
	animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
	0% {
		box-shadow: 0 0 25px 3px var(--minus);
	}
	50% {
		box-shadow: 0 0 15px 8px var(--minus);
	}
	100% {
		box-shadow: 0 0 25px 3px var(--minus);
	}
}

.gift-box {
	background: var(--gift);
	border-radius: 100%;
	width: 84px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	margin: 0px auto;
	margin-top: -48px;
}

.txt-accent {
	color: var(--minus);
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
}

.btn-accent {
	display: inline-block;
	padding: 10px 16px;
	font-size: 1rem;
	background: var(--gift-btn);
	color: var(--btn-inherit);
	border-radius: 10px;
	text-align: center;
	font-weight: 700;
	margin: 20px auto;
	text-transform: uppercase;
	transition: all 0.4s ease-in-out;
}

.btn-accent:hover {
	transform: scale(1.1);
}

.gift-zoom {
	animation: zoom-in-zoom-out 3s ease infinite;
}

@keyframes zoom-in-zoom-out {
	0% {
		scale: 120%;
	}
	50% {
		scale: 140%;
	}
	100% {
		scale: 120%;
	}
}

.navigation {
	margin: 20px auto;
	background: var(--gift-btn);
	border-radius: 16px;
	box-shadow: 0 0 15px 3px var(--minus);
	padding: 8px;
	transition: all 0.4s ease;
}

.navigation:hover {
	box-shadow: 0 0 10px 13px var(--minus);
}

.txt-nav {
	text-align: center;
	cursor: pointer;
	position: relative;
	padding: 10px 0;
	font-size: 1.2rem;
	font-weight: 500;
	display: block;
}

.txt-nav::before {
	content: '\25BE';
	position: absolute;
	top: 11px;
	right: 20px;
}

.nav-list {
	margin: 0 auto;
	column-count: 3;
	width: 100%;
	border: 1px solid var(--accent);
	padding: 10px;
	background: var(--gift-btn);
	border-radius: 10px;
	display: none;
}

#toggle-nav:checked ~ .nav-list {
	display: block;
}

.nav-list li {
	margin: 4px 0;
}

.nav-list li a:hover {
	text-decoration: underline;
}

.container {
	margin: 30px auto;
}

.table-wrapper {
	overflow-x: auto;
	margin-top: 1.5rem;
	border-radius: var(--border-radius);
	width: 100%;
}

.table-wrapper table {
	width: 100%;
	border-collapse: collapse;
	color: var(--btn-inherit);
	font-size: 1rem;
	min-width: 320px;
	background: var(--gift-btn);
	border-radius: 12px;
	margin: 20px auto;
}

thead {
	background: var(--table);
}

table td,
table th {
	border: 1px solid var(--background);
	padding: 8px;
}

table tr:nth-child(even) {
	background: #20173072;
}

.steps-container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-left: 24px;
	border-left: 3px solid #6edb7d;
	margin: 20px 40px;
	width: 100%;
}

.loggen {
	width: 80%;
	margin: 20px auto;
	padding: 40px;
	background: var(--gift-btn);
	border-radius: 10px;
	border: 2px solid var(--accent);
}

.loggen h2 {
	text-align: center;
}

.step {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	position: relative;
}

.step-number {
	position: absolute;
	left: -40px;
	top: 0;
	background: #6edb7d;
	color: white;
	font-weight: bold;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 16px;
}

hr {
	width: 100%;
	border-top: 1px solid var(--btn-inherit);
	border-radius: 10px;
	margin-top: 10px;
}

.step-content {
	width: 90%;
}

.step-content h3 {
	margin: 0 0 10px;
	font-size: 20px;
	color: var(--btn-inherit);
}

.step-content img {
	max-width: 60%;
	border-radius: 8px;
	margin-bottom: 10px;
}

.promoties-bonus {
	display: flex;
	align-items: start;
	justify-content: space-evenly;
	gap: 30px;
}

.voordelen {
	width: 100%;
	border: 2px solid var(--btn-accent);
	border-radius: 12px;
}

.voordelen ul,
.nadelen ul {
	padding: 14px 20px;
}

.voordelen-title {
	display: flex;
	background: var(--btn-accent);
	font-size: 1.2rem;
	font-weight: 700;
	padding: 8px 14px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.nadelen {
	width: 100%;
	border: 2px solid var(--minus);
	border-radius: 12px;
}

.nadelen-title {
	display: flex;
	background: var(--minus);
	font-size: 1.2rem;
	font-weight: 700;
	padding: 8px 14px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.faq-contnetn {
	background: var(--table);
	padding: 18px 40px;
}

.qa-content {
	margin: 20px auto;
	display: flex;
	flex-direction: column;
}
.qa-scontent-title {
	margin: 10px auto;
	border-top: 1px solid var(--btn-inherit);
}

.qa-title {
	font-size: 20px;
	width: 100%;
	position: relative;
	margin: 0;
	display: block;
	cursor: pointer;
}

.qa-answaer {
	font-size: 18px;
	padding: 0px 10px;
	margin: 0 10px;
	color: var(--btn-inherit);
}

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin: 0 auto;
	width: 100%;
	padding: 20px 300px;
	background: var(--header);
	text-align: center;
}

footer ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.4s ease-in-out;
}

footer a img {
	width: 80px;
	height: auto;
}

footer ul li:hover {
	color: var(--btn-accent);
}

.f-active {
	color: var(--btn-accent);
}

.pages {
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 1024px) {
	h1 {
		font-size: 2rem;
	}

	header {
		padding: 4px 6px;
		margin: 0 auto;
		text-align: center;
		align-items: center;
		justify-content: center;
		gap: 4px;
		max-width: 100%;
		position: sticky;
		top: 0;
		z-index: 100;
	}

	header img {
		max-width: 100px;
	}

	.h-violet-btn {
		margin-right: 10px;
	}

	.h-violet-btn,
	.h-accent-btn {
		padding: 10px 14px;
	}

	.header-app {
		position: absolute;
		bottom: -24px;
		background: var(--header);
		width: 100%;
	}

	.promo {
		padding: 20px;
		margin: 0 auto;
		flex-direction: column;
	}

	.promo-l {
		width: 100%;
	}

	.promo-gift {
		width: 100%;
	}

	.nav-list {
		column-count: 2;
		justify-content: space-between;
	}

	table {
		width: 100%;
	}

	.loggen {
		width: 100%;
		margin: 20px 8px;
	}

	.promoties-bonus {
		flex-direction: column;
	}

	.wrapper {
		max-width: 100%;
		padding: 10px;
		margin: 20px auto;
	}

	footer {
		padding: 10px;
		text-align: center;
	}

	footer ul:first-child {
		flex-direction: column;
	}
}

/* additional-page helpers (dark theme) */
.crumb{font-size:.85rem;margin:14px 0 6px;opacity:.85}
.upd{font-size:.85rem;margin:0 0 18px;opacity:.8}
.callout{background:var(--gift-btn);border:1px solid var(--accent);border-left:4px solid var(--minus);border-radius:12px;padding:16px 20px;margin:16px 0}
.rg-plaque{background:var(--gift-btn);border:1px solid var(--minus);border-radius:12px;padding:18px 22px;margin:20px 0}
.rg-plaque .rg-t{color:var(--minus);font-weight:700;margin:0 0 6px;font-size:1.1rem}

/* visible content links: interlinking + providers (header/footer/nav keep inherit) */
.container p a, .container li a, .callout a, .rg-plaque a, .qa-answaer a, .crumb a, .table-wrapper a{
	color:#f0c14b;
	text-decoration:underline;
	text-underline-offset:2px;
}
.container p a:hover, .container li a:hover, .callout a:hover, .rg-plaque a:hover, .qa-answaer a:hover, .crumb a:hover, .table-wrapper a:hover{
	color:#ffd97a;
}


/* ===== mobile overflow / layout fixes ===== */
html, body { max-width: 100%; overflow-x: hidden; }
body { overflow-wrap: break-word; word-wrap: break-word; }
img, video { max-width: 100%; }
.table-wrapper { -webkit-overflow-scrolling: touch; }
table td, table th { overflow-wrap: anywhere; word-break: break-word; }
.container p a, .container li a, .crumb a { overflow-wrap: anywhere; }

@media (max-width: 600px) {
	h1 { font-size: 1.6rem; }
	h2 { font-size: 1.35rem; }
	h3 { font-size: 1.15rem; }
	header { flex-wrap: wrap; gap: 8px; padding: 8px 12px; }
	.header-btn { gap: 8px; }
	.h-violet-btn { margin-right: 0; padding: 8px 12px; font-size: .9rem; }
	.h-accent-btn { padding: 8px 12px; font-size: .9rem; }
	header img { max-width: 84px; }
	.promo { padding: 24px 16px; }
	.wrapper { padding: 0 14px; margin: 16px auto; }
	.nav-list { column-count: 1; }
	.voordelen, .nadelen { max-width: 100%; }
	footer { padding: 16px 14px; }
}
