/* Client Link Page - Shared Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #150F32 0%, #1a1245 50%, #0d0a20 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.link-page {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Client Logo */
.client-logo {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  width: 240px;
  height: auto;
  border-radius: 16px;
}

/* Client Info */
.client-info {
  text-align: center;
}

.client-info h1 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.client-info .subtitle {
  color: #F7B500;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Divider */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F7B500, transparent);
}

/* Description */
.description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
  padding: 0 10px;
}

/* Link Buttons */
.link-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.link-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Phone Button - Red */
.link-btn.btn-phone {
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.link-btn.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Webcall Button - Gold */
.link-btn.btn-webcall {
  background: linear-gradient(135deg, #F7B500, #D4990A);
  color: #150F32;
  box-shadow: 0 4px 15px rgba(247, 181, 0, 0.4);
}

.link-btn.btn-webcall:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 181, 0, 0.5);
}

/* LINE Button - Green */
a.link-btn.btn-line {
  background: #06C755 !important;
  background-image: linear-gradient(135deg, #06C755, #05a648) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
  -webkit-appearance: none;
}

a.link-btn.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.5);
}

/* Email Button - Outline */
.link-btn.btn-email {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.link-btn.btn-email:hover {
  border-color: #F7B500;
  color: #F7B500;
  transform: translateY(-2px);
}

/* PGA Branding Footer */
.pga-branding {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.pga-branding:hover {
  opacity: 1;
}

.pga-branding img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.pga-branding span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.pga-branding a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.7rem;
}

.pga-branding a:hover {
  color: #F7B500;
}

/* Responsive */
@media (max-width: 480px) {
  body {
    padding: 16px;
  }

  .client-info h1 {
    font-size: 1.3rem;
  }

  .link-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}
