/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0e0e0e;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header & Navbar */
header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 10px 0;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 16px;
  background-color: #111;
  padding: 16px 0;
}

.navbar a {
  padding: 10px 18px;
  border: 2px solid #00fff2;
  border-radius: 8px;
  background-color: transparent;
  color: #00fff2;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.navbar a:hover {
  background-color: #00fff2;
  color: #111;
  box-shadow: 0 0 12px #00fff2, 0 0 24px #00fff2;
  transform: scale(1.05);
}

/* Main Titles and Text */
h1 {
  font-size: 2.5rem;
  margin: 10px 0;
}

h2 {
  font-size: 1.8rem;
  margin: 20px 0 10px;
}

p {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Video Section */
.videos {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.video-wrapper {
  border: 2px solid cyan;
  border-radius: 10px;
  padding: 8px;
  background-color: #1a1a1a;
  box-shadow: 0 0 15px cyan;
  margin-top: 10px;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 18 / 9;
  border-radius: 10px;
  border: none;
}

/* Fiverr Page Styles */
.fiverr-content {
  max-width: 1200px;
  margin-top: 30px;
  text-align: center;
}

.gig-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
}

.gig-card {
  background-color: #1c1c1c;
  border: 2px solid cyan;
  border-radius: 10px;
  width: 300px;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gig-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px cyan;
}

.gig-card img {
  width: 100%;
  height: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.gig-card h2 {
  margin: 10px;
  font-size: 1.3rem;
}

.gig-card p {
  font-size: 1rem;
  margin: 0 10px 15px;
}

/* Fiverr Button */
.fiverr-button {
  display: inline-block;
  margin: 30px auto;
  padding: 14px 28px;
  background-color: cyan;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  box-shadow: 0 0 10px cyan;
  transition: all 0.3s ease;
}

.fiverr-button:hover {
  background-color: #00ffee;
  transform: scale(1.05);
  box-shadow: 0 0 18px cyan;
}

/* Testimonial */
.testimonial {
  background-color: #1a1a1a;
  border-left: 5px solid cyan;
  padding: 15px 20px;
  margin: 30px auto;
  max-width: 600px;
  font-style: italic;
}

cite {
  display: block;
  text-align: right;
  margin-top: 10px;
  color: #aaa;
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 20px;
  width: 100%;
  background-color: #111;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-icons {
  margin-bottom: 10px;
}

.footer-icons a {
  margin: 0 12px;
  text-decoration: none;
}

.footer-icons i {
  font-size: 28px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-icons i:hover {
  transform: scale(1.2);
  color: #007bff;
}

footer a {
  color: cyan;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Merch Section */
.merch-section {
  padding: 2rem;
  text-align: center;
}

.merch-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding-top: 2rem;
}

.merch-item {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  transition: transform 0.2s, box-shadow 0.3s;
}

.merch-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.4); /* blue glow */
}

.merch-item img {
  width: 100%;
  border-radius: 8px;
}

.buy-button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #007bff; /* bright blue */
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background-color: #0056b3; /* darker blue */
  transform: translateY(-2px);
}
