*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body
{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;

  a:link { color: #b0b0b0; }
  a:visited { color: #00d4aa; }
  a:hover { color: #00d4aa; }
  a:active { color: #00d4aa; }
}

.overlay
{
  display: flex;
  flex-direction: column;

  position: relative;
  z-index: 2;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
}

.chart-container
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  opacity: 0.6;
}

.chart-canvas
{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.header
{
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo
{
  font-family: 'Zilla Slab', serif;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: #00d4aa;
  text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

.logo-blue
{
/** /
  color: #0057B7;
  text-shadow: 0 0 20px rgba(0, 153, 183, 0.5);
/ **/
}

.logo-yellow
{
/** /
  color: #FFDD00;
  text-shadow: 0 0 20px rgba(255, 221, 0, 0.5);
/ **/
}

.signin-btn
{
  padding: 12px 32px;
  background: linear-gradient(135deg, #00d4aa 0%, #00a8ff 100%);
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.signin-btn:hover
{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
  filter: brightness(1.1);
}

.main-content
{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-section
{
  margin-top: 60px;
  margin-bottom: 60px;
  max-width: 1400px;
}

.hero-title
{
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #00d4aa 50%, #00a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle, .hero-subtitle-left
{
  font-size: 1.4rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-subtitle-left
{
  text-align: left;
}

.cta-button
{
  padding: 18px 48px;
  background: linear-gradient(135deg, #00d4aa 0%, #00a8ff 100%);
  border: none;
  border-radius: 30px;
  color: white;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
  margin: 0 10px 20px 0;
}

.cta-button:hover
{
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 212, 170, 0.5);
}

.grey-button
{
  background: rgba(255,255,255,0.1);
  box-shadow: 0 6px 20px rgba(255,255,255,0.1);
}

.grey-button:hover
{
  box-shadow: 0 12px 30px rgba(255,255,255,0.2);
}

.features
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin-top: 60px;
  margin-bottom: 30px;
}

.feature-card
{
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover
{
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.feature-card-left
{
  text-align: left;
}

.feature-card-3
{
  grid-column: 1 / 4;
}

.feature-icon
{
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00d4aa;
}

.feature-title
{
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-desc
{
  color: #b0b0b0;
  line-height: 1.6;
}

.footer
{
}

.notices
{
  font-size: 14px;
  margin-top: 0px;
  color: #b0b0b0;
  text-align: center;
  margin-bottom: 10px;
}

table.help, table.help th, table.help td
{
  border: 1px solid #00d4aa;
  border-collapse: collapse;
  padding: 15px;
}

table.help th
{
  text-align: left;
}

/* Mobile Responsiveness */
@media (max-width: 768px)
{
  .header
  {
    padding: 15px 20px;
  }

  .logo
  {
    font-size: 24px;
  }

  .signin-btn
  {
    padding: 10px 24px;
    font-size: 14px;
  }

  .main-content
  {
    padding: 20px;
  }

  .hero-title
  {
    font-size: 2.5rem;
  }

  .hero-subtitle
  {
    font-size: 1.2rem;
  }

  .cta-button
  {
    padding: 15px 36px;
    font-size: 16px;
    margin: 0 5px 15px 0;
  }

  .features
  {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card
  {
    padding: 20px;
  }

  .feature-card-3
  {
    grid-column: 1 / 2;
  }

  table.help, table.help th, table.help td
  {
    padding: 5px;
  }
}

@media (max-width: 480px)
{
  .hero-title
  {
    font-size: 2rem;
  }

  .hero-subtitle
  {
    font-size: 1rem;
  }

  .cta-button
  {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

.tv-wrapper
{
    width: 70%;
    height: 50px;
    margin: 16px;
}

.llc-name
{
    font-family: 'Zilla Slab', serif;
    white-space: nowrap;
}
