* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f5f0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 414px;
    margin: 0 auto;
    padding: 10px;
}

.screen {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.page-header {
    background: #1a1a2e;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    max-width: 414px;
    margin: 0 auto;
}

.home-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 13px;
    margin-right: 12px;
    white-space: nowrap;
}

.page-title {
    font-size: 16px;
    font-weight: bold;
    color: #d4af37;
    flex: 1;
    text-align: center;
    margin: 0;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.float-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #d4af37;
    color: #1a1a2e;
    padding: 10px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 99;
    font-size: 13px;
    font-weight: bold;
}
