/* THE PERFECT CIRCLE ENGINE */
.trillion-bill {
    position: relative;
    /* This is the key: Width and Height must be identical */
    width: 35vh !important; 
    height: 35vh !important;
    min-width: 320px !important; /* Forces it to stay big at 100% zoom */
    aspect-ratio: 1 / 1 !important; 
    
    margin: 0 auto;
    border-radius: 50% !important; 
    padding: 12px;
    background-color: #ebeec7; 
    background-image: repeating-radial-gradient(circle at center, transparent 0, transparent 2px, rgba(27,131,102,0.1) 3px, rgba(27,131,102,0.1) 4px);
    border: 4px double var(--money-green);
    
    display: flex; 
    justify-content: center; 
    align-items: center;
    overflow: hidden; 
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    box-sizing: border-box;
}

.artist-photo {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover; 
    display: block;
    border: 2px solid var(--money-green);
} /* <--- THIS WAS THE MISSING BRACKET FIXING THE "CAGE" */

/* THE MASTER FRAME - This allows the "Spread" and "Zoom" to work */
.magazine-frame {
    position: relative;
    width: 95vw; 
    min-height: 100vh; 
    height: auto !important; 
    max-width: 1600px;
    display: flex; 
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    padding: 5vh 2vw;
    box-sizing: border-box;
    overflow: visible !important; 
}

/* Ensure the body doesn't fight the zoom */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    overflow-x: hidden; 
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
