/*:root {
	--body-color: #0f0e1f;
	--primary-color: #322D42;
	--primary-color-dark: #1f1a2a;
	--semitrans-primary-color-dark: #1f1a2a7e;
	--accent-color: #9a25bd;
	--accent-color-dark: #750f94;
	--semitrans-accent-color: #9a25bd2d;
  }*/
:root {
	--body-color: #2c2c2c;
	--body-color-dark: #1f1c28;
	--primary-color: #a7b3b4;
	--primary-color-dark: #697374;
	--semitrans-primary-color-dark: #1f1a2a7e;
	--accent-color: #be4d4d;
	--accent-color-dark: #940b0b; 
	--semitrans-accent-color: #be4d4d2d;
	--text-color: #f2fcfd; 
	--text-color-trans: #2c2c2ce3; 

  }

html{scroll-behavior:smooth}

body {
	height: 100%;
	width: 100%;
	background-color: var(--body-color);
	color: var(--text-color);

	font-family: 'DM Sans', sans-serif;
}

select {
    word-wrap: normal;
    padding: 4px;
    background: var(--semitrans-accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 3px;
    color: var(--text-color);
    margin: 3px 2px;
}

option {
	background: var(--primary-color-dark);
	border: 2px solid var(--accent-color);
	border-radius: 3px;
	color: var(--text-color);
	margin: 3px 2px;
}

.tab {
	transition: background 0.2s ease;
	font-family: 'DM Sans', sans-serif;
	border-width: 2px 2px 2px 0;
}

.currency-selector,
.billing-cycle-selector {
  display: flex;
}

.billing-choices {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.currency-option,
.billing-cycle-option {
  padding: 6px 10px;
  margin: 0;
  transition: background 0.2s ease;
  margin-bottom: 20px;
  background-color: var(--semitrans-accent-color);
  border: 2px solid var(--accent-color);
  border-width: 2px 2px 2px 0;
  cursor: pointer;
}

.currency-option:hover,
.billing-cycle-option:hover {
	background: var(--accent-color);
	transition: background 0.2s ease;
}

.currency-option.selected,
.billing-cycle-option.selected {
  background-color: var(--accent-color);
  transition: background 0.2s ease;
}

.currency-option:first-child,
.billing-cycle-option:first-child {
	border-radius: 10px 0 0 10px; /* Fully rounded left corner for the first tab */
	border-width: 2px 2px 2px 2px;
}

.currency-option:last-child,
.billing-cycle-option:last-child {
	border-radius: 0 10px 10px 0; /* Rounded right corner for the last tab */
	border-width: 2px 2px 2px 0px;
}

.brief-container {
	background-color: var(--primary-color-dark);
	padding: 25px 0 0px 0;
	color: #ececec;
	margin-bottom: 50px;
}

.brief {
	display: grid;
	grid-template-columns: 2.5fr 1fr;
	padding: 25px;
}
.pricing-brief-container {
	padding: 0 0 0 0;
	color: #ececec;
	position: relative;
}

.pricing-brief-container::before {
	content: "";
	position: absolute;
	width: 100%; height: 94%;
	background-image: url(img/minecraft.webp);
	filter: blur(5px) brightness(0.5);
	background-size: cover;
	background-position: top;
}

.pricing-brief {
	padding: 25px;
	position: relative;
}

.top-mobile {
	display: none;
}

.brief {
	display: grid;
	grid-template-columns: 2.5fr 1fr;
	padding: 25px;
	position: relative;
}

.brief-headers {
	padding-top: 25px 0;
}

.about-icons {
	font-size: 80px;
	line-height: 0;
}

.about-circle {
	border-radius: 100%;
	background-color: var(--primary-color);
	padding: 20px;
	width: 120px;
	height: 120px;
	margin: auto 0;
	justify-content: center;
}

.about-items {
	display: flex;
	flex-wrap: wrap;
	margin: 50px auto;
	justify-content: center;
	
}

.about-text {
	flex-basis: 60%;
	margin: auto 20px;
}


.img-fluid {
	width: 100%;
	padding: 10px;
    object-fit: cover;
	padding-left: 40px;
	background: radial-gradient(#9a25bd7e, transparent, transparent);
}

#particles-js {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.legal .card-title{
	color:#000;
}

.legal .card-text{
	color:#333333;	
}

.features {
	display: flex;
	flex-wrap: wrap;
}

.stars {
	color: gold;
	text-align: right;
}

.feature i {
	font-size: 3em;
	color: var(--accent-color);
	padding: 10px;
}

.features > * {
	flex: 1 1 20em;
	padding: 25px;
	text-align: center;
}

.testimonials {
	background-color: var(--accent-color);
	padding: 0px; 
	color: #ececec;
	margin-top: 25px;
	margin-bottom: 50px;
	padding: 20px 0 30px 0;
	padding-top: 40px; 
	border-radius: 0%;
}

.card-deck {
	margin: 10px 0 0 0;
	padding: 20px 0 10px 0;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	overflow-x: auto;
	scroll-behavior: smooth;
	justify-content: start;
}

.card-deck .card {
	flex: 0 0 auto;
	margin: 0 30px 0 0px;
	height: auto;
	width: 300px;
}

.legal .card-deck {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-self: center;
	justify-content: start;
	gap: 20px;
}

.legal .card-deck .card {
	width: 300px;
	height: auto;
}

.card-deck {
	&::-webkit-scrollbar {
	  display: auto;
	}
  }

  .card-deck::-webkit-scrollbar {
	background: #444444; /* make scrollbar transparent */
	border-radius: 5px;

  }

  .card-deck::-webkit-scrollbar-thumb { 
	background: var(--body-color); 
	border-radius: 5px;
  }

.testimonials .btn {
	text-align: center;
}

.testimonials .card-title {
	color: white;
}

.testimonials .card-text {
	color: #ececec;
}

.testimonials .card {
	background-color: var(--text-color-trans);
	border-radius: 5px;
	margin: 5px 5px;
	border: 2px solid var(--body-color);
}

.testimonials .card-footer {
	display: grid;
    grid-template-columns: 50% 50%;
}

.testimonials .btn {
	background-color: var(--body-color); 
	border-color: var(--body-color);
}

.testimonials .btn:hover {
	background-color: var(--body-color-dark); 
	border-color: var(--body-color-dark);
} 
  
.games {
	padding: 0px; 
	color: #ececec;
	margin-top: 25px;
	padding: 20px 0 0px 0;
	padding-top: 40px; 
	border-radius: 0%;
	position:absolute;
	width:100%;
	bottom:0;
	/* center games */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;

  }

.game {
	flex: 0 0 auto;
	height: 400px;
	width: 250px;
	border-radius: 5px;
	border: 2px solid var(--accent-color);
	margin: 5px; 
  }

.game {
	position: relative;

}

.game a {
	text-decoration: none;
	color: #ececec;
} 

.game::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
	z-index: 1;
}

.game .game-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: left;
	width: 100%;
	margin-left: 20px; 
	text-decoration: none;
	transition: text-decoration 2s ease;
	transition-delay: 0.1s; 
}

.game .game-title:hover {
	text-decoration: underline;
	transition: text-decoration 2s ease;
	transition-delay: 0.1s; 
}

.game .game-description {
	position: absolute;
	top: 60%;
	left: 0;
	width: 100%;
	padding: 20px;
	z-index: 2;
	text-align: left;
	
} 


.game img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
}



.game-deck {
	margin: 10px 0 10px 0;
	padding: 20px 0 10px 0;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	overflow-x: auto;
	scroll-behavior: smooth;
	justify-content: start;
	max-width: 2080px;
}

.game-deck {
	&::-webkit-scrollbar {
	  display: auto; 
	}
  }

  .game-deck::-webkit-scrollbar {
	background: var(--semitrans-accent-color); /* make scrollbar transparent */
	border-radius: 5px;

  }

  .game-deck::-webkit-scrollbar-thumb { 
	background: var(--accent-color-dark); 
	border-radius: 5px;
  }

.accordion {
	padding: 25px;
	color: var(--text-color);
}

.accordion .card {
	border: 0;
	background-color: var(--body-color);
}


.accordion .btn-link {
	color: white;
	font-weight: 500;
	width: 90%;
	margin: 0 auto;
	display: block;
	border-bottom: var(--accent-color) solid 2px;
	border-radius: 0;
	box-shadow: none;
	transition: all 0.15s ease-in-out;
	transition-delay: 0.1s;
}

.accordion .btn-link:hover {
	border-bottom: var(--accent-color-dark) solid 2px;
	transition: all 0.15s ease-in-out;
	text-decoration: none;
}

.accordion .btn-link:focus {	
	width: 100%;
	border-bottom: var(--accent-color-dark) solid 2px;
	transition: all 0.15s ease-in-out;
	text-decoration: none;
}

.footer {
	background-color: var(--accent-color);
	color: #ececec;
	padding-top: 35px;
	margin-top: 80px;
}

.footer img {
	max-width: 70%;
	display: block;
	margin: 12px auto
} 

.footer ul {
	list-style-type: none;
	padding: 0;
}

.footer a {
	color: #ececec;
}


.header {
	background-image: url('img/bg.png'); 
	background-size: cover;
	background-position: center;
	text-align: center;
	height: 100vh;
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(0, 0, 0.5, 1), rgba(0, 0, 0, 0.5), transparent);
	z-index: 0;
}

.main-nav {
	background-color: var(--text-color-trans); 
	/* background-color: transparent; */
	font-weight: 500;
	z-index: 1000;
}

.top-nav { 
	background-color: var(--accent-color);
	color: white; 
	padding: 10px 0;
	font-weight: 500;
	font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.top-nav-item {
	font-size: clamp(0.8rem, 1.5vw, 1.3rem);
}

.navbar-brand img {
	height: 80px;
}

.navbar-brand:hover img {
	fill: grey;
}

.main-nav .nav-link {
	padding: 23px !important;
	color: #ececec !important;
	font-weight: 500;
	font-size: 1.1rem;
}

.nav-link:hover {
	color: #cdcdcd!important; ;
}

.title {
	color: #fff;
    font-weight: 700;
	text-shadow: 0 0 20px rgba(156, 39, 176, 0.2);
	margin-bottom: 0;
	font-size: clamp(28px, 2.8vw, 80px);
}

.tagline {
	color: #e4a1a1;
	font-weight: 300;
	font-size: clamp(15px, 1.6vw, 40px);
	text-shadow: 10px 0 20px black;
}

.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}



.steps {
	padding: 20px 0;
	text-align: center;
}

.step-count {
    text-align: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    border: 7px solid #ececec88;
    border-radius: 20%;
    margin: 20px auto;
    display: block;
    width: 86px;
    height: 86px;
}

.tab {
	cursor: pointer;
	background: var(--semitrans-accent-color);
	padding: 10px 2px;
	border: 2px solid var(--accent-color);
	transition: background 0.2s ease;
	font-family: 'DM Sans', sans-serif;
	border-width: 2px 2px 2px 0;
}

.tab:first-child {
	border-radius: 10px 0 0 10px; /* Fully rounded left corner for the first tab */
	border-width: 2px 2px 2px 2px;
}

.tab:last-child {
	border-radius: 0 10px 10px 0; /* Rounded right corner for the last tab */
	border-width: 2px 2px 2px 0px;
}

.tab:hover {
	background: var(--accent-color);
	transition: background 0.2s ease;
}

.text-muted {
	color: #b3b3b3!important;
}

.tabs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
	text-align: center;
	background: var(--primary-color);
	padding: 10px 10px;
	border-radius: 10px;
}

.panel-images {
	width: 100%;
	margin: 0 auto;
}
.panel-image {
	margin: 0 auto;
	display: block;
	padding-top: 2rem;
	width: 100%;  
}

.current {
	background: var(--accent-color);
	border: 2px solid var(--accent-color);
	transition: background 0.5s ease;
}

.wave-headers {
	font-weight: 300;
	text-shadow: 0 0 20px rgba(156, 39, 176, 0.2);
	margin-bottom: 0;
	font-size: clamp(3rem, 1.5vw, 10rem);
	padding-top: 50px;
}



.row {
	margin: 0;
}

.btn-primary {
	background-color: var(--accent-color);
	padding: 12px 28px;
	border: 2px solid var(--accent-color);
}

.btn-outline-primary {
	background-color: var(--semitrans-accent-color);
	padding: 12px 30px;
	border: 2px solid var(--accent-color);
	color: #fff;
}

.btn-outline-primary:hover {
	background-color: var(--accent-color-dark);
	border-color: var(--accent-color-dark);
	color: #fff;
}
.btn-primary:hover {
	background-color: var(--accent-color-dark);
	border-color: var(--accent-color-dark);
}

.wave {
	position: relative;
	z-index: 20;
}

.card-deck {
	margin-top: 20px;	
}

.btn {
    box-shadow: 0 0 15px #0005;
	position: relative;
	margin: 0 10px 10px 0;
}

.product .card-header {
	padding: 0;
}

.product .card-header img {
	width: 100%;
	height: auto;
	border-radius: 7px;
}

.card.product {
	background-color: transparent;
	border: 0;
	box-shadow: 0 0 20px 11px rgba(0, 0, 0, 0.05);
	padding-bottom: 16px;
}

.recommended-plan .card {
	width: 300px;
}

.product .card-body {
    margin-top: calc(-100% + -1px);
	border-radius: 7px;
    background-image: linear-gradient(#322D4266, #322D42E6, #322D42F5, #322D42, #322D42);
}

.product .card-footer .btn-primary {
	margin: 0 0px 10px 0;
}

.product .card-body .list-group-item {
	background-color: transparent;
	color: #ececec;
}

.recommended {
	background-color: #750f94!important;
	margin: 0 10px;
	border-radius: 100px;
}

.value {
	background-color: #4bbd25!important;
	margin: 0 1px;
	border-radius: 100px;
	margin-top: 2px;
}

.bedrock {
	background-color: #5f5b6c!important;
	margin: 0 15px;
	border-radius: 100px;
	margin-top: 2px;
}

  
.hidden {
	display: none;
}


.product {
	margin: 0;
	padding: 0;
}

.product-list li {
	border: 0;
    font-weight: 400;
    font-size: 1.25rem;
    padding: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #505050;
}

.product .card-footer {
	background-color: var(--primary-color);
	border: 0;
	text-align: center;
	padding-top: 0;
	padding-bottom: 24px;
	margin-top: -3px;
}

.product .card-footer a {
	font-weight: 600;
}

.product .display-4 {
    font-size: 2.5rem !important;
	color: #fff
}


.products {
	padding: 0px;
	margin-top: -5px;
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-items: center;
	-webkit-overflow-scrolling: touch;
}



.netherite-text {
	border: 0;
	padding: 25px 32px;
	text-align: center;
	background-color: transparent;
	color: #fff!important;
	width: 100%;
	height: 100%;
	align-self: center;
}

.netherite-card {
	padding: 0px;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	justify-items: center;
	-webkit-overflow-scrolling: touch;
	background-color: var(--primary-color-dark);
	padding: 20px;
	border-radius: 10px;
	/* accent color glow around card */
	border: 3px solid var(--accent-color-dark);
	box-shadow: 0 0 20px 5px var(--accent-color-dark);
	transition: 0.3s ease;
}

.netherite-card:hover {
	box-shadow: 0 0 20px 6px var(--accent-color); 
	transition: 0.3s ease;
}

.netherite-card .card {
	flex: 0 0 auto;
	margin: 0 10px;
}

.netherite-card .card.product {
	padding-bottom: 0;
	width: 300px;
	transition: 0.3s ease;
	
}

@media (max-width: 767px) {
	.netherite-card {
		grid-template-columns: 1fr;
		padding-top: 40px;
	}
	.products {
		grid-template-columns: 1fr;
	}
	.products .card-body {
		min-height: 200px;
	}
	.products .card .card-header img {
		max-width: 280px;
	}
	.includes {
		grid-template-columns: 1fr 1fr!important;
	}
}

.includes {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-items: center;
	margin: 40px 0;
}


@media only screen and (min-width: 767px) and (max-width: 990px) {
	.products {
		grid-template-columns: 1fr 1fr;
	}
	.products .card-body {
		min-height: 240px;
	}
}

.netherite-card .card.product:hover {
	padding-bottom: 0;
	box-shadow: #1f1c28 0px 0px 20px 10px;	
	transition: 0.3s ease;
}



.products .card {
		flex: 0 0 auto;
		margin: 0 10px;
		width: minmax(100%, 340px);
}


.products {
	&::-webkit-scrollbar {
	  display: always;
	}
  }

  .products::-webkit-scrollbar {
	background: var(--semitrans-accent-color); /* make scrollbar transparent */
	border-radius: 5px;

  }

  .products::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 5px;
  }

.snaps-inline {
	scroll-snap-type: inline mandatory;
	scroll-padding-inline: 1rem;
}

.snaps-inline > * {
	scroll-snap-align: center;
}


.products card {
	height: 200px;
  }

.wave-container {
	width: 100%;
	position: relative;
	pointer-events: none;
	margin-top: -10px;
}

.btn-login {
    border-radius: 4px;
    padding: 12px 32px !important;
    margin: 12px 16px;
    font-weight: 500;
}

@media screen and (max-width: 1440px) {
	.wave-container {
		margin-top: -50px !important;
	}
}

@media screen and (min-width: 2000px) and (min-height: 1440px) {
	.wave-container {
		margin-top: -150px !important;
	}
}

@media screen and (max-width: 700px) {
	.wave-container {
		margin-top:0 !important;
	}

	.display-1 {
		font-size: 4rem !important;
	}
}

@media screen and (max-width: 800px) {
	.recommended-plan * {
		display: none;
		width: 0%!important;
	}
}

@media screen and (max-width: 991px) {
	#brief > div > div:nth-child(2) > img {
		display: none;
	}
	.brief {
		grid-template-columns: 1fr!important;
	}
	.top-mobile {
		display: block!important;
	}
	.bottom-mobile {
		display: none!important;
	}
	.about-circle {
		margin-bottom: 30px;
	}
	.about-text {
		flex-basis: 100%;
	}
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")!important;
}

.interested {
	border: 0;
	padding: 16px 32px;
	text-align: center;
	background-color: var(--accent-color);
	color: #fff!important;
}

.interested .btn {
	background-color: var(--body-color);
	border-color: var(--body-color);
}

.interested .btn:hover {
	background-color: var(--body-color-dark);
	border-color: var(--body-color-dark);
}

.recommendations{
	display: flex;
	gap: 1rem;
	margin-top: 16px;
	background-color: var(--primary-color)00;
	padding: 16px;
	border-radius: 7px;
}

.plan-picker {
	border: 0;
	padding: 25px 32px;
	text-align: center;
	background-color: var(--primary-color);
	color: #fff!important;
	width: 100%;
	align-self: center;
	
}

.recommended-plan .card.product {
	padding-bottom: 0;
	width: 300px;
	width: 100%;
	box-shadow: #242030 0px 0px 20px 10px;	
	transition: 0.3s ease;

}

.recommended-plan .card.product:hover {
	padding-bottom: 0;
	width: 300px;
	width: 100%;
	box-shadow: #1f1c28 0px 0px 20px 10px;	
	transition: 0.3s ease;
}

.btn-center {
	width: fit-content;
	margin: 16px auto;
}

.text-left {
	text-align: left!important;
}

.interested.card {
	margin: 0 auto;
}
