#notifications {
    padding: 80px 20px;
  }
  
  #notifications h1 {
    font-size: 3em;
    color: var(--bd-red);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 3px 3px 0 #000, 0 0 12px var(--bd-red);
  }
  
  .notification-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .notification-item {
    background: rgba(25, 10, 10, 0.5);
    border: 2px solid var(--bd-red);
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    font-family: 'Fira Code', monospace;
    position: relative;
    box-shadow: 0 0 20px rgba(var(--bd-red-rgb), 0.2);
    backdrop-filter: blur(6px);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .notification-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(var(--bd-red-rgb), 0.4);
  }
  
  .notification-header {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
  
  .notification-header .icon {
    margin-right: 15px;
    font-size: 2em;
    color: var(--bd-red);
    animation: 2s infinite pulse;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px var(--bd-red));
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }
  
  .title-message {
    flex-grow: 1;
  }
  
  .notification-title {
    font-size: 1.6em;
    color: var(--bd-red);
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
    text-shadow: 1px 1px 2px #000;
  }
  
  .notification-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--bd-red);
    border-radius: 3px;
    box-shadow: 0 0 5px var(--bd-red);
  }
  
  .message {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 10px;
    word-wrap: break-word;
    word-break: break-word;
    text-shadow: 1px 1px 1px #000;
  }
  
  .time {
    font-size: 0.9em;
    display: flex;
    align-items: center;
    margin-top: auto;
    color: var(--bd-green);
    font-family: 'Fira Code', monospace;
  }
  
  .time i {
    margin-right: 5px;
    font-size: 1.2em;
    color: var(--bd-green);
  }
  
  @media (max-width: 768px) {
    .notification-header {
      flex-direction: row;
      align-items: flex-start;
    }
  }
  
  .toast-container {
    z-index: 1055;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    display: none;
  }
  
  .ancient-toast {
    background: rgba(20, 10, 10, 0.85);
    border: 2px solid var(--bd-red);
    border-radius: 12px;
    color: #fff;
    font-family: 'Fira Code', monospace;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 0 16px rgba(var(--bd-red-rgb), 0.3);
    backdrop-filter: blur(5px);
  }
  
  .toast-header {
    background-color: rgba(var(--bd-red-rgb), 0.1);
    border-bottom: 2px solid var(--bd-red);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    backdrop-filter: blur(3px);
  }
  
  .toast-icon {
    font-size: 1.5em;
    color: var(--bd-red);
    margin-right: 10px;
    filter: drop-shadow(0 0 4px var(--bd-red));
  }
  
  .toast-header .me-auto {
    font-weight: 700;
    font-size: 1.2em;
    color: #fff;
    flex-grow: 1;
    text-shadow: 1px 1px #000;
  }
  
  .toast-header .text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .toast-time {
    font-size: 0.9em;
    color: var(--bd-green);
    margin-right: 10px;
  }
  
  .toast-close {
    background: none;
    border: none;
    color: var(--bd-green);
    font-size: 1.2em;
    transition: color 0.3s ease;
  }
  
  .toast-close:hover {
    color: #fff;
    text-shadow: 0 0 5px var(--bd-green);
  }
  
  .toast-body {
    padding: 15px;
    font-size: 1em;
    background-color: rgba(20, 10, 10, 0.9);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #fff;
    text-shadow: 1px 1px #000;
  }
  
  .toast-body p {
    margin: 0;
  }
  
  @media (max-width: 576px) {
    .ancient-toast {
      min-width: 250px;
      max-width: 90%;
    }
  }
  