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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.frogy-header {
  background-color: #000000;
  padding: 12px 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 203px;
  height: 61px;
  object-fit: contain;
}

.text-container {
  display: flex;
  align-items: center;
}

.text-content {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.text-content .normal {
  color: #ffffff;
}

.text-content .brand {
  color: #ffffff;
  font-weight: 700;
}

.text-content .highlight {
  color: #4dd4ac;
  font-weight: 600;
}

.cta-button {
  background: linear-gradient(135deg, #00ff88 0%, #00d97e 100%);
  color: #000000;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 255, 136, 0.4);
  background: linear-gradient(135deg, #00ff88 0%, #00e085 100%);
}

.cta-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 15px;
  }

  .left-section {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  .text-content {
    justify-content: center;
    text-align: center;
  }

  .cta-button {
    width: 100%;
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .text-content {
    font-size: 14px;
    gap: 4px;
  }
  
  .logo {
    width: 160px;
    height: auto;
  }
}