@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

:root{
	--main-color: #4d102e;
	--black: #13131a;
	--bg: #010103;
	--border: .1rem solid rgba(255,255,255,.3);
}
* {
	font-family: 'Poppins', sans-serif;
	margin: 0; padding: 0;
	box-sizing: border-box;
	outline: none; border: none;
	text-decoration: none;
	transition: .2s linear;
	
}

.small-bold-link {
    font-size: 15px;   /* Sets the font size */
    color: white;      /* Sets the text color */
    text-decoration: underline; /* Adds an underscore */
    font-weight: bold; /* Makes the text bold */
}

html{
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-padding-top: 9rem;
	scroll-behavior: smooth;
}

html::-webkit-scrollbar{
	width: .8rem;
}

html::-webkit-scrollbar-track{
	background: transparent;
}

html::-webkit-scrollbar-thumb{
	background: #fff;
	border-radius: 5rem;
}

body{
	background: var(--bg);
}

section{
	padding: 2rem 7%;
}

.heading{
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 3.5rem;
	font-size: 4rem;	
}
	.heading span{
		color: var(--main-color);
		text-transform: uppercase;	
	}
	
.header{
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 7%;
	border-bottom: var(--border);
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
}
	.header .logo img{
		height: 6rem;
	}
	.header .navbar a{
		margin: 0 1rem;
		font-size: 1.6rem;
		color: #fff;
	}
	.header .navbar a:hover{
		color: #bfb7ae;
		border-bottom: .1rem solid var(--main-color);
		padding-bottom: .5rem;
	}
	.header .icons div{
		color: #fff;
		cursor: pointer;
		font-size: 2.5rem;
		margin-left: 2rem;
	}
	.header .icons div:hover{
		color: #bfb7ae;
	}
#menu-btn{
	display: none;
}	

.newsletter-wrapper{
	min-height: 10vh;
}
.patreon{
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: url(../img/team_poster4.png) no-repeat;
	background-size: cover;
	background-position: center;
}
	.patreon .content{
		max-width: 60rem;
	}
	.patreon .content h3{
		font-size: 6rem;
		text-transform: uppercase;
		color: #fff;
	}
	.patreon .content p{
		font-size: 2rem;
		font-weight: lighter;
		line-height: 1.8;
		padding: 1rem 0;
		color: #eee;
	}

.newsletter .row .image{
	flex: 1 1 45rem;
}

.newsletter .row .image{
	flex: 1 1 45rem;
}

.newsletter .row .image img{
	width: 100%;
}

.newsletter .row .content{
	flex: 1 1 45rem;
	padding: 2rem;
}
	.newsletter .row .content p{
		font-size: 1.6rem;
		color: #ccc;
		padding: 1rem 0;
		line-height: 1.8;
	}
	.newsletter .row .content-title p{
		font-size: 2rem;
		color: #fff;
		padding: 1rem 0;
		line-height: 1.8;
	}

.games .row{
	display: flex;
	align-items: center;
	background: var(--black);
	flex-wrap; wrap;
}

.games .row .image{
	flex: 1 1 45rem;
}

.games .row .image{
	flex: 1 1 45rem;
}

.games .row .image img{
	width: 100%;
}

.games .row .content{
	flex: 1 1 45rem;
	padding: 2rem;
}
	.games .row .content p{
		font-size: 1.6rem;
		color: #ccc;
		padding: 1rem 0;
		line-height: 1.8;
	}

.button-container {
    text-align: center; /* Centers the buttons */
    margin-top: 2rem; /* Adds spacing above the buttons */
}

.btn{
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    border-radius: 5px;
    cursor: pointer;
    margin: 1rem; /* Adds space between the buttons */
}

.btn:hover{
	letter-spacing:.2rem;
	background: #b80047; /* Slightly different hover effect */
}

.hidden-month {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.newsletter:not(.hidden-month) {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.content ul{
	font-size: 1.5rem;
	color: white;  
}

.content ul li{
  margin: 0px 30px 20px;
}

.footer{
	background: var(--black);
	text-align: center;
}
	.footer .share{
		padding: 1rem 0;
	}
	.footer .share a{
		height: 5rem;
		width: 5rem;
		line-height: 5rem;
		font-size: 2rem;
		color: #fff;
		border: var(--border);
		margin: .3rem;
		border-radius: 50%;
	}
	.footer .share a:hover{
		background-color: var(--main-color);
	}
	.footer .credit{
		font-size: 2rem;
		color: #fff;
		font-weight: lighter;
		padding: 1.5rem;
	}

@media (max-width:991px){
    .patreon {
        background: url(../img/team_poster_mobile.png) no-repeat;
        background-size: cover;
        background-position: center;
    }	
	html{
		font-size: 55%;
		color: #000000;
	}
	.header{
		padding: 1.5rem 2rem;	
	}
	section{
	padding: 2rem;
	}
	.newsbtn{
		display: none;
	}
}

@media (max-width:768px){
	#menu-btn{
		display: inline-block;
	}
	.header .navbar{
		position: absolute;
		top: 100%; right: -100%;
		background: #fff;
		width: 30rem;
		height: calc(100vh - 9.5rem);
	}
	.header .navbar.active{
		right: 0%;
	}		
	.header .navbar a{
		color: var(--black);
		display: block;
		margin: 1.5rem;
		padding: .5rem;
		font-size: 2rem;
	}	
	.patreon{
		background-position: left;
		justify-content: center;
		text-align: center;
	}
	.patreon .content h3{
		font-size: 4.5rem;
	}
	.patreon .content p{
		font-size: 1.5rem;
	}	
}

@media (max-width:450px){
	html{
		font-size: 50%;
	}
}


.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #13131a;
  padding: 30px;
  border-radius: 10px;
  color: white;
  position: relative;
  max-width: 1020px;
  text-align: center;
}

.modal-content h2{
  font-size: 30px;	
}

.modal-content p{
  font-size: 15px;	
}

.modal-content a{
  color: #b53737;
}

.modal-content img{
  width: 95%;
  height: 95%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 991px) {
  .modal-content {
    width: 90%;
    padding: 20px;
    font-size: 1.4rem;
  }

  .modal-content h2 {
    font-size: 2.4rem;
  }

  .modal-content p {
    font-size: 1.6rem;
  }

  .close-btn {
    font-size: 2.5rem;
    top: 5px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 15px;
    font-size: 1.2rem;
  }

  .modal-content h2 {
    font-size: 2rem;
  }

  .modal-content p {
    font-size: 1.4rem;
  }

  .close-btn {
    font-size: 2rem;
    top: 5px;
    right: 10px;
  }
}
