html, body {
	margin: 0;
	padding: 0;

}

.d-mobile-only {
	display: none;
}

.d-article p, p {
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	}

.d-article {
	padding-bottom: 0px;
}
.d-home-hero {
	display: flex;
	flex-direction: column;
	align-items: left;
	position: relative;
	padding: 70px;
	overflow: hidden;
}

.d-hero-video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.d-home-hero h1 {
	font-family: 'Alias Cactus Medium', sans;
	font-size: 120px;
	color: white;
	text-align: left;
	letter-spacing: 0.05em;
	line-height: 1.1;
	margin: 70px 0 0 0;
	font-weight: 300;
	position: relative;
	z-index: 1;
}

.d-home-hero h1 span {
	color: #ffcc66;
}

.d-home-hero h1 span.d-red {
	color: #cd6249;
}

.d-home-hero p {
	font-family: 'Futura', sans;
	color: white;
	font-size: 24px;
	line-height: 50px;
	max-width: 1000px;
	text-align: center;
	letter-spacing: 0.1em;
}


.d-paid-content {
	width: 150px;
	text-align: center;
	color: white;
	text-transform: uppercase;
	font-size: 10px;
	font-family: 'Futura', sans;
	font-weight: 480;
	margin-bottom: 20px;
	justify-self: left;
	position: relative;
	z-index: 1;
}

.d-paid-content a {
	color: white;
	text-decoration: none;
}

.d-paid-content .i {
	width: 14px;
	vertical-align: middle;
	margin-right: 0px;
	margin-top: -3px;
	color: black;
}

.d-paid-content a img:last-of-type {
	width: 100%;
	margin-top: 5px;
}

.d-hero-bottom {
	height: 50px;
	width: 100%;
	object-fit: cover;
}

.d-top {
	padding-top: 100px;
}

.d-top p {
	color: #4e8c95;
	font-family: 'Kostic Bicyclette', sans;
	font-weight: normal;
	text-align: center;
	font-size: 50px;
	line-height: 60px;
	max-width: 70%;
	margin: 0 auto 0 auto;
}

.d-top-arrow {
	text-align: center;
}

.d-top-arrow h3 {
	text-transform: uppercase;
	font-family: 'Kostic Bicyclette', sans;
	font-weight: bold;
	font-size: 28px;
	margin: 80px 0 0 0;
}

.d-top-arrow i {
	font-size: 40px;
}

.d-top-circles {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 70px;
	position: relative;
}

.d-circle {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background-color: #4e8c95;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	font-family: 'Alias Cactus Medium';
	font-size: 36px;
	line-height: 1.2;
	text-transform: uppercase;
	transition: transform 0.3s ease;
}

.d-circle:hover {
	transform: scale(1.10);
	cursor: pointer;
}

.d-selection-line {
	position: absolute;
	bottom: -20px;
	height: 4px;
	width: 190px;
	background-color: #333;
	left: calc(50% - 500px);
	transition: left 0.3s ease;
}

/* Section Styling */
.d-section {
	margin: 0 auto;
	padding: 60px 0px 0px 0px;
	display: none;
}

.d-section.active {
	display: block;
}

.d-section-header {
	display: flex;
	margin-bottom: 60px;
	align-items: stretch;
}

.d-section-header.d-orientation-right {
	flex-direction: row-reverse;
}

.d-section-header.d-orientation-left {
	flex-direction: row;
}

.d-section-content {
	flex: 1;
}

.d-section-padding {
	padding: 8%;
}

.d-section-badge {
	background-color: #4e8c95;
	color: white;
	padding: 12px 26px 8px 26px;
	font-size: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-family: 'Alias Cactus Medium', sans;
	font-weight: normal;
	display: inline-block;
	margin-bottom: 20px;
	border-radius: 20px;
}

.d-section h1 {
	font-family: 'Kostic Bicyclette', sans;
	font-size: 48px;
	font-weight: normal;
	color: #333;
	margin: 0 0 20px 0;
	line-height: 1.1;
}

.d-section-content p {
	text-align: left;
	font-family: 'Gotham', sans;
	font-size: 14px;
	line-height: 1.6;
	color: #333;
	margin: 0;
}

.d-section-image {
	flex: 1;
	position: relative;
}

.d-slideshow {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.d-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.d-slide.active {
	opacity: 1;
}

.d-slideshow-nav {
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: flex;
	gap: 10px;
}

.d-nav-arrow {
	width: 40px;
	height: 40px;
	background-color: white;
	color: black;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.d-nav-arrow:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

.d-tip-box {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: white;
	color: black;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.d-tip-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	border-radius: 3px;
}

.d-tip-content {
	max-width: 200px;
	padding: 25px;
	font-family: 'Gotham', sans;
	font-size: 12px;
	line-height: 1.4;
	display: none;
}

.d-tip-content h3 {
	text-align: center;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}

.d-tip-box.expanded .d-tip-content {
	display: block;
	color: white;
	position: absolute;
	top: 20px;
	right: 20px;
	width: 200px;
	min-height: auto;
	text-align: center;
}

.d-tip-box.expanded .d-tip-icon {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	background-color: white;
	color: black;
}

.d-tip-box.expanded .d-tip-icon i {
	transform: rotate(45deg);
}

.d-where-to-play {
	display: flex;
	border-radius: 40px;
	margin-bottom: 40px;
	border: 4px double #4e8c95;
	overflow: hidden;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;

}

.d-where-to-play-left {
	background-color: #4e8c95;
	color: white;
	padding: 30px;
	flex: 0 0 260px;
	display: flex;
	align-items: center;
	justify-items: center;
}

.d-where-to-play-left img {
	height: 50px;
}

.d-where-to-play-left h2 {
	font-family: 'Alias Cactus Medium', sans;
	font-size: 40px;
	font-weight: 500;
	margin: 5px 0 0 20px;
	text-transform: uppercase;
}

.d-where-to-play-right {
	background-color: white;
	color: #333;
	padding: 30px;
	flex: 1;
	display: flex;
	align-items: center;
}

.d-where-to-play-right p {
	font-family: 'Gotham';
	text-align: left;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	color: black;
	max-width: 100%;
}

.d-section-columns {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.d-column {
	flex: 1;
}

.d-column h3 {
	font-family: 'Kostic Bicyclette', sans;
	font-size: 40px;
	color: #333;
	margin: 0 0 5px 0;
	font-weight: normal;

}

.d-column p {
	font-family: 'Gotham';
	font-size: 14px;
	line-height: 20px;
	color: #333;
	margin: 0;
	text-align: left;
}

.d-section-bottom img {
	width: 100%;
	height: auto;
	max-height: 450px;
	object-position: center 70%;
	object-fit: cover;
}

.d-section-bg-image {
	margin-top: 40px;
}

.d-section-bg-image img {
	width: 100%;
	height: auto;
}

.d-choose-another {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	margin-top: 40px;
	gap: 40px;
}

.d-choose-text {
	display: flex;
	align-items: center;
	gap: 20px;
}

.d-choose-text span {
	font-family: 'Kostic Bicyclette', sans;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #333;
	text-transform: uppercase;
	line-height: 1.2;
}

.d-choose-text i {
	font-size: 24px;
	color: #333;
}

.d-choose-circles {
	display: flex;
	gap: 20px;
}

.d-choose-circle {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	font-family: 'Alias Cactus Medium';
	font-size: 36px;
	line-height: 1.2;
	text-transform: uppercase;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.d-choose-circle:hover {
	transform: scale(1.10);
}


.d-section-footer {
	text-align: center;
	height: fit-content;
	display: flex;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-top: 20px;
}

.d-section-footer h3 {
		color: white;
		font-family: 'Alias Cactus Medium';
		font-size: 36px;
		font-weight: normal;
		letter-spacing: 2px;
		margin-top: 36px;
		margin-bottom: 36px;
}

.d-section-footer a {
	border: 1px solid white;
	padding: 10px 20px 10px 20px;
	text-align: center;
	font-size: 14px;
	letter-spacing: 2px;
	font-family: 'Kostic Bicyclette', sans;
	color: white;
	text-decoration: none;
	font-weight: bold;
	font-style: normal;
	width: fit-content;
	display: block;
}


.d-top p.d-intro {
	font-size: 30px;
	line-height: 40px;
	padding-top: 40px;
	padding-bottom: 40px;
}

/* Link Styles */
a {
	color: black;
	text-decoration: underline;
}

.d-tip-content a {
	color: white;
	text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
	/* Section header - image above content */
	
	
	.d-home-hero {
		padding: 70px 50px 70px 50px;
	}

	
	.d-section-header {
		flex-direction: column;
	}
	
	.d-section {
		padding: 0 0 0 0;
	}
	
	.d-section-header.d-orientation-right {
		flex-direction: column;
	}
	
	.d-section-header.d-orientation-left {
		flex-direction: column;
	}
	
	.d-section-content {
		flex: none;
	}
	
	.d-section-image {
		flex: none;
	}
	
	.d-section-padding {
		padding: 12% 4% 12% 4%;
	}
	
	.d-section h1 {
		font-size: 32px;
	}
	
	.d-home-hero h1 {
		font-size: 48px;
	}
	
	.d-home-hero h1 br {
		display: none;
	}
	
	.d-top p {
		font-size: 16px;
		line-height: 38px;
	}
	
	.d-top p.d-intro {
		font-size: 22px;
		line-height: 28px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.d-section-content p {
		font-size: 16px;
		line-height: 1.4;
		max-width: 100%;
	}
	
	
	/* Where to play section - header above content */
	.d-where-to-play {
		flex-direction: column;
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.d-where-to-play-left {
		flex: none;
		padding: 20px;
		text-align: center;
		align-items: center;
		justify-content: center;
		display: flex;
	}
	
	.d-where-to-play-left h2 {
		font-size: 34px;
		margin: 5px 0 0 20px;
	}
	
	.d-where-to-play-left img {
		height: 30px;
	}
	
	.d-where-to-play-right {
		flex: none;
		padding: 20px;
	}
	
	.d-where-to-play-right p {
		font-size: 16px;
		line-height: 22px;	
	}
	
	/* Three content sections stacked */
	.d-section-columns {
		flex-direction: column;
		gap: 20px;
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.d-column {
		flex: none;
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.d-column p {
		font-size: 16px;
		line-height: 22px;
		max-width: 100%;
		
	}
	
	/* Top circles responsive */
	.d-top-circles {
		flex-wrap: wrap;
		gap: 15px;
		margin-bottom: 40px;
	}
	
	.d-circle {
		width: 130px;
		height: 130px;
		font-size: 24px;
	}
	
	/* Choose another circles - two rows */
	.d-choose-circles {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}
	
	.d-choose-circle {
		width: 100px;
		height: 100px;
		font-size: 20px;
	}
	
	/* Choose another section */
	.d-choose-another {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	
	.d-choose-text {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
	
	.d-choose-text i {
		transform: rotate(90deg);
	}
	
	.d-choose-text br {
		display: none;
	}
	
	/* Hide selection line on mobile */
	.d-selection-line {
		display: none;
	}
	
	/* Slideshow adjustments */
	.d-slideshow {
		height: 250px;
	}
	
	/* Tip box adjustments */
	.d-tip-box.expanded .d-tip-content {
		right: 10px;
		left: auto;
		width: 200px;
		max-width: calc(100vw - 100px);
	}
	
	.d-tip-box {
		right: 10px;
	}
	
	.d-section-footer h3 {
		max-width: 70%;
		line-height: 1.2em;
		
	}
	
	.d-top-arrow h3 {
	font-size: 18px;
	}
}



