/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
  }
  
  /* Header Styles */
  .header {
    background-color: #2a2a2a;
    padding: 1.5rem 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
  }
  
  .cru-button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 80px;
  }
  
  .cru-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
  }
  
  .cru-button:active {
    transform: translateY(0);
  }
  
  /* Main Content */
  .main {
    padding: 3rem 0;
    min-height: calc(100vh - 100px);
  }
  
  .hero-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
  }
  
  .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #888;
    margin-bottom: 3rem;
  }
  
  /* --- Cleaned up Profile Section Styles --- */
.profile-section {
  margin: 3rem 0;
  padding: 0 1rem;
}

.profile-card {
  background: linear-gradient(135deg, #2a2a2a, #333);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #444;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-image {
  flex-shrink: 0;
}

.profile-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff6b35;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.profile-image img:hover {
  transform: scale(1.05);
}

.profile-content {
  flex: 1;
  text-align: left;
}

.profile-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ff6b35;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.profile-description {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 2rem;
}

.profile-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  min-width: 100px;
}

.stat-number {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: bold;
  color: #ff6b35;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: #888;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }
  
  .video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Action Buttons */
  .action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 1rem;
  }
  
  .action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: #333;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #444;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
  }
  
  .action-btn:hover {
    background-color: #444;
    transform: translateY(-2px);
  }
  
  .action-btn.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
  }
  
  .action-btn.discord:hover {
    border-color: #5865f2;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
  }
  
  .action-btn.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.3);
  }
  
  .action-btn.question:hover {
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
  }

  .action-btn.telegram {
    /* Add your Telegram-specific styles here, or copy from .discord if needed */
}
  
  .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .container {
      padding: 0 1.5rem;
    }
  
    .profile-card {
      padding: 2rem;
      gap: 2rem;
    }
  
    .action-buttons {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .header {
      padding: 1rem 0;
    }
  
    .header .container {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .logo h1 {
      font-size: 1.5rem;
    }
  
    .main {
      padding: 2rem 0;
    }
  
    .profile-card {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
      gap: 1.5rem;
    }
  
    .profile-content {
      text-align: center;
    }
  
    .profile-stats {
      justify-content: center;
      gap: 1.5rem;
    }
  
    .action-buttons {
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }
  
    .video-container {
      margin: 2rem auto;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 1rem;
    }
  
    .header {
      padding: 0.75rem 0;
    }
  
    .cru-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
    }
  
    .main {
      padding: 1.5rem 0;
    }
  
    .profile-section {
      margin: 2rem 0;
      padding: 0;
    }
  
    .profile-card {
      padding: 1.5rem;
      margin: 0 0.5rem;
      border-radius: 15px;
      gap: 1.5rem;
    }
  
    .profile-image img {
      width: 120px;
      height: 120px;
    }
  
    .profile-description {
      margin-bottom: 1.5rem;
    }
  
    .profile-stats {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
  
    .stat {
      padding: 0.75rem;
      background-color: rgba(255, 107, 53, 0.1);
      border-radius: 8px;
      width: 100%;
      max-width: 200px;
    }
  
    .action-btn {
      padding: 1rem;
      font-size: 0.9rem;
    }
  
    .video-container {
      margin: 1.5rem auto;
      border-radius: 8px;
    }
  }
  
  @media (max-width: 360px) {
    .profile-card {
      padding: 1rem;
      margin: 0 0.25rem;
    }
  
    .profile-image img {
      width: 100px;
      height: 100px;
    }
  
    .profile-stats {
      gap: 0.75rem;
    }
  
    .stat {
      padding: 0.5rem;
    }
  
    .action-btn {
      padding: 0.875rem;
      font-size: 0.85rem;
    }
  
    .icon {
      width: 18px;
      height: 18px;
    }
  }
  
  /* Landscape orientation for mobile */
  @media (max-height: 500px) and (orientation: landscape) {
    .main {
      padding: 1rem 0;
    }
  
    .profile-section {
      margin: 1rem 0;
    }
  
    .profile-card {
      flex-direction: row;
      padding: 1.5rem;
      text-align: left;
    }
  
    .profile-content {
      text-align: left;
    }
  
    .profile-image img {
      width: 100px;
      height: 100px;
    }
  
    .profile-stats {
      justify-content: flex-start;
      flex-direction: row;
    }
  }
  
  /* High DPI displays */
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .profile-image img {
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }
  }
  
  /* Focus states for accessibility */
  .cru-button:focus,
  .action-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
  }
  
  /* Reduced motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  
    .video-container:hover,
    .profile-card:hover,
    .profile-image img:hover {
      transform: none;
    }
  }
  
  /* Print styles */
  @media print {
    .header,
    .action-buttons,
    .video-container {
      display: none;
    }
  
    body {
      background: white;
      color: black;
    }
  
    .profile-card {
      background: white;
      border: 1px solid #ccc;
      box-shadow: none;
    }
  }
  