body {
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.hero {
  background: url('https://i.imgur.com/IUNhNSS.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0);
  padding: 2rem;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3em;
}

.btn {
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #d9534f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.navbar {
  background-color: #222;
  padding: 1rem;
  text-align: center;
}

.navbar ul {
  list-style: none;
  padding: 0;
}

.navbar li {
  display: inline;
  margin: 0 15px;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.container {
  padding: 3rem 2rem;
  text-align: center;
}

.container img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
}

.footer {
  background-color: #222;
  padding: 1rem;
  text-align: center;
}
.tv-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: radial-gradient(#111, #000);
}

.tv-frame {
  position: relative;
  width: 640px;
  height: 480px;
  padding: 20px;
  background: #2c2c2c;
  border: 10px solid #333;
  border-radius: 20px;
  box-shadow:
    inset 0 0 30px #000,
    0 20px 60px rgba(0,0,0,0.7);
}

.tv-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 10px;
  background: #aaa;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tv-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
html, body {
  height: 100vh;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

.scroll-limiter {
  height: 110vh; /* Only allows slight scroll */
  overflow-y: auto;
}