* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  background: #0b0505;
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow: hidden;
  background-image:
    radial-gradient(circle at top left, rgba(255,80,0,0.25), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255,0,0,0.15), transparent 25%);
}

/* NAVBAR */
.navbar {
  width: 100%;
  height: 85px;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.logo {
  font-size: 42px;
  font-family: 'Anton', sans-serif;
  color: #fff;
  letter-spacing: 2px;
}

.logo span {
  color: #ff4d00;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff5e00;
}

.register-btn {
  background: linear-gradient(45deg,#ff3c00,#ff9900);
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255,90,0,0.35);
}

.register-btn:hover {
  color: white !important;
  transform: translateY(-2px);
}

/* LAYOUT PRINCIPAL */
.container {
  display: grid;
  grid-template-columns: 320px 1fr 300px;
  gap: 25px;
  padding: 30px;
  padding-top: 45px;
  height: calc(100vh - 95px);
  margin-top: 95px;
  overflow: hidden;
}

.container > aside,
.feed {
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: 40px;
}

.container > aside::-webkit-scrollbar,
.feed::-webkit-scrollbar {
  width: 8px;
}

.container > aside::-webkit-scrollbar-thumb,
.feed::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,#ff4d00,#ff9900);
  border-radius: 20px;
}

.container > aside::-webkit-scrollbar-track,
.feed::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
}

/* MODALES AUTH */
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}

.auth-modal.show {
  display: flex;
}

.auth-box {
  width: 100%;
  max-width: 430px;
  background: rgba(20, 10, 10, 0.98);
  border: 1px solid rgba(255,100,0,0.25);
  border-radius: 25px;
  padding: 30px;
  padding-bottom: 35px;
  position: relative;
  box-shadow: 0 0 30px rgba(255,70,0,0.25);
}

.auth-box h2 {
  font-family: 'Anton', sans-serif;
  color: #ff6b00;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.auth-box input,
.auth-box select {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #120909;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.auth-btn {
  width: 100%;
  padding: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(45deg,#ff3c00,#ff9900);
  color: white;
  font-weight: bold;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255,90,0,0.35);
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

.forgot-password {
  display: block;
  text-align: center;
  margin: 18px 0 20px;
  font-size: 14px;
}

.forgot-password a {
  color: #ff8c00;
  text-decoration: none;
  font-weight: 600;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.auth-switch {
  margin-top: 20px;
  text-align: center;
  opacity: 0.9;
}

.auth-switch span {
  color: #ff8c00;
  font-weight: bold;
  cursor: pointer;
}

/* PÁGINA RECUPERAR CONTRASEÑA */
body.reset-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 110px;
  background: #0b0505;
}

.reset-box {
  width: min(90%, 420px);
  padding: 28px 26px;
}

/* PASSWORD INPUT */
.password-container {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #120909;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.password-container input {
  flex: 1;
  margin-bottom: 0;
  border: none;
  background: transparent;
  padding: 14px;
  min-width: 0;
}

.password-eye {
  width: 54px;
  height: 54px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

.password-eye:hover {
  color: #ff7b00;
}

/* CENTRO: FILTRO + FEED */
.feed-wrapper {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feed-controls {
  margin-bottom: 0;
  flex-shrink: 0;
  padding-top: 5px;
}

.feed-controls select {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: #120909;
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: bold;
}

.feed {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 10px;
  padding-right: 10px;
}

.feed-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px;
  background: rgba(20, 10, 10, 0.95);
  border: 1px solid rgba(255,100,0,0.18);
  border-radius: 18px;
  box-shadow: 0 0 18px rgba(255,60,0,0.12);
}

.feed-tab {
  flex: 1;
  padding: 14px 12px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
}

.feed-tab:hover {
  background: rgba(255,100,0,0.18);
  transform: translateY(-2px);
}

.feed-tab.active {
  background: linear-gradient(45deg,#ff3c00,#ff9900);
  box-shadow: 0 0 16px rgba(255,90,0,0.45);
}

/* PANELES */
.panel {
  background: rgba(20, 10, 10, 0.95);
  border: 1px solid rgba(255,100,0,0.15);
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(255, 60, 0, 0.15);
}

.panel + .panel {
  margin-top: 20px;
}

.panel h2 {
  font-family: 'Anton', sans-serif;
  margin-bottom: 20px;
  color: #ff6b00;
  letter-spacing: 1px;
}

/* FORMULARIO */
.profile-switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
}

.profile-switch input {
  width: 18px;
  height: 18px;
  accent-color: #ff7b00;
  cursor: pointer;
  flex-shrink: 0;
}

textarea,
select,
input[type="number"] {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #120909;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  margin-bottom: 20px;
  font-size: 15px;
}

textarea {
  height: 120px;
  resize: none;
}

.toggle-buttons,
.gender-buttons,
.icon-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-option {
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: white;
  transition: 0.3s;
}

.btn-option:hover,
.icon:hover {
  transform: scale(1.05);
}

.btn-option.active,
.icon.active {
  outline: 3px solid #fff;
  box-shadow: 0 0 18px rgba(255,255,255,0.55);
  transform: scale(1.05);
}

.pink {
  background: #ff2d7a;
}

.blue {
  background: #0b7cff;
}

.orange {
  background: linear-gradient(45deg,#ff4d00,#ff9900);
}

.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #1e1010;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: 0.3s;
}

.icon:hover {
  border-color: #ff5e00;
}

.publish-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(45deg,#ff3c00,#ff8c00);
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(255,90,0,0.4);
}

.publish-btn:hover {
  transform: scale(1.02);
}

/* TARJETAS */
.confession-card {
  border-radius: 25px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.female-card {
  background: linear-gradient(135deg,#ff2770,#ff5ba6);
}

.male-card {
  background: linear-gradient(135deg,#005eff,#00a6ff);
}

.lgbt-card {
  background: linear-gradient(135deg,#ff0018,#ffa52c,#ffff41,#008018,#0000f9,#86007d);
}

.lgbt-user {
  background: linear-gradient(45deg, red, orange, yellow, green, blue, purple);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  flex-shrink: 0;
}

.user-meta h3 {
  font-size: 22px;
}

.user-meta p {
  opacity: 0.85;
  font-size: 14px;
}

.confession-text {
  color: #1a1a1a;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  opacity: 0.9;
  font-weight: 600;
}

/* LIKES / COMPARTIR */
.like-btn,
.comment-toggle,
.share-btn {
  cursor: pointer;
  user-select: none;
  transition: 0.22s;
  padding: 6px 10px;
  border-radius: 10px;
}

.like-btn:hover,
.comment-toggle:hover,
.share-btn:hover {
  transform: scale(1.08);
  background: rgba(255,255,255,0.12);
}

.like-btn.liked {
  color: #ff0000;
  font-weight: 900;
}

/* COMENTARIOS */
.comments-section {
  display: none;
  margin-top: 18px;
  background: rgba(0,0,0,0.18);
  border-radius: 18px;
  padding: 15px;
}

.comments-section.show {
  display: block;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.comment-item {
  background: rgba(255,255,255,0.18);
  padding: 10px 12px;
  border-radius: 12px;
  color: #111;
  font-weight: 600;
  overflow-wrap: break-word;
  word-break: break-word;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 10px;
}

.comment-time {
  font-size: 12px;
  opacity: 0.7;
  color: #222;
  flex-shrink: 0;
}

.comment-text {
  overflow-wrap: break-word;
  word-break: break-word;
}

.comment-form {
  display: flex;
  gap: 10px;
}

.comment-input {
  flex: 1;
  padding: 12px;
  border-radius: 12px;
  border: none;
  outline: none;
  min-width: 0;
}

.comment-btn {
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  background: #111;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* COLUMNA DERECHA */
.stats-box {
  margin-bottom: 20px;
}

.stats-number {
  font-size: 42px;
  font-weight: bold;
  color: #ff6a00;
  margin-top: 10px;
}

ul {
  padding-left: 20px;
  line-height: 2;
  opacity: 0.9;
}

.mobile-preview {
  background: linear-gradient(180deg,#160808,#0c0505);
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.phone {
  width: 170px;
  height: 320px;
  margin: auto;
  border-radius: 30px;
  background: black;
  border: 5px solid #333;
  position: relative;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,#1b0909,#090303);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ff6a00;
  font-family: 'Anton', sans-serif;
}

/* TABLET Y MÓVIL */
@media(max-width: 1200px) {
  html,
  body {
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .navbar {
    position: relative;
    height: auto;
    flex-direction: column;
    gap: 15px;
    padding: 18px 20px;
  }

  .logo {
    font-size: 34px;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .container {
    grid-template-columns: 1fr;
    height: auto;
    margin-top: 0;
    overflow: visible;
    padding: 18px;
  }

  .container > aside,
  .feed {
    height: auto;
    max-height: none;
    overflow: visible;
    padding-bottom: 0;
  }

  .feed-wrapper {
    height: auto;
  }

  .feed {
    padding-right: 0;
  }

  .panel {
    padding: 22px;
  }
}

@media(max-width: 768px) {
  .feed-tabs {
    flex-wrap: wrap;
  }

  .feed-tab {
    flex: 1 1 45%;
  }

  .confession-text {
    font-size: 22px;
  }

  .card-footer,
  .comment-form {
    flex-direction: column;
  }

  .comment-btn {
    width: 100%;
  }
}


/* PÁGINA RECUPERAR CONTRASEÑA */

body.reset-page {
  min-height: 100vh;
  margin: 0;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #0b0505;
  overflow: hidden;
}

.reset-auth-box {
  width: 100%;
  max-width: 520px;
  margin-top: 70px;
  padding: 40px 34px;
  background: rgba(20, 10, 10, 0.98);
  border: 1px solid rgba(255,100,0,0.25);
  border-radius: 25px;
  box-shadow: 0 0 30px rgba(255,70,0,0.25);
}

.reset-auth-box h2 {
  font-family: 'Anton', sans-serif;
  color: #ff6b00;
  text-align: center;
  font-size: 34px;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.reset-auth-box input {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #120909;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 15px;
}

.reset-auth-box .auth-btn {
  width: 100%;
  padding: 17px;
  margin-bottom: 20px;
  font-size: 17px;
}

.reset-text {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.reset-auth-box .auth-switch {
  margin-top: 0;
}

.reset-auth-box .auth-switch a {
  color: #ff8c00;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 600px) {
  body.reset-page {
    padding: 18px;
  }

  .reset-auth-box {
    width: 94%;
    max-width: none;
    margin-top: 70px;
    padding: 35px 28px;
  }

  .reset-auth-box h2 {
    font-size: 36px;
  }

  .reset-auth-box input {
    padding: 18px;
    font-size: 15px;
  }

  .reset-auth-box .auth-btn {
    padding: 18px;
    font-size: 16px;
  }
}



/* ARREGLO INPUTS CON OJO EN RESET PASSWORD */
.reset-auth-box .password-container {
  height: 58px;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  background: #120909;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
}

.reset-auth-box .password-container input {
  height: 100%;
  flex: 1;
  padding: 0 18px;
  margin: 0;
  border: none !important;
  outline: none;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
}

.reset-auth-box .password-container input:focus {
  border: none !important;
  outline: none;
  box-shadow: none !important;
}

.reset-auth-box .password-eye {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bdbdbd;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

/* TOAST / MENSAJES FLOTANTES */
#toast {
  position: fixed;
  top: 25px;
  right: 25px;
  min-width: 280px;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: 14px;
  color: white;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all .3s ease;
  pointer-events: none;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

#toast.success {
  background: linear-gradient(45deg,#00a651,#00d66f);
}

#toast.error {
  background: linear-gradient(45deg,#d62828,#ff5c5c);
}

.report-btn{
  cursor:pointer;
  color:#ff6b6b;
  transition:.2s;
}

.report-btn:hover{
  color:#ff4040;
}

/* ===== PÁGINAS LEGALES ===== */

.legal-container{
    max-width:900px;
    margin:50px auto;
    padding:40px;
    background:rgba(20,10,10,0.92);
    border:1px solid rgba(255,100,0,0.15);
    border-radius:22px;
    box-shadow:0 0 20px rgba(255,60,0,0.15);
}

.legal-container h1{
    margin-bottom:25px;
}

.legal-container h2{
    margin-top:25px;
    margin-bottom:10px;
}

.legal-container p,
.legal-container li{
    line-height:1.7;
}

.terms-box{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:18px 0;
  font-size:14px;
  color:#fff;
}

.terms-box p{
  margin:0;
  line-height:1.5;
}

.terms-box a{
  color:#ff6b00;
  font-weight:600;
  text-decoration:none;
}

.terms-box a:hover{
  text-decoration:underline;
}

.custom-checkbox{
  position:relative;
  width:20px;
  height:20px;
  flex-shrink:0;
  margin-top:2px;
}

.custom-checkbox input{
  opacity:0;
  width:0;
  height:0;
}

.checkmark{
  position:absolute;
  top:0;
  left:0;
  width:20px;
  height:20px;
  border:2px solid #ff6b00;
  border-radius:6px;
  background:#160808;
  cursor:pointer;
}

.custom-checkbox input:checked + .checkmark{
  background:#ff6b00;
  box-shadow:0 0 12px rgba(255,107,0,.8);
}

.custom-checkbox input:checked + .checkmark::after{
  content:"✓";
  position:absolute;
  left:4px;
  top:-2px;
  color:#fff;
  font-size:16px;
  font-weight:700;
}

/* Permitir scroll en páginas legales */
body.legal-page {
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100vh;

  background:
    radial-gradient(
      800px circle at top left,
      rgba(255, 110, 0, 0.18),
      transparent 50%
    ),
    radial-gradient(
      600px circle at top right,
      rgba(255, 40, 0, 0.12),
      transparent 50%
    ),
    #0b0505;

  background-attachment: fixed;
  background-repeat: no-repeat;
}

body.legal-page .legal-container {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* ===== FOOTER ===== */

.site-footer{
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 22px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  border-radius: 18px;
  flex-shrink: 0;
}

.footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:12px;
}

.footer-links a{
  color:#ff6b00;
  text-decoration:none;
  font-weight:600;
  transition:.2s;
}

.footer-links a:hover{
  color:#ff9a3c;
  text-decoration:underline;
}

.site-footer p{
  color:rgba(255,255,255,0.65);
  font-size:14px;
}

.footer-panel {
  text-align: center;
  padding: 18px;
}

.footer-panel .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-panel a {
  color: #ff6b00;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.footer-panel a:hover {
  text-decoration: underline;
}

.footer-panel p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ===== ADMIN REPORTES ===== */

.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin-top: 25px;
}

.admin-table th {
  color: #ff6b00;
  text-align: left;
  font-size: 14px;
  padding: 10px;
}

.admin-table td {
  background: rgba(255,255,255,0.05);
  padding: 14px 10px;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
}

.admin-table tr td:first-child {
  border-radius: 12px 0 0 12px;
}

.admin-table tr td:last-child {
  border-radius: 0 12px 12px 0;
}

.admin-table .content-cell {
  max-width: 360px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.admin-table .reason-cell {
  max-width: 220px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.admin-btn {
  border: none;
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 700;
  cursor: pointer;
  background: #333;
  color: white;
}

.admin-btn:hover {
  background: #ff6b00;
}

.delete-content-btn {
  background: #7a1f1f;
}

.delete-content-btn:hover {
  background: #d62828;
}

.actions-cell{
  min-width: 150px;
  vertical-align: top;
}

.actions-cell .admin-btn{
  display: block;
  width: 100%;
  margin-bottom: 8px;
}

.ignore-report-btn{
  background:#ff7b00;
}

.delete-content-btn{
  background:#b71c1c;
}

.delete-content-btn:hover{
  background:#d62828;
}

.admin-counter{
  margin: 15px 0 25px;
  padding: 14px 18px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 14px;
  color: #ff8c00;
  font-weight: 800;
}

.admin-dashboard{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin:24px 0 34px;
}

.admin-card{
  padding:18px 16px;
  border-radius:16px;
  background:rgba(255,107,0,0.12);
  border:1px solid rgba(255,107,0,0.28);
  box-shadow:0 0 16px rgba(255,80,0,0.12);
}

.admin-card span{
  display:block;
  font-size:13px;
  color:rgba(255,255,255,0.75);
  margin-bottom:8px;
  font-weight:700;
}

.admin-card strong{
  display:block;
  font-size:34px;
  line-height:1;
  color:#ff6b00;
  font-family:'Anton', sans-serif;
}

@media(max-width:768px){
  .admin-dashboard{
    grid-template-columns:1fr 1fr;
  }
}

