/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: white;
  background: linear-gradient(rgba(250, 250, 250, 0.3), rgba(250, 250, 250, 0.3)), url('https://clarkstech.net/Bg.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(0px);
  padding: 40px 20px;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://clarkstech.net/Bg.jpeg');
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.4);
  z-index: -1;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.switch-code {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 60px;
  font-family: 'SF Mono', Monaco, monospace;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.section {
  margin-bottom: 60px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  display: block;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.4);
  color: #333;
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.link:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.link:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.media-grid {
  display: grid;
  gap: 40px;
}

.media-item {
  text-align: left;
}

.media-item h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

video,
audio {
  width: 100%;
  border-radius: 6px;
  background: rgba(240, 240, 240, 0.8);
}

.qr-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(224, 224, 224, 0.8);
}

.guild-badge {
  text-align: center;
  margin: 40px 0;
}

.guild-badge iframe {
  border-radius: 4px;
}

.footer {
  text-align: center;
  color: white;
  font-size: 0.85rem;
  margin-top: 80px;
  padding-top: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.footer a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
  body {
    padding: 20px 15px;
  }
  h1 {
    font-size: 2rem;
  }
  .container {
    max-width: 100%;
  }
}