body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0f0f1c, #1a1a40, #000000);
  color: #e0e0e0;
  line-height: 1.6;
}

header {
  background: rgba(10, 10, 30, 0.9);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 2px solid #1a73e8;
}

header h1 {
  font-size: 2.2rem;
  margin: 0;
  text-shadow: 0 0 10px #1a73e8;
}

nav {
  background: rgba(20, 20, 40, 0.95);
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #1a73e8;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #1a73e8;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

h2 {
  color: #1a73e8;
  margin-bottom: 15px;
  text-shadow: 0 0 6px rgba(26, 115, 232, 0.6);
}

ul {
  list-style: none;
  padding-left: 20px;
}

ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  display: flex;
  align-items: center;
}

ul li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #42a5f5, #1a73e8);
  box-shadow: 0 0 5px rgba(66, 165, 245, 0.7);
  top: 50%;
  transform: translateY(-50%);
}

ul li span.content {
  margin-left: 10px;
}

ul li .btn {
  padding: 4px 16px;
  font-size: 0.95rem;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  margin: 0;
  color: #fff;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #1a73e8;
}

.faq-answer {
  display: none;
  margin-top: 8px;
  color: #ddd;
}

.faq-answer img {
  display: block;
  margin: 10px auto 0;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #42a5f5, #1565c0);
  transform: translateY(-1px);
}

footer {
  text-align: center;
  padding: 25px 10px;
  background: rgba(10, 10, 30, 0.95);
  color: #bbb;
  border-top: 1px solid #1a73e8;
  margin-top: 40px;
}

a:not(.btn):not(nav a) {
  color: #42a5f5;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(66, 165, 245, 0.7);
}

a:not(.btn):not(nav a):hover {
  color: #1a73e8;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(26, 115, 232, 0.9);
}

.video-container {
  max-width: 800px;
  margin: 20px auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-showcase-intro {
  max-width: 720px;
  margin-bottom: 20px;
  color: #ddd;
}

.video-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.video-option {
  appearance: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(66, 165, 245, 0.25);
  border-radius: 10px;
  background: rgba(10, 10, 30, 0.72);
  color: #e0e0e0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.video-option:hover {
  border-color: #42a5f5;
  transform: translateY(-2px);
}

.video-option:focus-visible {
  outline: 3px solid rgba(66, 165, 245, 0.75);
  outline-offset: 3px;
}

.video-option[aria-pressed='true'] {
  border-color: #42a5f5;
  box-shadow: 0 0 14px rgba(66, 165, 245, 0.35);
}

.video-thumbnail {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080814;
}

.video-option img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-option > span:last-child {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 7px 9px 8px;
  font-size: 0.84rem;
  line-height: 1.3;
}

.now-playing {
  margin: 16px 0 0;
  color: #ddd;
}

.now-playing strong {
  color: #42a5f5;
}

.highlight {
  font-weight: bold;
  color: #1a73e8;
  background: rgba(26, 115, 232, 0.1);
  padding: 2px 4px;
  border-radius: 4px;
}

#supported {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 50px;
}

#supported h2 {
  color: #1a73e8;
  margin-bottom: 15px;
  text-shadow: 0 0 6px rgba(26, 115, 232, 0.6);
}

#supported p {
  margin-bottom: 10px;
  color: #ddd;
}

#supported strong {
  color: #42a5f5;
}

#supported .alternate-edition {
  color: #aeb7c4;
  font-size: 0.95rem;
}

#supported .alternate-edition strong {
  color: inherit;
  font-weight: 600;
}

.storeButton {
  display: block;
  text-align: center;
  margin: 30px auto 20px;
}

@media (max-width: 720px) {
  nav a {
    display: inline-block;
    margin: 4px 10px;
  }

  .video-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .video-picker {
    grid-template-columns: 1fr;
  }

  .video-option > span:last-child {
    font-size: 0.82rem;
  }
}
