body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.main-container {
	color: #eaeaea;
	overflow: hidden;
	background-color: #303030;
}

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

a:visited {
	color: inherit;
}

a:hover {
	color: inherit;
}

a:active {
	color: inherit;
}

a:focus {
	color: inherit;
	outline: none;
}

.header {
	background-color: #9a0002;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100vw;

	@media (max-width: 590px) {
		display: none;
	}
}

.links-container {
	display: flex;
	gap: 20px;
	padding-inline: 20px;
	align-items: center;
	text-align: center;
	a {
		font-size: 18px;
	}
}

.logo-container {
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.logo-small-image {
	height: 80px;
}

.logo-text-image {
	height: 60px;
	@media (max-width: 768px) {
		display: none;
	}
}

.hero-container {
	display: flex;
	align-items: start;
	justify-content: space-between;
	padding-bottom: 120px;
	background: linear-gradient(#191c1d, 70%, #9a0002);
	height: 80vh;

	@media (max-width: 768px) {
		height: 100%;
	}
}

.hero-title-container {
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	align-items: start;
	align-self: center;
	max-width: 50%;
}

.hero-title {
	font-weight: 300;
	font-size: 48px;
}

.hero-description {
	font-size: 20px;
}

.buttons-container {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 20px;
}

.hero-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px 40px;
	font-size: 24px;
	font-weight: 600;
	color: #9a0002;
	background-color: #eaeaea;
	border: 1px solid #eaeaea;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(234, 234, 234, 0.4);
	margin-top: 20px;
	text-decoration: none;
}

.hero-button:hover {
	background-color: #f5f5f5;
	border-color: #f5f5f5;
	color: #b30003;
	box-shadow: 0 6px 20px rgba(234, 234, 234, 0.6);
}

.hero-button:active {
	box-shadow: 0 2px 10px rgba(234, 234, 234, 0.3);
}

.hero-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background-color: #d0d0d0;
	border-color: #d0d0d0;
	color: #6b0001;
	box-shadow: 0 2px 8px rgba(234, 234, 234, 0.2);
}

.hero-button:disabled:hover {
	background-color: #d0d0d0;
	border-color: #d0d0d0;
	color: #6b0001;
	box-shadow: 0 2px 8px rgba(234, 234, 234, 0.2);
}

.hero-button-icon {
	width: 32px;
	height: 32px;
	color: inherit;
}

.hero-image-outer-wrapper {
	overflow: hidden;
	height: 100%;
	max-width: 740px;
	min-width: 420px;

	@media (max-width: 768px) {
		max-width: unset;
		min-width: unset;
		max-height: 800px;
	}
}
.hero-image-inner-wrapper {
	transform: rotate(356deg);
	overflow: hidden;
	position: relative;
	top: calc(-1vw * 1.8);
	right: calc(-2vw * 1.8);
	height: 100%;
	display: flex;
	align-items: flex-start;

	@media (max-width: 768px) {
		position: static;
	}
}

.hero-image {
	transform: rotate(11deg);
	position: relative;
	width: 140%;
	right: 100px;
	bottom: 120px;
	max-width: 800px;

	@media (max-width: 768px) {
		max-width: unset;
		min-width: unset;
		width: 100%;
	}
}

.film-strip-container {
	width: 100%;
	position: relative;
}

.film-strip {
	overflow: hidden;
	width: 103%;
	position: absolute;
	background: #191c1d;
	padding: 20px 0;
	transform: rotate(356deg);
	left: -15px;
	top: -125px;
}

.film-track {
	display: flex;
	width: fit-content;
	animation: scroll-left 60s linear infinite;
	will-change: transform;
}

.film-group {
	display: flex;
	gap: 20px;
	padding: 0 10px;
}

.film-group img {
	height: 200px;
	width: auto;
	object-fit: contain;
	flex-shrink: 0;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.about-container {
	background-color: #303030;
	padding: 160px 40px 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.about-app {
	width: 50%;
}

.divider {
	border: none;
	height: 1px;
	background-color: #9a0002;
	margin: 0 15%;
}

.features-container {
	padding: 40px 15%;
	background-color: #303030;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
}

.feature.reverse {
	direction: rtl;
}

.feature.reverse * {
	direction: ltr;
}

.feature-image-container {
	display: flex;
	justify-content: center;

	@media (max-width: 768px) {
		padding-inline: 50px;
	}
}

.feature-image {
	width: 100%;
	max-width: 250px;
	transform: rotate(357deg);

	@media (max-width: 768px) {
		transform: rotate(0deg);
	}
}

.feature-image.reverse {
	transform: rotate(3deg);

	@media (max-width: 768px) {
		transform: rotate(0deg);
	}
}

.footer {
	box-shadow: 0 -5px 50px #9a0002;
	background-color: #191c1d;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.footer-content-container {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
}

.legal-links-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.header {
		flex-wrap: nowrap;
		gap: 15px;
	}

	.logo-image {
		width: 60px;
		height: 60px;
	}

	.links-container {
		flex-wrap: nowrap;
		gap: 10px;
		font-size: 16px;
	}

	.hero-container {
		flex-direction: column;
		padding-bottom: 60px;
	}

	.hero-title-container {
		padding: 20px;
	}

	.hero-title {
		font-size: 28px;
		line-height: 1.3;
	}

	.hero-description {
		font-size: 16px;
	}

	.hero-button {
		padding: 16px 30px;
		font-size: 18px;
	}

	.hero-button-icon {
		width: 24px;
		height: 24px;
	}

	.hero-image-inner-wrapper {
		transform: rotate(0deg);
		top: 0;
		right: 0;
	}

	.hero-image {
		transform: rotate(0deg);
		left: 0;
		top: 0;
		position: relative;
	}

	.film-strip {
		transform: rotate(0deg);
		left: 0;
		top: -80px;
		width: 100%;
	}

	.film-group img {
		height: 120px;
	}

	.about-container {
		padding: 80px 20px 40px;
	}

	.about-app {
		width: 100%;
		font-size: 16px;
	}

	.divider {
		margin: 0 5%;
	}

	.features-container {
		padding: 40px 20px;
	}

	.feature {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.feature.reverse {
		direction: ltr;
	}

	.feature.reverse * {
		direction: ltr;
	}

	.feature img {
		max-width: 100%;
	}

	.footer {
		padding: 30px 20px;
	}

	.legal-links-container {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.header {
		padding: 10px 15px;
	}

	.logo-image {
		width: 50px;
		height: 50px;
	}

	.links-container {
		font-size: 14px;
		gap: 8px;
	}

	.hero-title {
		font-size: 24px;
	}

	.hero-description {
		font-size: 14px;
	}

	.hero-button {
		padding: 14px 24px;
		font-size: 16px;
	}

	.about-container {
		padding: 80px 15px 30px;
	}

	.features-container {
		padding: 30px 15px;
	}

	.footer {
		padding: 20px 15px;
	}
}
