
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
}
:root {
    --header-height: 80px;
    --photo-expanded-height: 60vh;
    /* --- Light Theme Palette --- */
    --text-light: #1c1c1e; /* Main dark text */
    --text-secondary: #8a8a8e; /* Secondary grey text */
    --background-dark: #f0f2f5; /* Light grey page background */
    --card-background: #ffffff; /* White card background */
    --border-color: #e5e5ea; /* Light border */
    --theme-red: #FF4D4D; /* Coral - Fixed Color */
    --theme-red-dark: #D93D3D; /* Dark Coral */
    --primary-green: #34c759;
}

body {
    background: var(--background-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

body.is-dragging,
body.is-dragging * {
    transition: none !important;
}

main {
    position: relative;
    z-index: 1;
    transition: padding-top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--background-dark);
    width: 100%;
    max-width: 500px;
    padding: 1.5rem 1rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 auto;
}

body #footer-placeholder footer { background: transparent !important; color: var(--text-secondary) !important; border-top: none !important; box-shadow: none; }
body #footer-placeholder footer .beta-badge { color: #aaa !important; }
