.elementor-45908 .elementor-element.elementor-element-ea580b1 > .elementor-container{max-width:1200px;}/* Start custom CSS *//* ═══════════════════════════════════════════════════════════════
   DOPPIA CHANCE — CSS Esterno
   Font: system font, pesi: 400, 500, 900 — nessun font esterno
   ═══════════════════════════════════════════════════════════════ */
:root {
  --dc-card: #1a2240;
  --dc-surface: rgba(255,255,255,0.07);
  --dc-border: rgba(255,255,255,0.12);
  --dc-border-strong: rgba(255,255,255,0.16);
  --dc-border-focus: rgba(99,235,160,0.5);
  --dc-label: #cdd5e8;
  --dc-dim: #98a2bc;
  --dc-muted: #7a85a0;
  --dc-accent: #5cf0a0;
  --dc-accent-dim: rgba(92,240,160,0.18);
  --dc-accent-border: rgba(92,240,160,0.30);
  --dc-red: #ff7b7b;
  --dc-red-dim: rgba(255,123,123,0.14);
  --dc-header-gradient: linear-gradient(135deg, #2d1b69 0%, #1a1145 100%);
  --dc-radius: 14px;
  --dc-radius-sm: 8px;
  --dc-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --dc-mono: 'SF Mono', SFMono-Regular, ui-monospace, Menlo, Consolas, monospace;
  --dc-shadow: 0 6px 32px rgba(0,0,0,0.45);
}
.dc-wrapper { font-family: var(--dc-font); color: #f1f4f9; padding: 32px 20px 48px; box-sizing: border-box; }
.dc-wrapper *, .dc-wrapper *::before, .dc-wrapper *::after { box-sizing: border-box; margin: 0; padding: 0; }

.dc-header { text-align: center; margin-bottom: 36px; animation: dcFadeDown 0.6s ease; }
.dc-header__logo {
  width: 56px; height: 56px; margin: 0 auto 12px;
  background: var(--dc-header-gradient); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: var(--dc-accent);
  box-shadow: 0 4px 20px rgba(99,235,160,0.15);
}
.dc-header__title {
  font-size: 28px; font-weight: 900; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0f1629 30%, var(--dc-accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dc-header__sub { font-size: 13px; color: var(--dc-dim); margin-top: 4px; font-weight: 400; }

.dc-card {
  max-width: 700px; margin: 0 auto;
  background: var(--dc-card); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--dc-radius); box-shadow: var(--dc-shadow);
  overflow: hidden; animation: dcFadeUp 0.5s ease both;
}

/* Inputs */
.dc-inputs {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 0;
  padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.dc-input-col { padding: 0 10px; }
.dc-input-col:first-child { padding-left: 0; }
.dc-input-col:last-child { padding-right: 0; }
.dc-input-col:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.06); }
.dc-input-col__label {
  font-size: 11px; font-weight: 900; color: var(--dc-label);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em;
}
.dc-input-col__input {
  background: var(--dc-surface); border: 1px solid var(--dc-border-strong);
  border-radius: var(--dc-radius-sm); padding: 10px 12px; color: #fff;
  font-family: var(--dc-mono); font-size: 16px; font-weight: 900;
  outline: none; width: 100%; transition: border-color 0.2s;
}
.dc-input-col__input:focus { border-color: var(--dc-border-focus); }
.dc-input-col__input::placeholder { color: var(--dc-muted); }

/* Results rows */
.dc-rows { padding: 0 24px 20px; }
.dc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dc-row:last-child { border-bottom: none; }
.dc-row__label { font-size: 14px; font-weight: 500; color: var(--dc-dim); }
.dc-row__value { font-family: var(--dc-mono); font-size: 16px; font-weight: 900; color: #fff; }

/* Highlighted rows */
.dc-row--highlight {
  background: var(--dc-accent-dim); border-radius: var(--dc-radius-sm);
  margin-top: 8px; border-bottom: none;
}
.dc-row--highlight .dc-row__value { color: var(--dc-accent); }

.dc-row--quota {
  background: rgba(255,255,255,0.04); border-radius: var(--dc-radius-sm);
  margin-top: 4px; border-bottom: none;
}
.dc-row--quota .dc-row__value { color: var(--dc-accent); }

/* Tip */
.dc-tip {
  margin: 0 24px 24px; padding: 14px 18px;
  border-left: 3px solid var(--dc-accent); background: var(--dc-surface);
  border-radius: 0 var(--dc-radius-sm) var(--dc-radius-sm) 0;
  font-size: 13px; color: var(--dc-dim); line-height: 1.6;
}

@keyframes dcFadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes dcFadeDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }

@media (max-width: 640px) {
  .dc-wrapper { padding: 20px 10px 36px; }
  .dc-header__title { font-size: 22px; }
  .dc-inputs { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dc-input-col { padding: 0 !important; border-right: none !important; }
}/* End custom CSS */