/* ===== MovieFlix Footer Modals (About, Disclaimer, Contact) ===== */

.info-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 300;
    animation: fadeIn 0.3s ease forwards;
    padding: 60px 20px 40px;
    overflow-y: auto;
  }
  
  /* Glass Panel */
  .info-modal-content {
    position: relative;
    width: 90%;
    max-width: 750px;
    background: rgba(25, 25, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 30px;
    color: #fff;
    animation: slideUp 0.4s ease forwards;
    box-shadow: 0 0 40px rgba(229, 9, 20, 0.3);
  }
  
  .info-modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e50914, #ff0022, #e50914);
    background-size: 300%;
    animation: flow 6s linear infinite;
    border-radius: 18px 18px 0 0;
  }
  
  /* Close button */
  .info-modal .close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    transition: all 0.3s ease;
  }
  
  .info-modal .close:hover {
    color: #fff;
    text-shadow: 0 0 10px #e50914;
    transform: scale(1.1);
  }
  
  /* Content layout */
  .info-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .info-modal-body h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(229, 9, 20, 0.5);
  }
  
  .info-modal-body p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 600px;
  }
  
  .watch-btn {
    margin-top: 20px;
    background: linear-gradient(90deg, #e50914, #ff0022);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .watch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
  }
  
  /* Animations (reuse your existing keyframes if needed) */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes flow {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
  }
  