:root {
  --bg-main: #0f1115;
  --bg-secondary: #161a20;

  --text-primary: #e6e8eb;
  --text-secondary: #9aa0a6;

  --accent: #3b82f6;
  --accent-hover: #2563eb;
}

/* ========================= */
/* RESET */
/* ========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Inter, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* ========================= */
/* LINKS */
/* ========================= */

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: var(--accent-hover);
}

/* ========================= */
/* HEADER */
/* ========================= */

.header {
  background: var(--bg-secondary);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1f2430;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .logo b {
  font-size: 18px;
}

.header-buttons {
  display: flex;
  gap: 12px;
}

.header-btn {
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.header-btn:hover {
  background: var(--accent-hover);
}

.logout-btn {
  background: #2a2f3a;
}

.logout-btn:hover {
  background: #3a404c;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 16px;
}

/* ========================= */
/* HOME GRID */
/* ========================= */

.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home-feed-tabs {
  display: inline-flex;
  gap: 8px;
  margin: 0 0 16px;
  padding: 5px;
  border-radius: 999px;
  background: var(--bg-secondary);
}

.home-feed-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.home-feed-tab:hover {
  color: var(--text-primary);
}

.home-feed-tab.is-active {
  background: var(--accent);
  color: #fff;
}

/* Tablet */
@media (max-width: 1024px) {
  .home-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .home-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .album-actions {
    top: 8px;
    right: 8px;
  }

  .album-menu-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .album-delete-action {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* ========================= */
/* HOME CARD */
/* ========================= */


.home-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.album-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}

.album-menu-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.62);
  color: #fff;
  font-size: 23px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.album-delete-form {
  margin-top: 6px;
}

.album-delete-action {
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  background: #b91c1c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.album-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.album-card img,
.album-card video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.album-preview-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.album-preview-layer.is-visible {
  opacity: 1;
}

.album-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.65);
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 16px);
}

.album-overlay-left {
  left: 8px;
  right: auto;
}

.album-media-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
}

.album-media-item span {
  color: #fff;
}

.icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  opacity: 0.9;
}

.home-info {
  margin-top: 8px;
}

.home-user {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
}

.home-user a {
  color: var(--text-primary);
}

.home-title {
  font-size: 14px;
  color: var(--text-secondary);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================= */
/* PROFILE */
/* ========================= */

.profile-page {
  text-align: center;
}

.profile-avatar-wrap {
  position: relative;
  width: fit-content;
  margin: 30px auto 15px auto;
}

.profile-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.profile-edit-toggle {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: auto;
  background: #252b38;
  border: 1px solid #394154;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

.profile-edit-form {
  margin: 10px auto 25px auto;
  text-align: left;
}

.profile-edit-form h3 {
  margin-bottom: 12px;
  text-align: center;
}

.profile-edit-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 13px;
}

.profile-description {
  max-width: 520px;
  margin: 0 auto 8px auto;
  color: var(--text-secondary);
}

.profile-link-wrap {
  margin-bottom: 18px;
}

.profile-link {
  word-break: break-all;
}

.profile-message {
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}

.profile-error {
  background: #3a1f24;
  color: #ffb4bd;
}

.profile-success {
  background: #1f3528;
  color: #9ce5b7;
}

.profile-username {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 22px;
}

.profile-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 16px 0;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #364159;
  border-radius: 50%;
  background: #1a1f2b;
}

.profile-badge-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.profile-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.profile-stats div {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.profile-stats span {
  color: var(--text-secondary);
  font-size: 13px;
}

/* ========================= */
/* PROFILE GRID */
/* ========================= */

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.profile-grid a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.profile-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: 0.2s ease;
}

.profile-grid img:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .container {
    margin: 20px auto;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-avatar {
    width: 90px;
    height: 90px;
  }

  body {
    font-size: 16px;
  }

  .header-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .album-overlay {
    right: 6px;
    bottom: 6px;
    padding: 5px 7px;
    gap: 8px;
    font-size: 12px;
    border-radius: 7px;
  }

  .album-overlay-left {
    left: 6px;
    right: auto;
  }

  .album-media-item {
    gap: 3px;
  }

  .icon {
    width: 16px;
    height: 16px;
  }
}

/* ========================= */
/* FORMS */
/* ========================= */

form {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 14px;
  max-width: 400px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
textarea {
  width: 100%;
  background: #0c0f14;
  border: 1px solid #1f2430;
  color: var(--text-primary);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  background: var(--accent-hover);
}

button:active {
  transform: scale(0.97);
}

/* ========================= */
/* POST PAGE */
/* ========================= */

.post-page {
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.post-header {
  margin-bottom: 20px;
}

.post-user {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 6px;
}

.post-title-full {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
}

.post-media-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.post-views-indicator {
  z-index: 2;
}

.media-item img {
  width: 100%;
  height: auto;          /* 🔥 FOTO COMPLETE */
  border-radius: 12px;
  object-fit: contain;   /* niente crop */
  background: #000;
}

.media-item video {
  width: 100%;
  border-radius: 12px;
  background: #000;
}

.post-comments {
  margin-top: 28px;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
}

.comment-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
}

.comment-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0 0 20px 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.comment-form .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-form .input-wrapper {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.comment-input {
  width: 100%;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  padding: 10px 15px;
  border-radius: 20px;
  margin: 0;
  resize: none;
  overflow-y: auto;
}

.comment-form .send-btn {
  flex-shrink: 0;
  margin-left: 10px;
}

.comment-send {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-error {
  color: #ff8b8b;
  font-size: 14px;
  margin-bottom: 10px;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comment {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  padding-left: 5px;
}

.comment-avatar-link {
  display: inline-flex;
  border-radius: 50%;
  flex-shrink: 0;
}

.comment .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
  margin-left: 5px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 4px;
}

.comment-username {
  font-weight: 600;
  color: var(--text-primary);
}

.comment-time,
.time {
  color: var(--text-secondary);
  font-size: 13px;
}

.comment-text {
  background: #2a3443;
  padding: 10px 15px;
  border-radius: 12px;
  margin: 0;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.35;
  white-space: pre-wrap;
}

@media (max-width: 640px) {
  .comment-form {
    gap: 10px;
  }

  .comment-form .avatar,
  .comment .avatar {
    width: 34px;
    height: 34px;
  }

  .comment-send {
    width: 38px;
    min-width: 38px;
    height: 38px;
    margin-left: 8px;
  }

  .comment-input {
    min-height: 42px;
    height: 42px;
    max-height: 42px;
  }

  .comment {
    gap: 10px;
    padding-left: 0;
  }

  .comment-content {
    margin-left: 2px;
  }
}

/* ========================= */
/* HEADER RIGHT */
/* ========================= */

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.header-link {
  font-size: 14px;
  color: var(--text-primary);
}

.header-btn-small {
  padding: 6px 14px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-size: 14px;
}

.header-btn-small:hover {
  background: var(--accent-hover);
}


.header-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #2b3342;
  background: #1a1f2b;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.header-search-btn:hover {
  background: #252c3a;
}

.search-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1100;
}

.search-modal.is-visible {
  display: flex;
}

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

.search-modal-card {
  position: relative;
  width: min(620px, 100%);
  background: #141923;
  border: 1px solid #2d3748;
  border-radius: 14px;
  padding: 18px;
  z-index: 1;
}

.search-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.search-modal-close {
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.search-modal-form {
  display: flex;
  gap: 10px;
  max-width: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.search-modal-input {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  border-radius: 10px;
  border: 1px solid #2f3a4d;
  background: #0f131c;
  color: var(--text-primary);
  font-size: 16px;
  padding: 12px 14px;
}

.search-modal-submit {
  width: auto;
  flex-shrink: 0;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
}

.popular-searches {
  margin-top: 14px;
}

.popular-searches p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.popular-searches-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.popular-search-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #202838;
  color: var(--text-primary);
  font-size: 13px;
}

.search-empty-state {
  color: var(--text-secondary);
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px 0;
}

@media (max-width: 640px) {
  .search-modal-card {
    padding: 14px;
  }

  .search-modal-form {
    flex-direction: column;
  }

  .search-modal-submit {
    width: 100%;
  }

  .header-search-btn {
    width: 36px;
    height: 36px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {

  .header-right {
    gap: 10px;
  }

  .header-btn-small {
    padding: 6px 10px;
    font-size: 13px;
  }

  .header-link {
    font-size: 13px;
  }
}
.footer {
    text-align:center;
    padding:20px;
    color:#aaa;
    font-size:14px;
}

.footer a {
    color:#aaa;
    margin:0 10px;
    text-decoration:none;
}

@media (max-width: 640px) {
  .comment-box {
    gap: 8px;
    padding: 6px 0;
  }

  .comment-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .comment-send {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .comment-input {
    min-height: 42px;
    height: 42px;
    max-height: 42px;
  }

  .header {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .header-right {
    width: auto;
    justify-content: flex-end;
  }

  .header-buttons {
    gap: 8px;
  }

  .header-btn,
  .header-btn-small {
    padding: 7px 10px;
    font-size: 12px;
  }

  .container {
    margin: 16px auto;
    padding: 0 12px;
  }

  .home-grid {
    gap: 12px;
  }

  .profile-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 16px 0;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #364159;
  border-radius: 50%;
  background: #1a1f2b;
}

.profile-badge-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.profile-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer {
    font-size: 13px;
    padding: 18px 12px;
  }

  .footer a {
    display: inline-block;
    margin: 4px 8px;
  }
}

.footer a:hover {
    color:white;
}
/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 24px));
  z-index: 9999;
}

.cookie-box {
  width: 100%;
  background: #1a1a1a;
  color: #ccc;
  padding: 14px 16px;
  border-radius: 10px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  animation: fadeUp 0.4s ease;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.45;
  flex: 1;
  min-width: 0;
}

.cookie-text a {
  color: #4da6ff;
  text-decoration: none;
}

.cookie-btn {
  width: auto;
  flex: 0 0 auto;
  background: #4da6ff;
  color: white;
  border: none;
  padding: 8px 18px;
  white-space: nowrap;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}

.cookie-btn:hover {
  background: #3b8eea;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

/* ========================= */
/* STATIC PAGES LAYOUT */
/* ========================= */

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
}

.legal-page {
  max-width: 900px;
  margin: 30px auto;
}

.legal-page h1 {
  margin-bottom: 14px;
}

.legal-page h2 {
  margin-top: 18px;
  margin-bottom: 6px;
}

.legal-page ul {
  padding-left: 18px;
}

.age-page {
  background: linear-gradient(135deg, #111, #222);
}

.age-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.age-box {
  width: 100%;
  max-width: 560px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}

.age-box h1 {
  margin-bottom: 14px;
}

.age-box p {
  color: #e8e8e8;
  line-height: 1.55;
  margin-bottom: 14px;
}

.age-form {
  margin: 0 auto;
  max-width: 100%;
  background: transparent;
  padding: 0;
}

.age-form button {
  max-width: 100%;
}

@media (max-width: 640px) {
  .age-main {
    align-items: flex-start;
    padding-top: 20px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    transform: none;
  }

  .cookie-box {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    padding: 12px;
  }

  .cookie-text {
    font-size: 13px;
  }

  .cookie-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
    gap: 12px;
    padding: 12px;
  }
}

/* ========================= */
/* AGE VERIFICATION OVERLAY */
/* ========================= */


body.age-locked > *:not(#age-overlay) {
  filter: blur(14px) brightness(0.55);
  pointer-events: none;
  user-select: none;
}

body.age-locked {
  overflow: hidden;
}

.age-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding: 24px;
}

.age-overlay.is-visible {
  display: flex;
}

.age-modal {
  width: min(100%, 520px);
  margin: 0 auto;
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  border-radius: 16px;
  padding: 34px 30px;
  text-align: center;
  border: 1px solid #1f2937;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.age-modal h2 {
  font-size: clamp(28px, 4.2vw, 42px);
  margin-bottom: 12px;
  line-height: 1.15;
}

.age-modal p {
  color: #cbd5e1;
  margin-bottom: 24px;
  font-size: clamp(16px, 1.8vw, 20px);
}

.age-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-btn {
  border: 0;
  border-radius: 10px;
  padding: 13px 18px;
  min-width: 150px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.age-btn:hover {
  transform: translateY(-1px);
}

.age-btn-primary {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.age-btn-primary:hover {
  background: #1d4ed8;
}

.age-btn-secondary {
  background: #1f2937;
  color: #cbd5e1;
}

.age-btn-secondary:hover {
  background: #374151;
}

@media (max-width: 768px) {
  body.age-locked > *:not(#age-overlay) {
    filter: blur(12px) brightness(0.45);
  }

  .age-overlay {
    padding: 16px;
  }

  .age-modal {
    width: 100%;
    max-width: 420px;
    padding: 24px 18px;
    border-radius: 14px;
  }

  .age-modal h2 {
    font-size: 30px;
  }

  .age-modal p {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .age-modal-actions {
    flex-direction: column;
  }

  .age-btn {
    width: 100%;
    min-width: 0;
    font-size: 18px;
    padding: 12px 16px;
  }
}


body.modal-open {
  overflow: hidden;
}
