.fccp-banner[hidden],
.fccp-modal[hidden],
.fccp-floating-button[hidden] {
  display: none !important;
}

.fccp-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
}

.fccp-inner {
  background: #0b0b0b;
  color: #e8eef4;
  border: 1px solid #444;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  padding: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.fccp-title {
  color: #ffcc66;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.fccp-text {
  font-size: 15px;
  line-height: 1.6;
}

.fccp-links {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fccp-links a,
.fccp-inline-button {
  color: #ffcc66;
}

.fccp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.fccp-btn,
.fccp-inline-button,
.fccp-floating-button {
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #666;
}

.fccp-btn-primary {
  background: #ffcc66;
  color: #111;
  border-color: #ffcc66;
  font-weight: 700;
}

.fccp-btn-light,
.fccp-inline-button,
.fccp-floating-button {
  background: #161616;
  color: #e8eef4;
}

.fccp-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
}

.fccp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.fccp-modal-dialog {
  position: relative;
  max-width: 620px;
  margin: 8vh auto;
  background: #0b0b0b;
  color: #e8eef4;
  border: 1px solid #444;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 38px rgba(0,0,0,.45);
}

.fccp-modal-header,
.fccp-modal-footer {
  padding: 16px 18px;
  border-bottom: 1px solid #242424;
}

.fccp-modal-footer {
  border-top: 1px solid #242424;
  border-bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.fccp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fccp-modal-header h3 {
  margin: 0;
  color: #ffcc66;
}

.fccp-modal-body {
  padding: 18px;
}

.fccp-toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: #111;
  border: 1px solid #2d2d2d;
  border-radius: 14px;
  padding: 14px;
  margin-top: 12px;
}

.fccp-close {
  background: transparent;
  color: #e8eef4;
  border: 0;
  font-size: 26px;
  cursor: pointer;
}

.fccp-floating-button {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 99998;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}

@media (max-width: 720px) {
  .fccp-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fccp-actions {
    width: 100%;
    justify-content: stretch;
  }

  .fccp-btn {
    flex: 1 1 auto;
  }

  .fccp-modal-dialog {
    margin: 4vh 12px;
  }
}
