#consent-banner {
    position: fixed;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 720px;
    background: linear-gradient(135deg, #ffe0e9, #fff1f3);
    border-radius: 30px;
    border: 2px solid #000;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: bottom 0.8s cubic-bezier(0.68,-0.55,0.265,1.55), opacity 0.8s ease;
    opacity: 0;
    font-size: 14px;
    color: #333;
}
#consent-banner span {
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}
#consent-btn {
    margin-left: 15px;
    padding: 10px 25px;
    background-color: #800000;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s, background-color 0.3s;
    flex-shrink: 0;
}
#consent-btn:hover {
    transform: scale(1.1);
    background-color: #a00000;
}
@media (max-width: 768px) {
    #consent-banner { 
      flex-direction: column; 
      text-align: center; 
      padding: 20px; 
      gap: 10px; 
    }
    #consent-banner span { white-space: normal; }
    #consent-btn { 
      width: auto; 
      max-width: 200px; 
      margin-left: 0; 
      margin-top: 10px; 
    }
}
@media (max-width: 480px) {
    #consent-banner { padding: 15px; font-size: 13px; }
    #consent-btn { 
      padding: 8px 20px; 
      font-size: 13px; 
      width: auto; 
      max-width: 180px; 
    }
}
