/* style.css */

body {
	margin: 0;
	background-color: #0a0a0a;
	color: #ffdddd;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 18px;
	line-height: 1.6;
  }
  
  .page-wrapper {
	padding: 2rem;
	max-width: 1200px;
	margin: auto;
  }
  
  header {
	text-align: center;
	margin-top: 4rem;
	color: #ff4d4d;
  }
  
  header h1 {
	font-size: 3rem;
	margin-bottom: 0.5rem;
  }
  
  nav {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
	flex-wrap: wrap;
  }
  
  nav a {
	color: #ffcccc;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 2px solid transparent;
	transition: border 0.3s;
  }
  
  nav a:hover {
	border-color: #ff4d4d;
  }
  
  h2 {
	text-align: center;
	color: #ff4d4d;
	font-size: 2rem;
	margin-bottom: 1rem;
  }
  
  p {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 1.5rem auto;
  }
  
  .extension-download {
	text-align: center;
	margin: 2rem 0;
  }
  
  .extension-download a {
	display: inline-block;
	font-size: 1.2rem;
	color: black;
	padding: 1rem 2rem;
	border-radius: 2rem;
	text-decoration: none;
	border: 2px solid black;
	background-color: #ff4d4d;
	font-weight: bold;
	transition: background 0.3s;
  }
  
  .extension-download a:hover {
	background-color: #cc0000;
	color: white;
  }
  
  .extension-documentation {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
  }
  
  .extension-documentation-video,
  .extension-documentation-images {
	flex: 1 1 45%;
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  video, img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 1rem;
  }
  
  .extension-reviews-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
  }
  
  .extension-review {
	background-color: #1a1a1a;
	border: 1px solid #ff4d4d;
	padding: 1rem;
	border-radius: 10px;
	width: 280px;
	color: #ffaaaa;
	text-align: center;
  }
  
  .extension-installation {
	margin-top: 3rem;
  }
  
  .extension-installation ol {
	max-width: 600px;
	margin: 2rem auto;
	color: #ffcccc;
	padding-left: 1.5rem;
  }
  
  footer {
	text-align: center;
	padding: 2rem;
	margin-top: 4rem;
	background: #0f0000;
	color: #ffcccc;
	font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
	.extension-documentation-video,
	.extension-documentation-images,
	.extension-review {
	  flex: 1 1 100%;
	}
  
	nav {
	  flex-direction: column;
	  align-items: center;
	}
  }
  .extension-documentation-images {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	justify-content: center; /* Centers the grid horizontally */
	margin-top: 1rem;
  }
  
  .extension-documentation-images img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	display: block;
  }
  