/* =======================================================
   DUB FACTORY STUDIOS
   ACCOUNT / PROFILE PAGE
======================================================= */

/* ACCOUNT PAGE HERO */

.dfs-account-page-hero {
  padding: 48px 20px 34px;
}

.dfs-account-page-hero .dfs-kicker {
  margin-bottom: 12px;
}

.dfs-account-page-hero h1 {
  font-size: 42px;
  margin-bottom: 0;
}

.dfs-account-page-hero #accountIntro {
  display: none;
}

/* ACCOUNT PAGE SECTION HEADING */

.dfs-contact-page .dfs-section-heading {
  margin-bottom: 32px;
}

.dfs-contact-page .dfs-section-heading span {
  margin-bottom: 10px;
}

.dfs-contact-page .dfs-section-heading h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.dfs-contact-page .dfs-section-heading p {
  font-size: 16px;
  line-height: 1.6;
}

/* ACCOUNT PANEL */

.dfs-account-panel {

  max-width: 960px;
  margin: 0 auto;

  background: var(--dfs-white);

  border: 1px solid var(--dfs-border);
  border-radius: 22px;

  padding: 42px;

  box-shadow: var(--dfs-shadow);
}

/* PROFILE ROWS */

.dfs-profile-row {

  display: grid;

  grid-template-columns:
    220px
    1fr
    auto;

  gap: 18px;

  align-items: center;

  padding: 18px 0;

  border-bottom:
    1px solid rgba(0,0,0,0.08);
}

.dfs-profile-row:last-child {
  border-bottom: none;
}

/* PROFILE LABELS */

.dfs-profile-row strong {

  color: var(--dfs-black);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* PROFILE VALUES */

.dfs-profile-value {

  color: var(--dfs-gray);

  font-size: 16px;
  line-height: 1.5;

  word-break: break-word;
}

/* PROFILE EDIT INPUTS */

.dfs-profile-row input,
.dfs-profile-row select {

  margin: 0;

  min-height: 44px;

  font-size: 15px;
}

/* SMALL ACTION BUTTONS */

.dfs-small-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 92px;
  height: 40px;

  padding: 0 18px;

  border-radius: 999px;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  white-space: nowrap;
}

/* ACCOUNT ACTION AREA */

.dfs-account-actions {
  text-align: center;
  margin-top: 38px;
}

/* ACCOUNT HEADER */

.dfs-account-header {
  margin-bottom: 34px;
  text-align: center;
}

.dfs-account-header h2 {
  margin-bottom: 12px;
}

.dfs-account-header p {
  color: var(--dfs-gray);
}

/* ACCOUNT STATUS MESSAGES */

.dfs-account-status {
  margin-bottom: 22px;
}

/* ACCOUNT INFO CARDS */

.dfs-account-card-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;

  margin-top: 48px;
}

.dfs-account-card {

  background: var(--dfs-white);

  border: 1px solid var(--dfs-border);
  border-radius: 18px;

  padding: 28px;

  box-shadow: 0 10px 28px rgba(0,0,0,0.06);

  transition: all 0.25s ease;
}

.dfs-account-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 16px 34px rgba(0,0,0,0.1);
}

.dfs-account-card i {

  display: block;

  color: var(--dfs-orange);

  font-size: 30px;

  margin-bottom: 18px;
}

.dfs-account-card h3 {

  color: var(--dfs-black);

  font-size: 20px;
  font-weight: 800;

  margin-bottom: 12px;
}

.dfs-account-card p {

  color: var(--dfs-gray);

  font-size: 15px;
  line-height: 1.7;

  margin-bottom: 0;
}

/* ACCOUNT BADGES */

.dfs-account-badge {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 28px;

  padding: 0 12px;

  border-radius: 999px;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dfs-account-badge.verified {

  background:
    rgba(36,138,61,0.12);

  color: #248a3d;
}

.dfs-account-badge.unverified {

  background:
    rgba(215,25,32,0.12);

  color: var(--dfs-red);
}

/* PASSWORD SECTION */

.dfs-password-row {
  align-items: center;
}

/* RESPONSIVE */

@media screen and (max-width: 992px) {

  .dfs-account-card-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {

  .dfs-account-page-hero {
    padding: 38px 20px 28px;
  }

  .dfs-account-page-hero h1 {
    font-size: 34px;
  }

  .dfs-contact-page .dfs-section-heading h2 {
    font-size: 30px;
  }

  .dfs-account-panel {
    padding: 30px 24px;
  }

  .dfs-profile-row {

    grid-template-columns: 1fr;

    gap: 10px;

    padding: 16px 0;
  }

  .dfs-small-btn {
    width: 100%;
  }

  .dfs-profile-row strong {
    margin-bottom: 2px;
  }
}

/* VERIFY */
.dfs-verify-page {
  min-height: 70vh;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 196, 87, 0.12), transparent 34%),
    #101010;
  color: #fff;
}

.dfs-verify-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 22px;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 122, 0, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.dfs-verify-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #111;
  font-size: 36px;
  box-shadow: 0 0 30px rgba(255, 122, 0, 0.35);
}

.dfs-verify-card h1 {
  margin-bottom: 16px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.dfs-verify-card p {
  max-width: 590px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.dfs-verify-status {
  margin: 28px auto 0;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.dfs-verify-status.loading {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.dfs-verify-status.success {
  background: rgba(36, 180, 96, 0.18);
  color: #86f0b3;
  border: 1px solid rgba(36, 180, 96, 0.35);
}

.dfs-verify-status.error {
  background: rgba(255, 72, 72, 0.16);
  color: #ff9a9a;
  border: 1px solid rgba(255, 72, 72, 0.35);
}

.dfs-verify-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.dfs-verify-actions[hidden] {
  display: none;
}

@media screen and (max-width: 768px) {
  .dfs-verify-page {
    padding: 60px 18px;
  }

  .dfs-verify-card {
    padding: 34px 22px;
  }

  .dfs-verify-card h1 {
    font-size: 30px;
  }
}

/* PASSWORD RESET */
.dfs-password-panel {
  margin-top: 20px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.dfs-password-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.dfs-password-panel[hidden] {
  display: none;
}