/* Public Layout Styles */

.public-body {
    min-height: 100vh;
    background-color: var(--app-bg);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    transition: background-color 0.3s ease;
}

.public-blob-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--app-primary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.public-blob-2 {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--app-secondary) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.public-main {
    width: 100%;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}