body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #222;
    /* 2x2 grid of thumbnails as background */
    background-image:
        url('comic1.jpg'),
        url('comic2.jpg'),
        url('comic3.jpg'),
        url('comic4.jpg');
    background-size: 50% 50%;
    background-position: left top, right top, left bottom, right bottom;
    background-repeat: no-repeat;
    position: relative;
}

.floating-content {
    background: rgba(255,255,255,0.85);
    padding: 2rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    text-align: center;
    z-index: 1;
}

.footer-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(34,34,34,0.95);
    color: #fff;
    text-align: center;
    padding: 0.75em 0;
    font-size: 1rem;
    letter-spacing: 0.05em;
    z-index: 10;
}

.ace-icon {
    font-size: 1.2em;
    vertical-align: middle;
    margin-left: 0.2em;
}

h1 {
    font-size: 48px;
    color: #222;
    margin-bottom: 0.5em;
}

p {
    font-size: 24px;
    color: #444;
    margin: 0;
}