/* Instagram Connect UI Styles */
.ig-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.ig-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(220, 179, 60, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(220, 179, 60, 0.1);
}
.ig-logo-circle i {
  font-size: 2.5rem;
  color: #dcb33c;
}
.text-gold {
  color: #dcb33c;
}
.ig-connect-option-btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  text-align: left;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-family: inherit;
}
.ig-connect-option-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(220, 179, 60, 0.4);
}
.ig-connect-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(220, 179, 60, 0.1);
  color: #dcb33c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}
.ig-connect-option-text {
  flex-grow: 1;
}
.ig-connect-option-text h4 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ig-connect-option-text p {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.badge-instant {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.badge-slow {
  background: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.ig-secure-box {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-top: 10px;
}
.ig-tips-section {
  margin-top: 30px;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.tips-title {
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.tip-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}
.tip-item i {
  margin-top: 4px;
  font-size: 0.9rem;
}
.tip-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #bbb;
  line-height: 1.4;
}

/* Instagram Username View Styles */
.ig-username-title-container {
  border-left: 4px solid #dcb33c;
  padding-left: 15px;
  margin-top: 10px;
}
.ig-username-title-container h1 {
  margin: 0;
  line-height: 1.2;
}
.ig-username-input-container {
  margin-bottom: 20px;
}
.ig-username-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
}
.ig-username-input-wrapper:focus-within {
  border-color: #dcb33c;
}
.ig-username-at {
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 15px;
}
.ig-username-input {
  background: transparent;
  border: none;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  outline: none;
}
.ig-username-input::placeholder {
  color: #666;
}
.ig-username-footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--bg-dark);
}

/* Profile Confirm Drawer */
.ig-profile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ig-profile-drawer-content {
  background: #151515;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 20px 20px 40px 20px;
  text-align: center;
  position: relative;
  animation: slideUp 0.3s ease-out forwards;
}
.drawer-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto 30px auto;
}
.drawer-profile-pic-container {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  padding: 4px;
  background: transparent;
  border: 3px solid #dcb33c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-profile-pic {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.drawer-fullname {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: white;
}
.drawer-username {
  font-size: 0.95rem;
  margin: 0 0 10px 0;
  color: #aaa;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* New Verify Instagram UI */
.bio-verify-banner {
  background: rgba(220, 179, 60, 0.05);
  border: 1px solid rgba(220, 179, 60, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.banner-icon {
  color: #dcb33c;
  font-size: 1.2rem;
}
.bio-verify-banner span {
  font-size: 0.95rem;
  color: #ddd;
}
.bio-verify-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}
.bio-verify-step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.step-icon-box {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border: 1px solid rgba(220, 179, 60, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dcb33c;
  font-size: 1.2rem;
  background: rgba(220, 179, 60, 0.05);
}
.step-content h4 {
  margin: 0 0 5px 0;
  font-size: 1.05rem;
  color: white;
  font-weight: 700;
}
.step-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.5;
}
.bio-code-section {
  margin-bottom: 20px;
}
.bio-code-label {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.bio-code-box-new {
  border: 1px solid rgba(220, 179, 60, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
}
.bio-code-box-new h2 {
  margin: 0;
  font-size: 1.3rem;
  color: white;
  letter-spacing: 1px;
}
.btn-copy-code-new {
  background: none;
  border: none;
  color: #dcb33c;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}
