* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: #fff;
}

html, body {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: #000;
	position: relative;
}

body::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(229,9,20,0.3) 20%, rgba(0,0,0,1) 80%);
	opacity: 0.8;
}

/* Custom Scrollbar for Webkit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 12px;
  background-color: #111; /* dark background for scrollbar track */
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: #111; /* track same dark as background */
  border-radius: 10px;
  box-shadow: inset 0 0 5px #000000cc; /* subtle inner shadow */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e50914, #b0060f); /* Netflix red gradient */
  border-radius: 10px;
  box-shadow: 0 0 8px #e50914cc; /* subtle glowing effect */
  border: 2px solid #111; /* small border matching track for separation */
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff1a1a, #cc0000);
  box-shadow: 0 0 12px #ff1a1acc;
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: #e50914 #111;
}


h1.header {
	font-family: "Bigilla" !important;
	font-size: 200px;
	text-transform: uppercase;
	font-weight: bolder;
	width: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header .letter {
	display: inline-block;
	line-height: 1em;
	color: #E50914;
}

.titles {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.title-1 h1 { 
    color: #FFFFFF; /* White */
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6); 
}

.title-2 h1 { 
    color: #E50914; /* Netflix Red */
    text-shadow: 0px 0px 15px rgba(229, 9, 20, 0.8); 
}

.title-3 h1 { 
    color: #FFFFFF; /* White */
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6); 
}


h1 {
	font-weight: 500;
	font-size: 240px;
	font-family: "Barracuda" !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

ul.titles {
	display: flex;
}

ul.blocks {
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	height: 100vh;
	list-style: none;
	justify-content: center;
	align-items: center;
}

li.block {
	height: 100vh;
}

.block-1 {
	width: 0.2%;
	margin: 0 10px;
	background: #da0510;
}

.block-2 {
	width: 1.4%;
	margin: 0 200px 0 20px;
	background: #2001fe;
}

.block-3 {
	width: 0.8%;
	margin: 0 40px;
	background: #01fefe;
}

.block-4 {
	width: 2%;
	margin: 0 400px;
	background: #00fe00;
}

.block-5 {
	width: 0.8%;
	margin: 0 20px;
	background: #f4f315;
}

.block-6 {
	width: 2.8%;
	background: #fa04f9;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 20px);
    font-size: 50px;
    color: #E50914;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    animation: bounce 1.5s infinite;
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.8);
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 10px); }
    50% { transform: translate(-50%, 0px); }
}
