* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffe6f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.85rem;
    z-index: 9999;
    line-height: 1.4;
}