/* Premium Modal Styles - Compact & Horizontal Buttons with New Color */
.premium-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
}

.premium-modal-content {
  background-color: white;
  padding: 25px 20px;
  border-radius: 12px;
  width: 320px; /* 컴팩트 사이즈 */
  max-width: 85%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  font-family: var(--font-family-main, 'Roboto', 'Noto Sans KR', sans-serif);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 텍스트 영역 */
.premium-header {
  margin-bottom: 20px;
}

.premium-title {
  font-size: 14px;
  color: #333;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.premium-subtitle {
  font-size: 13px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* 버튼 그룹 - 가로 배치 */
.premium-btn-group {
  display: flex;
  flex-direction: row; /* 가로 배치 */
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

/* 버튼 공통 스타일 */
.btn-trial, .btn-cancel {
  flex: 1; /* 너비 균등 분배 */
  padding: 10px 0;
  border-radius: 6px; /* 둥근 모서리 */
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

/* Trial 버튼 - 요청하신 밝은 파란색 적용 */
.btn-trial {
  /* 이미지에서 추출한 밝은 파란색 (#2F80ED ~ #3B82F6 계열) */
  background-color: #2F80ED; 
  color: white;
  box-shadow: 0 2px 4px rgba(47, 128, 237, 0.2); /* 은은한 파란 그림자 */
}
.btn-trial:hover {
  background-color: #266dc9; /* 호버 시 약간 더 진하게 */
  box-shadow: 0 4px 8px rgba(47, 128, 237, 0.3);
}

/* Not now 버튼 */
.btn-cancel {
  background-color: #f1f3f5;
  color: #555;
}
.btn-cancel:hover {
  background-color: #e9ecef;
}

/* Footer Note */
.premium-footer-note {
  font-size: 13.5px;
  color: #555;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  line-height: 1.4;
  text-align: left;
}

.premium-footer-note a {
  color: #2F80ED; /* 링크 색상도 버튼과 통일 */
  text-decoration: none;
  font-weight: 600;
}
.premium-footer-note a:hover {
  text-decoration: underline;
}