/* Daily tips page */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
}
.container { text-align: center; max-width: 600px; padding: 40px; }
.title {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 20px;
}
.tip { font-size: 28px; line-height: 1.6; font-weight: 500; color: #f8fafc; }
